DataPA Enterprise Dashboard Controls API Reference
Gets and sets a User in this collection.

Namespace: DataPAServerSecurity
Assembly: DataPAServerSecurity (in DataPAServerSecurity.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public User this[
	string ID
] { get; set; }
Visual Basic
Public Property Item ( 
	ID As String
) As User
	Get
	Set
Visual C++
public:
virtual property User^ Item[String^ ID] {
	User^ get (String^ ID) sealed;
	void set (String^ ID, User^ value) sealed;
}

Parameters

ID
Type: System..::..String
The ID of the User

Property Value

Type: User
The User you wish to place in the collection.

Return Value

Type: User
The User you wish to retrieve from the collection.

Remarks