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.
InstanceContext Constructor (ServiceHostBase^)
.NET Framework (current version)
Initializes a new instance of the InstanceContext class for a service hosted by a specified host.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
Parameters
- host
-
Type:
System.ServiceModel::ServiceHostBase^
The ServiceHostBase that hosts the service.
| Exception | Condition |
|---|---|
| ArgumentNullException | host is null. |
The following code shows how to construct an InstanceContext object by passing in a ServiceHost instance:
string info = ""; InstanceContext instanceContext = new InstanceContext(serviceHost); info += " " + "State: " + instanceContext.State.ToString() + "\n"; info += " " + "ManualFlowControlLimit: " + instanceContext.ManualFlowControlLimit.ToString() + "\n"; info += " " + "HashCode: " + instanceContext.GetHashCode().ToString() + "\n"; Console.WriteLine(info);
.NET Framework
Available since 3.0
Available since 3.0
Show: