DataServiceContext.CancelRequest 方法
嘗試取消與所提供之 IAsyncResult 物件相關聯的作業。
命名空間: System.Data.Services.Client
組件: Microsoft.Data.Services.Client (在 Microsoft.Data.Services.Client.dll 中)
語法
'宣告
Public Sub CancelRequest ( _
asyncResult As IAsyncResult _
)
'用途
Dim instance As DataServiceContext
Dim asyncResult As IAsyncResult
instance.CancelRequest(asyncResult)
public void CancelRequest(
IAsyncResult asyncResult
)
public:
void CancelRequest(
IAsyncResult^ asyncResult
)
member CancelRequest :
asyncResult:IAsyncResult -> unit
public function CancelRequest(
asyncResult : IAsyncResult
)
參數
- asyncResult
型別:System.IAsyncResult
正在取消之作業中的 IAsyncResult 物件。
備註
傳遞給 asyncResult 參數的 IAsyncResult 物件是在非同步執行作業時傳回的物件。 如需詳細資訊,請參閱非同步作業 (WCF Data Services)。在處理此要求前,DataServiceContext 執行個體不會處於可預測的狀態。 當 asyncResult 的 IsCompleted 屬性傳回 true 值時,可安全地使用 DataServiceContext。