Sdílet prostřednictvím


MessageSecurityOverTcp.ClientCredentialType Vlastnost

Definice

Určuje typ přihlašovacích údajů klienta, který klient používá k ověření služby na úrovni SOAP.

public:
 property System::ServiceModel::MessageCredentialType ClientCredentialType { System::ServiceModel::MessageCredentialType get(); void set(System::ServiceModel::MessageCredentialType value); };
public System.ServiceModel.MessageCredentialType ClientCredentialType { get; set; }
member this.ClientCredentialType : System.ServiceModel.MessageCredentialType with get, set
Public Property ClientCredentialType As MessageCredentialType

Hodnota vlastnosti

MessageCredentialType

Úloha MessageCredentialType. Výchozí formát je Windows.

Výjimky

Příklady

Následující kód ukazuje, jak získat přístup a nastavit tuto vlastnost.

NetTcpBinding binding = new NetTcpBinding();
// Specify the mode, then the credential type.
binding.Security.Mode = SecurityMode.Message;
binding.Security.Message.ClientCredentialType =
    MessageCredentialType.UserName;
binding.Security.Message.AlgorithmSuite =
    System.ServiceModel.Security.SecurityAlgorithmSuite.Basic256;
Dim binding As New NetTcpBinding()
' Specify the mode, then the credential type.
binding.Security.Mode = SecurityMode.Message
binding.Security.Message.ClientCredentialType = MessageCredentialType.UserName
binding.Security.Message.AlgorithmSuite = System.ServiceModel.Security.SecurityAlgorithmSuite.Basic256

Poznámky

Návratová hodnota může být jedním z následujících členů výčtu:

Platí pro