ITaskStatusQuery.CancelGetStatus Method (IAsyncResult)
Cancels the querying process.
Namespace: Microsoft.WindowsServerSolutions.Dashboard.Addins.Home
Assembly: HomeAddinContract (in HomeAddinContract.dll)
Syntax
void CancelGetStatus(
IAsyncResult result
)
void CancelGetStatus(
IAsyncResult^ result
)
Sub CancelGetStatus (
result As IAsyncResult
)
Parameters
result
Type: System.IAsyncResultA reference to the asynchronous result.
Remarks
This method must ensure that the querying process is completed or has been canceled before it returns, because the EndGetStatus method does not get invoked. If the querying process is already complete when this method is invoked, it should release all relevant resources and return immediately.
See Also
ITaskStatusQuery Interface
Microsoft.WindowsServerSolutions.Dashboard.Addins.Home Namespace
Return to top