다음을 통해 공유


ClientCredentials.ClientCertificate 속성

정의

클라이언트가 서비스로부터 인증을 얻기 위해 사용하는 X.509 인증서를 제공하는 데 사용할 수 있는 개체를 가져옵니다.

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

속성 값

X509CertificateInitiatorClientCredential

클라이언트 인증서를 나타내는 X509CertificateInitiatorClientCredential입니다.

예제

다음 코드에서는 이 속성을 사용하여 X.509 인증서를 구성하는 방법을 보여줍니다.

// Create the client with the binding and EndpointAddress.
CalculatorClient calcClient = new CalculatorClient(b, ea);

// Set the client credential value to a valid certificate.
calcClient.ClientCredentials.ClientCertificate.SetCertificate(
    StoreLocation.CurrentUser,
    StoreName.TrustedPeople,
    X509FindType.FindBySubjectName,
    "client.com");
' Create the client with the binding and EndpointAddress.
Dim calcClient As New CalculatorClient(b, ea)

' Set the client credential value to a valid certificate.
calcClient.ClientCredentials.ClientCertificate.SetCertificate(StoreLocation.CurrentUser, StoreName.TrustedPeople, X509FindType.FindBySubjectName, "client.com")

설명

클라이언트 애플리케이션 구성 파일의 인증서>를< 사용하여 이 값을 설정할 수도 있습니다.

적용 대상