Class ConvertedPageEventArgs
Event argument used in PageTypeConverter
Inheritance
System.Object
System.EventArgs
ConvertedPageEventArgs
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.Core
Assembly: EPiServer.dll
Version: 11.20.7Syntax
public class ConvertedPageEventArgs : EventArgs
Constructors
ConvertedPageEventArgs(PageReference, PageType, PageType, Boolean)
Creates a new instance of ConvertedPageEventArgs
Declaration
public ConvertedPageEventArgs(PageReference pageLink, PageType fromPageType, PageType toPageType, bool recursive)
Parameters
Type | Name | Description |
---|---|---|
PageReference | pageLink | |
PageType | fromPageType | |
PageType | toPageType | |
System.Boolean | recursive |
Properties
FromPageType
Specifies from which pagetype it is converted
Declaration
public PageType FromPageType { get; }
Property Value
Type | Description |
---|---|
PageType |
PageLink
The page which is converted
Declaration
public PageReference PageLink { get; }
Property Value
Type | Description |
---|---|
PageReference |
Recursive
Specifies if the convert operation is recursive for descendents of same pagetype
Declaration
public bool Recursive { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
ToPageType
Specifies to which pagetype it is converted
Declaration
public PageType ToPageType { get; }
Property Value
Type | Description |
---|---|
PageType |