Chronos Plugins 5.11.0
This documentation covers the plugin interfaces definitions and an example implementation.
Loading...
Searching...
No Matches
AxelSemrau.Chronos.Plugin.Security Namespace Reference

Infrastructure for security related things. Currently providing easy access to the Windows Credential Manager. More...

Classes

class  CredentialStorageCandidateAttribute
 Decorate your task properties with this attribute to allow the method editor to assist the user in using {Credentials:} expressions instead of entering plain text usernames/passwords. More...
interface  ICredentialProvider
 Encapsulation for storing of password credentials in the Windows credential manager. More...
interface  ICredentials
 Describes all components of password credentials: Username, password, resource. More...
interface  ISecurity
 Security related functions. More...

Enumerations

enum  CredentialPart { Unspecified , Username , Password }
 Defines the part of the credential that this property is meant for. More...

Detailed Description

Infrastructure for security related things. Currently providing easy access to the Windows Credential Manager.

Enumeration Type Documentation

◆ CredentialPart

Defines the part of the credential that this property is meant for.

Enumerator
Unspecified 

If the property is neither username nor password, use this.

Username 

Username part of the credential.

Password 

Password part of the credential.

Definition at line 6 of file CredentialPart.cs.

7{
20}
@ Unspecified
If the property is neither username nor password, use this.
@ Password
Password part of the credential.
@ Username
Username part of the credential.