Chronos Plugins 5.11.0
This documentation covers the plugin interfaces definitions and an example implementation.
Loading...
Searching...
No Matches
ICredentials.cs
Go to the documentation of this file.
2
6public interface ICredentials
7{
11 public string UserName { get; }
15 public string Password { get; }
19 public string Resource { get; }
20}
Infrastructure for security related things. Currently providing easy access to the Windows Credential...
Describes all components of password credentials: Username, password, resource.
string Password
The cleartext password for the given username and resource.
string Resource
The resource identifier, as given in the ICredentialProvider.GetCredentials call.
string UserName
The username that was entered by the user or retrieved from storage.