Org.Mentalis.Security.Certificates.DistinguishedNameList.this C# (CSharp) Method

this() public method

Gets or sets the element at the specified index.
is a null reference (Nothing in Visual Basic). is less than zero -or- is equal to or greater than .
public this ( int index ) : Org.Mentalis.Security.Certificates.DistinguishedName
index int The zero-based index of the element to get or set.
return Org.Mentalis.Security.Certificates.DistinguishedName
		public DistinguishedName this[int index] {
			get {
				return (DistinguishedName)m_List[index];
			}
			set{
				if (value == null)
					throw new ArgumentNullException();
				m_List[index] = value;
			}
		}
		/// <summary>