Class UpdateDraftEventData
- Namespace
- CMS.ContentEngine
- Assembly
- CMS.ContentEngine.dll
Contains the business data for content item draft update events.
public sealed class UpdateDraftEventData
- Inheritance
-
objectUpdateDraftEventData
- Extension Methods
Remarks
This class holds event-specific data that is shared between before and after update draft events. It represents the business context of the event (content item details) and is separate from cross-handler communication state.
Constructors
UpdateDraftEventData()
Initializes a new instance of the UpdateDraftEventData class.
public UpdateDraftEventData()
Properties
AccessSettings
Access control settings for the content item.
public ContentAccessSettings AccessSettings { get; init; }
Property Value
ContentItemData
Content item data.
public ContentItemData ContentItemData { get; init; }
Property Value
ContentLanguageID
Content language identifier.
public int ContentLanguageID { get; init; }
Property Value
- int
ContentLanguageName
Content language name.
public string ContentLanguageName { get; init; }
Property Value
- string
ContentTypeID
Content item type identifier.
public int ContentTypeID { get; init; }
Property Value
- int
ContentTypeName
Content item type name.
public string ContentTypeName { get; init; }
Property Value
- string
DisplayName
Content item display name, used to identify the item in user interface.
public string DisplayName { get; init; }
Property Value
- string
Guid
Content item unique identifier.
public Guid Guid { get; init; }
Property Value
- Guid
ID
Content item identifier.
public int ID { get; init; }
Property Value
- int
Name
Code name of the content item.
public string Name { get; init; }
Property Value
- string