Search Results for

    Show / Hide Table of Contents

    Class ListItemUpdateRequest

    Request to update an existing list item

    Inheritance
    object
    ListItemUpdateRequest
    ListItemUpdateItem
    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 ListItemUpdateRequest

    Properties

    Content

    The content data of the list item. It's an object of dynamic metadata whose structure is defined in the Content schema of the list item.

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

    ContentFieldsUpdateOptions

    Options to modify the behavior for updating the content.
    Merge: the values specified in the Content object are merged to the existing content.
    Replace: the values specified in the Content object entirely replace any existing content.
    Defaults to Merge.

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

    Methods

    FromJson(string)

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

    Returns
    ListItemUpdateRequest

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX