NetNamedPipeSecurity.Mode Property
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.
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.