MessageSecurityOverTcp.AlgorithmSuite プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
メッセージを 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
です。
例
次のコードでは、このプロパティにアクセスして設定する方法を示します。
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) を使用して構成ファイルを生成した場合、正しく生成されず、対応する構成属性を目的の値に設定するように構成ファイルを手動で編集する必要があります。