Class XmpField
Represents a field in XMP that can be mapped from or to
Inherited Members
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 |