Gets or sets the element at the specified index.

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

Syntax

C#
public DistinguishedName this[
	int index
] { get; set; }
Visual Basic
Public Default Property Item ( _
	index As Integer _
) As DistinguishedName
	Get
	Set
Visual C++
public:
property DistinguishedName^ default[int index] {
	DistinguishedName^ get (int index);
	void set (int index, DistinguishedName^ value);
}

Parameters

index
Type: System..::..Int32
The zero-based index of the element to get or set.

Field Value

The element at the specified index.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionvalue is a null reference (Nothing in Visual Basic).
System..::..ArgumentOutOfRangeExceptionindex is less than zero -or- index is equal to or greater than Count.

See Also