MessageSecurityOverTcp.AlgorithmSuite Property

Definition

Specifies the algorithm suite to be used for securing messages at the SOAP level.

public System.ServiceModel.Security.SecurityAlgorithmSuite AlgorithmSuite { get; set; }

Property Value

A SecurityAlgorithmSuite. The default is Basic256.

Exceptions

The value of AlgorithmSuite is null.

Examples

The following code shows how to access and set this property.

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;

Remarks

You should be aware of the strengths and weaknesses of the relevant algorithms when making modifications to this setting.

If you set this property to a value other than the default and generate a configuration file using ServiceModel Metadata Utility Tool (Svcutil.exe), it is not generated correctly and you must manually edit the configuration file to set the corresponding configuration attribute to the desired value.

Applies to

מוצר גירסאות
.NET 8 (package-provided)
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1