Class ContentPublishingBranchResult
Represents the result of a content branch publishing operation.
Inheritance
object
Namespace: Umbraco.Cms.Core.Models.ContentPublishing
Assembly: Umbraco.Core.dll
Syntax
public sealed class ContentPublishingBranchResult
Constructors
View SourceContentPublishingBranchResult()
Declaration
public ContentPublishingBranchResult()
Properties
View SourceAcceptedTaskId
Gets or initializes the unique identifier of the accepted background task, if any.
Declaration
public Guid? AcceptedTaskId { get; init; }
Property Value
| Type | Description |
|---|---|
| Guid? |
Content
Gets or initializes the root content item of the branch that was processed.
Declaration
public IContent? Content { get; init; }
Property Value
| Type | Description |
|---|---|
| IContent |
FailedItems
Gets or sets the collection of items that failed to publish in the branch.
Declaration
public IEnumerable<ContentPublishingBranchItemResult> FailedItems { get; set; }
Property Value
| Type | Description |
|---|---|
| IEnumerable<ContentPublishingBranchItemResult> |
SucceededItems
Gets or sets the collection of successfully published items in the branch.
Declaration
public IEnumerable<ContentPublishingBranchItemResult> SucceededItems { get; set; }
Property Value
| Type | Description |
|---|---|
| IEnumerable<ContentPublishingBranchItemResult> |