Search Results for

    Show / Hide Table of Contents

    Class ListItemFieldsBatchUpdateFilterRequest

    Request to batch update list items' fields based on a filter

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

    Properties

    AllowMissingDependencies

    Allow updating list items with references to list items or contents that do not exist in the system.

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

    ChangeCommands

    Changes that need to be applied to the existing list items. The same set of changes is applied to all list items.

    Declaration
    [JsonProperty("changeCommands", Required = Required.Always)]
    [Required]
    public ICollection<MetadataValuesChangeCommandBase> ChangeCommands { get; set; }
    Property Value
    ICollection<MetadataValuesChangeCommandBase>

    FilterRequest

    Filters the list items on which the change commands must be applied.

    Declaration
    [JsonProperty("filterRequest", Required = Required.Always)]
    [Required]
    public ListItemFilterRequest FilterRequest { get; set; }
    Property Value
    ListItemFilterRequest

    NotifyProgress

    Create a progress notification and notify on progress. Notifications are shown in the UI only to the same use who triggered the batch update.

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

    Methods

    FromJson(string)

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

    Returns
    ListItemFieldsBatchUpdateFilterRequest

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX