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));
		}
예제 #2
0
        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;
			}
예제 #4
0
 public APXmlPropertyInformationEnumerator(APXmlPropertyInformationCollection collection)
 {
     _collection = collection;
     _position   = -1;
 }