Search Results for

    Show / Hide Table of Contents

    Class BatchOperationResultDetail<T>

    Inheritance
    object
    BatchOperationResultDetail<T>
    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
    public class BatchOperationResultDetail<T>
    Type Parameters
    T

    Properties

    FailedIds

    Declaration
    public IReadOnlyList<string> FailedIds { get; }
    Property Value
    IReadOnlyList<string>

    FailedItems

    Declaration
    public IReadOnlyList<BatchResponseRow> FailedItems { get; }
    Property Value
    IReadOnlyList<BatchResponseRow>

    SucceededIds

    Declaration
    public IReadOnlyList<string> SucceededIds { get; }
    Property Value
    IReadOnlyList<string>

    SucceededItems

    Gets an enumerable containing all successful items of the operation.

    Declaration
    public IEnumerable<T> SucceededItems { get; }
    Property Value
    IEnumerable<T>

    Remarks

    Items are fetched from the server, so make sure to avoid multiple enumerations.

    Back to top Generated by DocFX