Share via


UsernamePasswordCredentials Constructors

Definition

Overloads

UsernamePasswordCredentials()

Initializes a new instance of the UsernamePasswordCredentials class.

UsernamePasswordCredentials(String, String)

Initializes a new instance of the UsernamePasswordCredentials class.

UsernamePasswordCredentials()

Initializes a new instance of the UsernamePasswordCredentials class.

public UsernamePasswordCredentials();
Public Sub New ()

Applies to

UsernamePasswordCredentials(String, String)

Initializes a new instance of the UsernamePasswordCredentials class.

public UsernamePasswordCredentials(string username, string password);
new Microsoft.Azure.Management.VideoAnalyzer.Models.UsernamePasswordCredentials : string * string -> Microsoft.Azure.Management.VideoAnalyzer.Models.UsernamePasswordCredentials
Public Sub New (username As String, password As String)

Parameters

username
String

Username to be presented as part of the credentials.

password
String

Password to be presented as part of the credentials. It is recommended that this value is parameterized as a secret string in order to prevent this value to be returned as part of the resource on API requests.

Applies to