InstanceContextIdleCallback Delegate
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.
Represents the method that is called when an InstanceContext object has finished processing.
public delegate void InstanceContextIdleCallback(InstanceContext ^ instanceContext);
public delegate void InstanceContextIdleCallback(InstanceContext instanceContext);
type InstanceContextIdleCallback = delegate of InstanceContext -> unit
Public Delegate Sub InstanceContextIdleCallback(instanceContext As InstanceContext)
Parameters
- instanceContext
- InstanceContext
The instance context that has finished processing.
Remarks
Use an InstanceContextIdleCallback to notify the Windows Communication Foundation (WCF) runtime that an InstanceContextIdleCallback object has finished processing. When the InstanceContextIdleCallback object notifies the runtime that the InstanceContextIdleCallback has finished its work, WCF calls IInstanceContextProvider.IsIdle once again. This cycle continues until IInstanceContextProvider.IsIdle returns true
and the context is closed and recycled.
For more information, see NotifyIdle.
Extension Methods
GetMethodInfo(Delegate) |
Gets an object that represents the method represented by the specified delegate. |