internal APXmlElementInformation(APXmlElement owner, APXmlPropertyInformation propertyInfo) { _propertyInfo = propertyInfo; _owner = owner; _properties = new APXmlPropertyInformationCollection(); foreach (APXmlProperty prop in owner.Properties) _properties.Add(new APXmlPropertyInformation(owner, prop)); }
internal APXmlElementInformation(APXmlElement owner, APXmlPropertyInformation propertyInfo) { _propertyInfo = propertyInfo; _owner = owner; _properties = new APXmlPropertyInformationCollection(); foreach (APXmlProperty prop in owner.Properties) { _properties.Add(new APXmlPropertyInformation(owner, prop)); } }
public APXmlPropertyInformationEnumerator(APXmlPropertyInformationCollection collection) { _collection = collection; _position = -1; }