NoFilterEventHandler Delegate
SharePoint 2010
NOTE: This API is now obsolete.
Represents the method that will handle the NoFilterevent fired by a Web Part that implements the IFilterProvider interface. Upon receiving a NoFilter event, a Web Part that implements the IFilterConsumer interface should reuse the existing filter for the list.
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
[ObsoleteAttribute("Use System.Web.UI.WebControls.WebParts.IWebPartParameters instead")] public delegate void NoFilterEventHandler( Object sender, EventArgs e )
Parameters
- sender
- Type: System.Object
The source of the event, the Web Part.
- e
- Type: System.EventArgs
An EventArgs object that contains the event data.
The following code example shows the declaration of an event of type NoFilterEventHandler from a Microsoft.SharePoint.WebPartPages.WebPart class that implements the IFilterProviderinterface. A code sample that shows the implementation of the event handler is in the NoFilter event topic. A code sample that shows the full implementation of the IFilterConsumerinterface is in the IFilterProvider topic.
// Step #3: Declare the IFilterProvider events. // Because this class implements the IFilterProvider interface, it must // declare the interface members SetFilter, ClearFilter, NoFilter. public event SetFilterEventHandler SetFilter; public event ClearFilterEventHandler ClearFilter; public event NoFilterEventHandler NoFilter;