Поделиться через


X509ServiceCertificateAuthentication.TrustedStoreLocation Свойство

Определение

Возвращает или задает расположение доверенного хранилища, в контексте которого проверяется цепь сертификатов клиента.

public:
 property System::Security::Cryptography::X509Certificates::StoreLocation TrustedStoreLocation { System::Security::Cryptography::X509Certificates::StoreLocation get(); void set(System::Security::Cryptography::X509Certificates::StoreLocation value); };
public System.Security.Cryptography.X509Certificates.StoreLocation TrustedStoreLocation { get; set; }
member this.TrustedStoreLocation : System.Security.Cryptography.X509Certificates.StoreLocation with get, set
Public Property TrustedStoreLocation As StoreLocation

Значение свойства

Расположение доверенного хранилища.

Исключения

Предпринята попытка установки, когда учетные данные доступны только для чтения.

Примеры

В следующем примере кода показано, как задать это свойство.

ClientCredentials creds = new ClientCredentials();

// Configure chain trust.
creds.ServiceCertificate.Authentication.CertificateValidationMode
    = X509CertificateValidationMode.ChainTrust;
creds.ServiceCertificate.Authentication.TrustedStoreLocation
    = StoreLocation.LocalMachine;
Dim creds As New ClientCredentials()

' Configure chain trust.
creds.ServiceCertificate.Authentication.CertificateValidationMode = X509CertificateValidationMode.ChainTrust
creds.ServiceCertificate.Authentication.TrustedStoreLocation = StoreLocation.LocalMachine

Это свойство также можно задать в файле конфигурации.

Комментарии

В этом свойстве указывается, какой контекст будет использоваться для проверки цепи сертификатов X.509, контекст компьютера или пользователя.

Применяется к