Class FilterEventArgs
The event arguments used by the Filter event.
Inheritance
System.Object
    System.EventArgs
    FilterEventArgs
  Inherited Members
      System.EventArgs.Empty
    
    
      System.Object.ToString()
    
    
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
  Namespace: EPiServer.Filters
Assembly: EPiServer.dll
Version: 7.19.2Syntax
public class FilterEventArgs : EventArgsConstructors
FilterEventArgs()
Initializes a new instance of the FilterEventArgs class.
Declaration
public FilterEventArgs()FilterEventArgs(PageDataCollection)
Constructor that uses the referenced PageDataCollection.
Declaration
public FilterEventArgs(PageDataCollection pages)Parameters
| Type | Name | Description | 
|---|---|---|
| PageDataCollection | pages | The list of pages to pass to the event handlers. | 
Remarks
Note that the passed PageDataCollection is used directly and may be modified by the event handlers.
Properties
Pages
Get the list of pages to operate on.
Declaration
public PageDataCollection Pages { get; }Property Value
| Type | Description | 
|---|---|
| PageDataCollection | 
