Chronos Plugins 5.11.0
This documentation covers the plugin interfaces definitions and an example implementation.
Loading...
Searching...
No Matches
ICredentialProvider.cs
Go to the documentation of this file.
2
6public interface ICredentialProvider
7{
16 ICredentials GetCredentials(string resource, bool askIfNotStored);
23 void StoreCredentials(string resource, string username, string password);
24}
Infrastructure for security related things. Currently providing easy access to the Windows Credential...
Encapsulation for storing of password credentials in the Windows credential manager.
void StoreCredentials(string resource, string username, string password)
In case you don't want to use the system dialog to ask for credentials, but need a different kind of ...
ICredentials GetCredentials(string resource, bool askIfNotStored)
Gets password credentials for the given resource, either by retrieving them from the credential manag...
Describes all components of password credentials: Username, password, resource.