Removes the first occurrence of a specific object from the DistinguishedNameList.

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

Syntax

C#
public void Remove(
	DistinguishedName value
)
Visual Basic
Public Sub Remove ( _
	value As DistinguishedName _
)
Visual C++
public:
void Remove(
	DistinguishedName^ value
)

Parameters

value
Type: LLCryptoLib.Security.Certificates..::..DistinguishedName
The DistinguishedName to remove from the DistinguishedNameList.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionvalue is a null reference (Nothing in Visual Basic).
System..::..NotSupportedExceptionThe DistinguishedNameList is read-only -or- the DistinguishedNameList has a fixed size.

See Also