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

Insert() public method

Inserts an element into the DistinguishedNameList at the specified index.
is a null reference (Nothing in Visual Basic). is less than zero -or- is greater than . The DistinguishedNameList is read-only -or- the DistinguishedNameList has a fixed size.
public Insert ( int index, Org.Mentalis.Security.Certificates.DistinguishedName value ) : void
index int The zero-based index at which should be inserted.
value Org.Mentalis.Security.Certificates.DistinguishedName The to insert.
return void
		public void Insert(int index, DistinguishedName value) {
			if (value == null)
				throw new ArgumentNullException();
			m_List.Insert(index, value);
		}
		/// <summary>