Class CreateContentItemEventArgs
- Namespace
- CMS.ContentEngine
- Assembly
- CMS.ContentEngine.dll
Event arguments for Create event.
public sealed class CreateContentItemEventArgs : CMSEventArgs
- Inheritance
-
objectEventArgsCreateContentItemEventArgs
- Inherited Members
- Extension Methods
Constructors
CreateContentItemEventArgs()
Initializes a new instance of CreateContentItemEventArgs.
public CreateContentItemEventArgs()
Properties
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; set; }
Property Value
- string
GUID
Content item unique identifier.
public Guid? GUID { get; init; }
Property Value
- Guid?
Remarks
The value is available only in After event.
ID
Content item identifier.
public int? ID { get; init; }
Property Value
- int?
Remarks
The value is available only in After event.
IsSecured
Indicates if content item is secured.
public bool IsSecured { get; set; }
Property Value
- bool
Name
Code name of the content item.
public string Name { get; set; }
Property Value
- string
ScheduledPublishWhen
Date and time when the content item should be published.
public DateTime? ScheduledPublishWhen { get; init; }
Property Value
- DateTime?
ScheduledUnpublishWhen
Date and time when the content item should be unpublished.
public DateTime? ScheduledUnpublishWhen { get; init; }
Property Value
- DateTime?
VersionStatus
Version status in which the content item was created.
public VersionStatus VersionStatus { get; init; }