ClientCredentials.UserName Proprietà

Definizione

Ottiene un oggetto credenziale utilizzabile per impostare il nome utente e la password utilizzati dal client per l'autenticazione al servizio.

public:
 property System::ServiceModel::Security::UserNamePasswordClientCredential ^ UserName { System::ServiceModel::Security::UserNamePasswordClientCredential ^ get(); };
public System.ServiceModel.Security.UserNamePasswordClientCredential UserName { get; }
member this.UserName : System.ServiceModel.Security.UserNamePasswordClientCredential
Public ReadOnly Property UserName As UserNamePasswordClientCredential

Valore della proprietà

Oggetto UserNamePasswordClientCredential che rappresenta la credenziale UserName corrente.

Esempio

Nel codice seguente viene illustrato come configurare una credenziale.

// Configure the proxy with
// (username,password).
calcClient.ClientCredentials.UserName.UserName = "username";
calcClient.ClientCredentials.UserName.Password = "changethispassword";
' Configure the proxy with 
' (username,password).
calcClient.ClientCredentials.UserName.UserName = "username"
calcClient.ClientCredentials.UserName.Password = "changethispassword"

Commenti

È possibile utilizzare l'oggetto restituito da questa proprietà per configurare la credenziale chiamandone i membri, ad esempio UserName e Password.

Si applica a