Determines whether an element is in the DistinguishedNameList.

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

Syntax

C#
public bool Contains(
	DistinguishedName value
)
Visual Basic
Public Function Contains ( _
	value As DistinguishedName _
) As Boolean
Visual C++
public:
bool Contains(
	DistinguishedName^ value
)

Parameters

value
Type: LLCryptoLib.Security.Certificates..::..DistinguishedName
The Object to locate in the DistinguishedNameList. The element to locate cannot be a null reference (Nothing in Visual Basic).

Return Value

true if item is found in the DistinguishedNameList; otherwise, false.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionvalue is a null reference (Nothing in Visual Basic).

See Also