private bool WriteCustom(XPathResult result, object value, IDictionaryAdapter dictionaryAdapter) { if (result.WriteObject(value)) { if (result.Property != null) { dictionaryAdapter.This.ExtendedProperties[result.Property.PropertyName] = value; } return(true); } return(false); }
private bool WriteCustom(XPathResult result, object value, IDictionaryAdapter dictionaryAdapter) { return(result.WriteObject(value)); }