The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
NetNamedPipeBinding Constructor (String^)
.NET Framework (current version)
Initializes a new instance of the NetNamedPipeBinding class with a specified configuration name.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
Parameters
- configurationName
-
Type:
System::String^
The binding configuration name for the netNamedPipeBinding Element.
Use this constructor when you want to initialize the binding settings from configuration.
Uri baseAddress = new Uri("http://localhost:8000/uesamples/service"); ServiceHost serviceHost = new ServiceHost(typeof(CalculatorService), baseAddress); NetNamedPipeBinding binding = new NetNamedPipeBinding("CalcConfig");
.NET Framework
Available since 3.0
Available since 3.0
Show: