InstanceContext Constructor (ServiceHostBase^)

 

Initializes a new instance of the InstanceContext class for a service hosted by a specified host.

Namespace:   System.ServiceModel
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

public:
InstanceContext(
	ServiceHostBase^ host
)

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
Return to top
Show: