Show / Hide Table of Contents

    Class Page1<T>

    Defines a page in Azure responses.

    Inheritance
    Object
    Page1<T>
    Namespace: System.Dynamic.ExpandoObject
    Assembly: Microsoft.Azure.Management.Sql.dll
    Syntax
    [Newtonsoft.Json.JsonObject]
    public class Page1<T> : Microsoft.Rest.Azure.IPage<T>, System.Collections.Generic.IEnumerable<T>
    Type Parameters
    T

    Type of the page content items

    Constructors

    Page1<T>()

    Declaration
    public Page1 ();

    Properties

    NextPageLink

    Gets the link to the next page.

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

    Methods

    GetEnumerator()

    Returns an enumerator that iterates through the collection.

    Declaration
    public System.Collections.Generic.IEnumerator<T> GetEnumerator ();
    Returns
    IEnumerator<T>

    A an enumerator that can be used to iterate through the collection.

    Explicit Interface Implementations

    IEnumerable.GetEnumerator()

    Returns an enumerator that iterates through the collection.

    Declaration
    System.Collections.IEnumerator IEnumerable.GetEnumerator ();
    Returns
    IEnumerator

    A an enumerator that can be used to iterate through the collection.

    Back to top Azure SDK for Net