MessageSecurityOverHttp.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。 既定値は、Basic256 です。

例外

AlgorithmSuite の値が null です。

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

WSHttpBinding binding = new WSHttpBinding();
binding.Security.Mode = SecurityMode.Message;
binding.Security.Message.AlgorithmSuite =
    System.ServiceModel.Security.SecurityAlgorithmSuite.Basic256;
Dim binding As New WSHttpBinding()
binding.Security.Mode = SecurityMode.Message
binding.Security.Message.AlgorithmSuite = _
System.ServiceModel.Security.SecurityAlgorithmSuite.Basic256

注釈

このプロパティは、既定とは異なる一連のアルゴリズムを使用する Windows Communication Foundation (WCF) 以外のプラットフォームを使用する場合に最も関連性があります。 この設定を修正する場合、関連するアルゴリズムの強さと脆弱性に注意する必要があります。

適用対象