Search Results for

    Show / Hide Table of Contents

    Class XmpField

    Represents a field in XMP that can be mapped from or to

    Inheritance
    object
    XmpField
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: System.Dynamic.ExpandoObject
    Syntax
    [GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
    public class XmpField

    Properties

    DataType

    Data type of the field.

    Declaration
    [JsonProperty("dataType", Required = Required.Always)]
    [Required(AllowEmptyStrings = true)]
    [JsonConverter(typeof(StringEnumConverter))]
    public XmpFieldDataType DataType { get; set; }
    Property Value
    XmpFieldDataType

    IsWritable

    Indicates if the field can be written to.

    Declaration
    [JsonProperty("isWritable", Required = Required.Always)]
    public bool IsWritable { get; set; }
    Property Value
    bool

    Path

    Path of the field in XMP.

    Declaration
    [JsonProperty("path", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string Path { get; set; }
    Property Value
    string

    Methods

    FromJson(string)

    Declaration
    public static XmpField FromJson(string data)
    Parameters
    string data

    Returns
    XmpField

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX