WebPart.NotifyWorkItemComplete Method
NOTE: This API is now obsolete.
Indicates that work being performed on an external asynchronous thread that has been registered using the RegisterWorkItem method has completed.
Namespace: Microsoft.SharePoint.WebPartPages
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: No
Syntax
'Declaration
<ObsoleteAttribute("Use Page.RegisterAsyncTask instead.")> _
<AspNetHostingPermissionAttribute(SecurityAction.LinkDemand, Level := AspNetHostingPermissionLevel.Minimal)> _
Protected Sub NotifyWorkItemComplete ( _
iar As IAsyncResult _
)
'Usage
Dim iar As IAsyncResult
Me.NotifyWorkItemComplete(iar)
[ObsoleteAttribute("Use Page.RegisterAsyncTask instead.")]
[AspNetHostingPermissionAttribute(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
protected void NotifyWorkItemComplete(
IAsyncResult iar
)
Parameters
iar
Type: System.IAsyncResultA System.IAsyncResult object.
Remarks
If the NotifyWorkItemComplete method is not called, or is not called before the timeout occurs for the work being performed, the Web Part infrastructure treats the work as if it has timed out and calls the RenderWorkItemTimeout method instead of the RenderWebPart method.