NetNamedPipeSecurity.Mode Property

Definition

Gets or sets the security mode for the named pipe binding.

public:
 property System::ServiceModel::NetNamedPipeSecurityMode Mode { System::ServiceModel::NetNamedPipeSecurityMode get(); void set(System::ServiceModel::NetNamedPipeSecurityMode value); };
public System.ServiceModel.NetNamedPipeSecurityMode Mode { get; set; }
member this.Mode : System.ServiceModel.NetNamedPipeSecurityMode with get, set
Public Property Mode As NetNamedPipeSecurityMode

Property Value

The value of the NetNamedPipeSecurityMode for the named pipe binding. The default value is Transport.

Examples

The following code shows how to set the Mode property:

nnpSecurity.Mode = NetNamedPipeSecurityMode.Transport;

Remarks

Valid values for this property are:

  • Transport - Use transport-based security. The default setting uses NTLM which does not provide server authentication.

  • None - Use no security.

Applies to