Search Results for

    Show / Hide Table of Contents
    View Source

    Class MoveOrCopy

    A model representing a model for moving or copying

    Inheritance
    System.Object
    Namespace: Umbraco.Cms.Core.Models.ContentEditing
    Assembly: Umbraco.Core.dll
    Syntax
    [DataContract(Name = "content", Namespace = "")]
    public class MoveOrCopy

    Properties

    View Source

    Id

    The id of the node to move or copy

    Declaration
    [DataMember(Name = "id", IsRequired = true)]
    [Required]
    public int Id { get; set; }
    Property Value
    Type Description
    System.Int32
    View Source

    ParentId

    The Id of the node to move or copy to

    Declaration
    [DataMember(Name = "parentId", IsRequired = true)]
    [Required]
    public int ParentId { get; set; }
    Property Value
    Type Description
    System.Int32
    View Source

    Recursive

    Boolean indicating whether copying the object should be recursive

    Declaration
    [DataMember(Name = "recursive", IsRequired = true)]
    [Required]
    public bool Recursive { get; set; }
    Property Value
    Type Description
    System.Boolean
    View Source

    RelateToOriginal

    Boolean indicating whether copying the object should create a relation to it's original

    Declaration
    [DataMember(Name = "relateToOriginal", IsRequired = true)]
    [Required]
    public bool RelateToOriginal { get; set; }
    Property Value
    Type Description
    System.Boolean
    • Improve this Doc
    • View Source
    In This Article
    • Properties
      • Id
      • ParentId
      • Recursive
      • RelateToOriginal
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX