• Api Documentation
Show / Hide Table of Contents
  • Softadmin.Api
    • AdminMessageException
    • CustomComponent
    • ICookies
    • ICredentialsStore
    • IEnvironment
    • IForwardState
    • IHttpHeaders
    • IParameters
    • ISessionVariables
    • ISystemSettings
    • Plugin
  • Softadmin.Api.Database
    • IDbRequest
    • IDbRequestFactory
  • Softadmin.Api.Diagnostics
    • ILogger
  • Softadmin.Api.Login
    • IUserState
    • LoginPlugin
    • PostLoginPlugin
    • PreLoginPlugin
    • UserAuthenticationPlugin
  • Softadmin.Api.Logout
    • LogoutPlugin
  • Softadmin.Api.Page
    • ICustomPage
    • PagePlugin
  • Softadmin.Api.Ui
    • IDebugWindow
    • IProgressWindow

Interface ICredentialsStore

Gives access to the system's encrypted credentials.

Namespace: Softadmin.Api
Assembly: Softadmin.Api.dll
Syntax
public interface ICredentialsStore

Methods

GetCredentials(String, out String, out String)

Looks up and decrypts an account name/password pair.

Declaration
void GetCredentials(string name, out string accountName, out string accountPassword)
Parameters
Type Name Description
System.String name

Internal name of the credentials to load.

System.String accountName

The account's name.

System.String accountPassword

The account's password.

GetSecretKey(String, out String)

Looks up and decrypts a secret key.

Declaration
void GetSecretKey(string name, out string secret)
Parameters
Type Name Description
System.String name

Internal name of the credentials to load.

System.String secret

The secret key.

In This Article
Back to top Generated by DocFX