Search Results for

    Show / Hide Table of Contents

    Class ListItemImportResult

    Result information of a list item import operation

    Inheritance
    System.Object
    ListItemImportResult
    Inherited Members
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: System.Dynamic.ExpandoObject
    Syntax
    public class ListItemImportResult

    Properties

    ImportedListItemCount

    Number of list items imported

    Declaration
    public int ImportedListItemCount { get; set; }
    Property Value
    System.Int32

    ImportedListItemIds

    Ids of the list items that were successfully imported

    Declaration
    public ICollection<string> ImportedListItemIds { get; set; }
    Property Value
    System.Collections.Generic.ICollection<System.String>

    SkippedListItemCount

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

    Declaration
    public int SkippedListItemCount { get; set; }
    Property Value
    System.Int32

    SkippedListItemIds

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

    Declaration
    public ICollection<string> SkippedListItemIds { get; set; }
    Property Value
    System.Collections.Generic.ICollection<System.String>

    TotalListItemCount

    Total number of list items requested to be imported

    Declaration
    public int TotalListItemCount { get; set; }
    Property Value
    System.Int32

    Methods

    FromJson(String)

    Declaration
    public static ListItemImportResult FromJson(string data)
    Parameters
    System.String data

    Returns
    ListItemImportResult

    ToJson()

    Declaration
    public string ToJson()
    Returns
    System.String

    Back to top Generated by DocFX