Exemplo n.º 1
0
		private bool WriteCustom(XPathResult result, object value, IDictionaryAdapter dictionaryAdapter)
		{
			return result.WriteObject(value);
		}
Exemplo n.º 2
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;
		}