WebPartMobileAdapter.OnUnloadForMobile Method
Replaces the OnUnload(EventArgs) method of the control that is being adapted when the control is on a WebPartMobilePage.
Namespace: Microsoft.SharePoint.WebPartPages
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: No
Syntax
'Declaration
Protected Overridable Sub OnUnloadForMobile ( _
e As EventArgs _
)
'Usage
Dim e As EventArgs
Me.OnUnloadForMobile(e)
protected virtual void OnUnloadForMobile(
EventArgs e
)
Parameters
e
Type: System.EventArgsAn object that contains data for the event.
Remarks
The default implementation only calls the base OnUnload(EventArgs) method.
Do not call this method from your own code. The Microsoft SharePoint Foundation mobile adaption framework will call it as part of the UnLoad() event handling.
Notes to Inheritors
Override this method when you need additional loading behavior for the control when it is used on a mobile device.
Important
Your override must always call the base adapter class’s OnUnload(EventArgs) method to ensure that the UnLoad() event of the control that is being adapted is raised.