C# Class GSF.Security.Authentication.IntegratedSecurityUserCredential

An individual server side user credential
Afficher le fichier Open project: GridProtectionAlliance/openHistorian Class Usage Examples

Méthodes publiques

Свойство Type Description
UserID string
UserToken System.Guid
Username string

Méthodes publiques

Méthode Description
IntegratedSecurityUserCredential ( Stream stream ) : System

Loads user credentials from the supplied stream.

IntegratedSecurityUserCredential ( string username, System.Guid userToken ) : System

Creates user credentials

Load ( Stream stream ) : void

Loads from the supplied stream.

Save ( Stream stream ) : void

Saves to the supplied stream.

Method Details

IntegratedSecurityUserCredential() public méthode

Loads user credentials from the supplied stream.
public IntegratedSecurityUserCredential ( Stream stream ) : System
stream Stream
Résultat System

IntegratedSecurityUserCredential() public méthode

Creates user credentials
public IntegratedSecurityUserCredential ( string username, System.Guid userToken ) : System
username string
userToken System.Guid
Résultat System

Load() public méthode

Loads from the supplied stream.
public Load ( Stream stream ) : void
stream Stream
Résultat void

Save() public méthode

Saves to the supplied stream.
public Save ( Stream stream ) : void
stream Stream
Résultat void

Property Details

UserID public_oe property

The security identifier for the username
public string UserID
Résultat string

UserToken public_oe property

The token associated with this user and their permissions.
public Guid,System UserToken
Résultat System.Guid

Username public_oe property

The username that was passed to the constructor.
public string Username
Résultat string