Novell.Directory.Ldap.Asn1.Asn1Structured.get_Renamed C# (CSharp) Méthode

get_Renamed() public méthode

Gets a specific Asn1Object in this structred object.
public get_Renamed ( int index ) : Asn1Object
index int The index of the Asn1Object to get from /// this Asn1Structured object. ///
Résultat Asn1Object
        public Asn1Object get_Renamed(int index)
        {
            if ((index >= contentIndex) || (index < 0))
            {
                throw new System.IndexOutOfRangeException("Asn1Structured: set: index " + index + ", size " + contentIndex);
            }
            return content[index];
        }