Search Results for

    Show / Hide Table of Contents
    View Source

    Class DataTypeSave

    Represents a datatype model for editing.

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

    Properties

    View Source

    Action

    Gets or sets the action to perform.

    Declaration
    [DataMember(Name = "action", IsRequired = true)]
    [Required]
    public ContentSaveAction Action { get; set; }
    Property Value
    Type Description
    ContentSaveAction
    Remarks

    Some values (publish) are illegal here.

    View Source

    ConfigurationFields

    Gets or sets the datatype configuration fields.

    Declaration
    [DataMember(Name = "preValues")]
    public IEnumerable<DataTypeConfigurationFieldSave>? ConfigurationFields { get; set; }
    Property Value
    Type Description
    System.Nullable<IEnumerable<DataTypeConfigurationFieldSave>>
    View Source

    EditorAlias

    Gets or sets the datatype editor.

    Declaration
    [DataMember(Name = "selectedEditor", IsRequired = true)]
    [Required]
    public string EditorAlias { get; set; }
    Property Value
    Type Description
    System.String
    View Source

    PersistedDataType

    Gets or sets the persisted data type.

    Declaration
    [IgnoreDataMember]
    public IDataType PersistedDataType { get; set; }
    Property Value
    Type Description
    IDataType
    View Source

    PropertyEditor

    Gets or sets the property editor.

    Declaration
    [IgnoreDataMember]
    public IDataEditor PropertyEditor { get; set; }
    Property Value
    Type Description
    IDataEditor
    • Improve this Doc
    • View Source
    In This Article
    • Properties
      • Action
      • ConfigurationFields
      • EditorAlias
      • PersistedDataType
      • PropertyEditor
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX