WebPart.GetData Method

NOTE: This API is now obsolete.

Called when the System.Web.UI.Control.PreRender event occurs to allow a Web Part to retrieve data.

Namespace:  Microsoft.SharePoint.WebPartPages
Assembly:  Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: No

Syntax

'Declaration
<ObsoleteAttribute("Use IConnectionData.GetData() instead.")> _
Public Overridable Sub GetData
'Usage
Dim instance As WebPart

instance.GetData()
[ObsoleteAttribute("Use IConnectionData.GetData() instead.")]
public virtual void GetData()

Remarks

The GetData method is used in conjunction with the GetRequiresData method. A connectable Web Part that requires data should override the GetData method. If the Web Part needs to retrieve data during the PreRender event, it should start an asynchronous worker thread to retrieve the data. If the Web Part needs to wait for data from a connected Web Part, such as a Web Part that implements the IFilterConsumer interface, it should do nothing.

See Also

Reference

WebPart Class

WebPart Members

Microsoft.SharePoint.WebPartPages Namespace