次の方法で共有


MessageSecurityOverTcp.AlgorithmSuite プロパティ

定義

メッセージを SOAP レベルで保護するために使用されるアルゴリズム スイートを指定します。

public:
 property System::ServiceModel::Security::SecurityAlgorithmSuite ^ AlgorithmSuite { System::ServiceModel::Security::SecurityAlgorithmSuite ^ get(); void set(System::ServiceModel::Security::SecurityAlgorithmSuite ^ value); };
public System.ServiceModel.Security.SecurityAlgorithmSuite AlgorithmSuite { get; set; }
member this.AlgorithmSuite : System.ServiceModel.Security.SecurityAlgorithmSuite with get, set
Public Property AlgorithmSuite As SecurityAlgorithmSuite

プロパティ値

SecurityAlgorithmSuite

SecurityAlgorithmSuite。 既定値は、Basic256 です。

例外

AlgorithmSuite の値が null です。

次のコードでは、このプロパティにアクセスして設定する方法を示します。

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

注釈

この設定を修正する場合、関連するアルゴリズムの強さと脆弱性に注意する必要があります。

このプロパティを既定値以外の値に設定し、 ServiceModel メタデータ ユーティリティ ツール (Svcutil.exe) を使用して構成ファイルを生成した場合、正しく生成されず、対応する構成属性を目的の値に設定するように構成ファイルを手動で編集する必要があります。

適用対象