Class PageImportingEventArgs

The argument passed in the event when a page is to be imported to EPiServer through a channel

Inheritance
System.Object
System.EventArgs
PageImportingEventArgs
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.ContentChannels.Events
Assembly: EPiServer.dll
Version: 8.11.0
Syntax
[Obsolete("Use ContentImportingEventArgs instead", false)]
public class PageImportingEventArgs : ContentImportingEventArgs

Constructors

PageImportingEventArgs(String, String, IDictionary<String, String>, String, Guid, Guid, String)

Initializes a new instance of the PageImportingEventArgs class.

Declaration
public PageImportingEventArgs(string channelId, string pageName, IDictionary<string, string> propertyMappings, string pageTypeName, Guid parentId, Guid pageId, string cultureName)
Parameters
Type Name Description
System.String channelId

The channel id.

System.String pageName

Name of the page.

System.Collections.Generic.IDictionary<System.String, System.String> propertyMappings

A dictionary which represents the mapping between properties.

System.String pageTypeName

Name of the page type.

System.Guid parentId

The parent id.

System.Guid pageId

The page id.

System.String cultureName

Name of the culture.

Properties

PageId

Gets or sets the page id.

Declaration
public Guid PageId { get; set; }
Property Value
Type Description
System.Guid

The page id.

PageName

Gets or sets the name of the page.

Declaration
public string PageName { get; set; }
Property Value
Type Description
System.String

The name of the page.

PageTypeName

Gets or sets the page type name.

Declaration
public string PageTypeName { get; set; }
Property Value
Type Description
System.String

The page type name.

Extension Methods