Search Results for

    Show / Hide Table of Contents

    Class ListItem

    Inheritance
    object
    ListItem
    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 ListItem

    Properties

    Audit

    Audit information.

    Declaration
    [JsonProperty("audit", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public UserAudit Audit { get; set; }
    Property Value
    UserAudit

    BrokenIndirectReferenceIds

    All the ids of the broken indirect references (tagbox that has a property that reference a broken tagbox)

    Declaration
    [JsonProperty("brokenIndirectReferenceIds", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    [Obsolete("No longer set by the system, will be removed in the future.")]
    public ICollection<string> BrokenIndirectReferenceIds { get; set; }
    Property Value
    ICollection<string>

    BrokenReferenceIds

    All the ids of the broken references (tagboxes)

    Declaration
    [JsonProperty("brokenReferenceIds", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public ICollection<string> BrokenReferenceIds { get; set; }
    Property Value
    ICollection<string>

    BrokenRelationTargetIds

    All the target ids of the broken relations

    Declaration
    [JsonProperty("brokenRelationTargetIds", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public ICollection<string> BrokenRelationTargetIds { get; set; }
    Property Value
    ICollection<string>

    Content

    The content data of the list item.

    Declaration
    [JsonProperty("content", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public object Content { get; set; }
    Property Value
    object

    ContentSchemaId

    The id of the schema with schema type list.

    Declaration
    [JsonProperty("contentSchemaId", Required = Required.Always)]
    [Required]
    public string ContentSchemaId { get; set; }
    Property Value
    string

    DisplayValues

    Contains language specific display values, rendered according to the list schema's display pattern configuration.

    Declaration
    [JsonProperty("displayValues", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public DisplayValueDictionary DisplayValues { get; set; }
    Property Value
    DisplayValueDictionary

    Id

    The list item id.

    Declaration
    [JsonProperty("id", Required = Required.Always)]
    [Required]
    public string Id { get; set; }
    Property Value
    string

    LifeCycle

    LifeCycle of list item

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

    Methods

    ConvertTo<T>()

    Converts the content of a list item detail to the given type.

    Declaration
    public T ConvertTo<T>()
    Returns
    T

    The converted content.

    Type Parameters
    T

    The content type.

    FromJson(string)

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

    Returns
    ListItem

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX