Removes the element at the specified index of the DistinguishedNameList.

Namespace: LLCryptoLib.Security.Certificates
Assembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)

Syntax

C#
public void RemoveAt(
	int index
)
Visual Basic
Public Sub RemoveAt ( _
	index As Integer _
)
Visual C++
public:
void RemoveAt(
	int index
)

Parameters

index
Type: System..::..Int32
The zero-based index of the element to remove.

Exceptions

ExceptionCondition
System..::..ArgumentOutOfRangeExceptionindex is less than zero -or- index is greater than Count.
System..::..NotSupportedExceptionThe DistinguishedNameList is read-only -or- the DistinguishedNameList has a fixed size.

See Also