NetMsmqSecurityElement.Mode Property

Definition

Gets or sets the NetMsmqSecurityMode instance that is associated with the NetMsmqBinding binding.

public:
 property System::ServiceModel::NetMsmqSecurityMode Mode { System::ServiceModel::NetMsmqSecurityMode get(); void set(System::ServiceModel::NetMsmqSecurityMode value); };
[System.Configuration.ConfigurationProperty("mode", DefaultValue=System.ServiceModel.NetMsmqSecurityMode.Transport)]
public System.ServiceModel.NetMsmqSecurityMode Mode { get; set; }
[<System.Configuration.ConfigurationProperty("mode", DefaultValue=System.ServiceModel.NetMsmqSecurityMode.Transport)>]
member this.Mode : System.ServiceModel.NetMsmqSecurityMode with get, set
Public Property Mode As NetMsmqSecurityMode

Property Value

The NetMsmqSecurityMode instance that is associated with the NetMsmqBinding binding.

Attributes

Remarks

This property determines the type of security used by the associated NetMsmqBinding. The following list describes the acceptable values:

  • None - No security will be used.

  • Transport - Transport security will be used.

  • Message - Message-based security will be used.

  • Both - Both message-based security and transport security will be used.

Applies to