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 NameAttribute this[
	int index
] { get; set; }
Visual Basic
Public Default Property Item ( _
	index As Integer _
) As NameAttribute
	Get
	Set
Visual C++
public:
property NameAttribute default[int index] {
	NameAttribute get (int index);
	void set (int index, NameAttribute value);
}

Parameters

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

Exceptions

ExceptionCondition
System..::..ArgumentOutOfRangeExceptionindex is less than zero -or- index is equal to or greater than Count.

See Also