NetMsmqSecurityMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Fields
Name | Value | Description |
---|---|---|
None | 0 | Disables both MSMQ transport security and SOAP security. |
Transport | 1 | Enables MSMQ transport security. |
Message | 2 | Enables SOAP security. |
Both | 3 | Enables both MSMQ transport security and SOAP 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
.NET