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

IndexOf() public method

Searches for the specified DistinguishedName and returns the zero-based index of the first occurrence within the entire DistinguishedNameList.
is a null reference (Nothing in Visual Basic).
public IndexOf ( Org.Mentalis.Security.Certificates.DistinguishedName value ) : int
value Org.Mentalis.Security.Certificates.DistinguishedName The DistinguishedName to locate in the DistinguishedNameList.
return int
		public int IndexOf(DistinguishedName value) {
			if (value == null)
				throw new ArgumentNullException();
			return m_List.IndexOf(value);
		}
		/// <summary>