Class UserCredentials
Represents the login creadentials of the user.
Inheritance
System.Object
UserCredentials
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: DocuWare.WebIntegration
Assembly: DocuWare.WebIntegration.dll
Syntax
public class UserCredentials
Constructors
UserCredentials(String, String)
Creates a new instance of the UserCredentials class.
Declaration
public UserCredentials(string password, string userName)
Parameters
Type | Name | Description |
---|---|---|
System.String | password | The password of the user. |
System.String | userName | The name of the user. |
Properties
Password
The password of the user.
Declaration
public string Password { get; set; }
Property Value
Type | Description |
---|---|
System.String |
UserName
The name of the user.
Declaration
public string UserName { get; set; }
Property Value
Type | Description |
---|---|
System.String |