Class CreateWebPageCreateCommandResult
Command result used as a response for the Create(CreateWebPageCreateCommandArguments, CancellationToken) and Publish(CreateWebPageCreateCommandArguments, CancellationToken) command.
public class CreateWebPageCreateCommandResult
- Inheritance
-
objectCreateWebPageCreateCommandResult
- Derived
- Extension Methods
Constructors
CreateWebPageCreateCommandResult()
public CreateWebPageCreateCommandResult()
Properties
CreateAnother
Indicates that the web page was created and the creation wizard should offer creating another web page of the same content type.
When true, Items contains the form items of the "create another page" dialog
with the previously selected content type and page template prefilled.
public bool CreateAnother { get; set; }
Property Value
- bool
Items
In case of failure or failed validation contains edited page form fields with data.
public ICollection<IFormItemClientProperties> Items { get; set; }
Property Value
- ICollection<IFormItemClientProperties>
RedirectUrl
If not empty, contains url to redirect to in case of successful validation.
public string RedirectUrl { get; set; }
Property Value
- string
Status
Command result status.
public WebPageCommandResultStatus Status { get; set; }
Property Value
WebPageItemId
Created web page item identifier.
public int WebPageItemId { get; set; }
Property Value
- int