DataPA Enterprise Dashboard Controls API Reference
Gets and sets a collection that contains a username and password that will be used as the default properties to connect to a server.

Namespace: DataPAEnterpriseDashboard
Assembly: DataPAEnterpriseDashboard (in DataPAEnterpriseDashboard.dll) Version: 1.0.90.0 (1.0.90.0)

Syntax

C#
public Collection SavedLoginDetails { get; set; }
Visual Basic
Public Property SavedLoginDetails As Collection
	Get
	Set
Visual C++
public:
virtual property Collection^ SavedLoginDetails {
	Collection^ get () sealed;
	void set (Collection^ value) sealed;
}

Property Value

Type: Collection
A collection that contains a username and password that will be used as the default properties to connect to a server.

Return Value

Type: Collection
A collection that contains a username and password that will be used as the default properties to connect to a server.

Remarks

The collection should contain two items... 1. A string value containing the username with the key username. 2. A string value containing the password with the key password.

See Also