Show / Hide Table of Contents

    Class OperationListResult

    Result of the request to list Microsoft.Insights operations. It contains a list of operations and a URL link to get the next set of results.

    Inheritance
    Object
    OperationListResult
    Namespace: System.Dynamic.ExpandoObject
    Assembly: Microsoft.Azure.Management.Monitor.dll
    Syntax
    public class OperationListResult

    Constructors

    OperationListResult()

    Initializes a new instance of the OperationListResult class.

    Declaration
    public OperationListResult ();

    OperationListResult(IList<Operation>, String)

    Initializes a new instance of the OperationListResult class.

    Declaration
    public OperationListResult (System.Collections.Generic.IList<Microsoft.Azure.Management.Monitor.Models.Operation> value = null, string nextLink = null);
    Parameters
    IList<Operation> value

    List of operations supported by the Microsoft.Insights provider.

    String nextLink

    URL to get the next set of operation list results if there are any.

    Properties

    NextLink

    Gets or sets URL to get the next set of operation list results if there are any.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="nextLink")]
    public string NextLink { get; set; }
    Property Value
    String

    Value

    Gets or sets list of operations supported by the Microsoft.Insights provider.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="value")]
    public System.Collections.Generic.IList<Microsoft.Azure.Management.Monitor.Models.Operation> Value { get; set; }
    Property Value
    IList<Operation>

    Back to top Azure SDK for Net