다음을 통해 공유


ClientCredentials.UserName 속성

정의

클라이언트가 서비스로부터 인증을 얻을 때 사용하는 사용자 이름과 암호를 설정하는 데 사용할 수 있는 자격 증명 개체를 가져옵니다.

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

속성 값

UserNamePasswordClientCredential

현재 UserName 자격 증명을 나타내는 UserNamePasswordClientCredential입니다.

예제

다음 코드는 자격 증명을 구성하는 방법을 보여줍니다.

// 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"

설명

이 속성에서 반환된 개체를 사용하여 멤버(예 UserName Password: 및 )를 호출하여 자격 증명을 구성할 수 있습니다.

적용 대상