Search Results for

    Show / Hide Table of Contents

    Class BatchResponseRow

    Row in a batch operation response

    Inheritance
    System.Object
    BatchResponseRow
    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 BatchResponseRow

    Properties

    Error

    If the operation did not succeed, this contains error information.

    Declaration
    public ErrorResponse Error { get; set; }
    Property Value
    ErrorResponse

    Id

    Id of the item.

    Declaration
    public string Id { get; set; }
    Property Value
    System.String

    RequestId

    The identifier provided by user in the corresponding request (or null if none was provided). Used only in bulk creation.

    Declaration
    public string RequestId { get; set; }
    Property Value
    System.String

    Status

    Status code of the operation.

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

    Succeeded

    Indicates if the operation succeeded.

    Declaration
    public bool Succeeded { get; set; }
    Property Value
    System.Boolean

    Version

    New version of the item.

    Declaration
    public long Version { get; set; }
    Property Value
    System.Int64

    Methods

    FromJson(String)

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

    Returns
    BatchResponseRow

    ToJson()

    Declaration
    public string ToJson()
    Returns
    System.String

    Back to top Generated by DocFX