Class ExplicitHashCredentials
Credentials with a specified user name and MD5 password hash provided by the user
Inheritance
System.Object
ExplicitHashCredentials
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Innovator.Client
Assembly: Innovator.Client.dll
Syntax
public class ExplicitHashCredentials : ICredentials
Constructors
| Improve this Doc View SourceExplicitHashCredentials(String, String, String)
Instantiate an ExplicitHashCredentials
instance
Declaration
public ExplicitHashCredentials(string database, string username, string passwordHash)
Parameters
Type | Name | Description |
---|---|---|
System.String | database | |
System.String | username | |
System.String | passwordHash |
Properties
| Improve this Doc View SourceDatabase
The database to connect to
Declaration
public string Database { get; }
Property Value
Type | Description |
---|---|
System.String |
Implements
| Improve this Doc View SourcePasswordHash
The MD5 hash of the password to use
Declaration
public string PasswordHash { get; }
Property Value
Type | Description |
---|---|
System.String |
Username
The user name to use
Declaration
public string Username { get; }
Property Value
Type | Description |
---|---|
System.String |