NetMsmqSecurityMode Enum

Definition

The NetMsmqSecurityMode enumeration specifies security modes that can be used by the MSMQ transport.

public enum class NetMsmqSecurityMode
public enum NetMsmqSecurityMode
type NetMsmqSecurityMode = 
Public Enum NetMsmqSecurityMode
Inheritance
NetMsmqSecurityMode

Fields

Both 3

Enables both MSMQ transport security and SOAP security.

Message 2

Enables SOAP security.

None 0

Disables both MSMQ transport security and SOAP security.

Transport 1

Enables MSMQ transport security.

Examples

The following code shows how to specify the security mode for a NetMsmqBinding binding.

NetMsmqBinding binding = new NetMsmqBinding();
    NetMsmqSecurity security = binding.Security;

Remarks

MSMQ transport security secures messages using MSMQ. SOAP security secures messages using the WS-* security protocols. This property determines the mechanisms by which transfer security functions (such as integrity, confidentiality and authentication) are obtained.

Applies to