MessageSecurityOverMsmq.AlgorithmSuite Property

Definition

Specifies the algorithm suite used for security messages at the SOAP level.

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

Property Value

The SecurityAlgorithmSuite setting for messages sent over the NetMsmqBinding binding.

Examples

msOverMsmq.AlgorithmSuite = SecurityAlgorithmSuite.Basic128;
With msOverMsmq
    .AlgorithmSuite = SecurityAlgorithmSuite.Basic128

Remarks

SecurityAlgorithmSuite defines of a variety of algorithms such as Canonicalization, Digest, KeyWrap, Signature, Encryption, and KeyDerivation algorithms. This property is most relevant when working with a platform that uses a set of algorithms different than the default. You should be aware of the strengths and weaknesses of the relevant algorithms when making modifications to this property.

Applies to