Table of Contents

Class UpdateWebPageMetadataEventData

Namespace
CMS.Websites
Assembly
CMS.Websites.dll

Contains the business data for web page metadata update events.

public sealed class UpdateWebPageMetadataEventData
Inheritance
object
UpdateWebPageMetadataEventData
Extension Methods

Remarks

This class holds event-specific data that is shared between before and after update web page metadata events. It represents the business context of the event (web page details) and is separate from cross-handler communication state.

Constructors

UpdateWebPageMetadataEventData()

Initializes a new instance of the UpdateWebPageMetadataEventData class.

public UpdateWebPageMetadataEventData()

Remarks

Intended for testing scenarios.

Properties

AccessSettings

Access control settings for the web page item.

public ContentAccessSettings AccessSettings { get; init; }

Property Value

ContentAccessSettings

ContentItemID

Content item identifier.

public int ContentItemID { get; init; }

Property Value

int

ContentTypeID

Content type identifier.

public int ContentTypeID { get; init; }

Property Value

int

ContentTypeName

Content type name.

public string ContentTypeName { get; init; }

Property Value

string

Guid

Web page unique identifier.

public Guid Guid { get; init; }

Property Value

Guid

ID

Web page identifier.

public int ID { get; init; }

Property Value

int

Name

Code name of the web page.

public string Name { get; set; }

Property Value

string

Order

Web page order.

public int Order { get; init; }

Property Value

int

ParentID

Web page parent identifier.

public int ParentID { get; init; }

Property Value

int

TreePath

Web page tree path.

public string TreePath { get; init; }

Property Value

string

WebsiteChannelID

Website channel identifier.

public int WebsiteChannelID { get; init; }

Property Value

int

WebsiteChannelName

Website channel name.

public string WebsiteChannelName { get; init; }

Property Value

string