ClientCredentialsSecurityTokenManager(ClientCredentials) Конструктор
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Инициализирует новый экземпляр класса ClientCredentialsSecurityTokenManager.
public:
ClientCredentialsSecurityTokenManager(System::ServiceModel::Description::ClientCredentials ^ clientCredentials);
public ClientCredentialsSecurityTokenManager (System.ServiceModel.Description.ClientCredentials clientCredentials);
new System.ServiceModel.ClientCredentialsSecurityTokenManager : System.ServiceModel.Description.ClientCredentials -> System.ServiceModel.ClientCredentialsSecurityTokenManager
Public Sub New (clientCredentials As ClientCredentials)
Параметры
- clientCredentials
- ClientCredentials
Исключения
clientCredentials
имеет значение null
.
Примеры
В следующем примере кода показано, как переопределить этот конструктор.
protected MyClientCredentials(MyClientCredentials other)
: base(other)
{
this.clientEncryptingCert = other.clientEncryptingCert;
this.clientSigningCert = other.clientSigningCert;
this.serviceEncryptingCert = other.serviceEncryptingCert;
this.serviceSigningCert = other.serviceSigningCert;
}
Protected Sub New(ByVal other As MyClientCredentials)
MyBase.New(other)
Me.clientEncryptingCert = other.clientEncryptingCert
Me.clientSigningCert = other.clientSigningCert
Me.serviceEncryptingCert = other.serviceEncryptingCert
Me.serviceSigningCert = other.serviceSigningCert
End Sub
Применяется к
Совместная работа с нами на GitHub
Источник этого содержимого можно найти на GitHub, где также можно создавать и просматривать проблемы и запросы на вытягивание. Дополнительные сведения см. в нашем руководстве для участников.