Пример #1
0
 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);
 }
Пример #2
0
 private bool WriteCustom(XPathResult result, object value, IDictionaryAdapter dictionaryAdapter)
 {
     return(result.WriteObject(value));
 }