Search Results for

    Show / Hide Table of Contents

    Class ListItemImportResult

    Result information of a list item import operation

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

    Properties

    ImportedListItemCount

    Number of list items imported

    Declaration
    [JsonProperty("importedListItemCount", Required = Required.Always)]
    public int ImportedListItemCount { get; set; }
    Property Value
    int

    ImportedListItemIds

    Ids of the list items that were successfully imported

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

    SkippedListItemCount

    Number of list items skipped during import phase because they were already found in the system

    Declaration
    [JsonProperty("skippedListItemCount", Required = Required.Always)]
    public int SkippedListItemCount { get; set; }
    Property Value
    int

    SkippedListItemIds

    Ids of the list items that were not imported because already found in the system or due to errors

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

    TotalListItemCount

    Total number of list items requested to be imported

    Declaration
    [JsonProperty("totalListItemCount", Required = Required.Always)]
    public int TotalListItemCount { get; set; }
    Property Value
    int

    Methods

    FromJson(string)

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

    Returns
    ListItemImportResult

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX