Share via


SubscriptionListOperationsResponse.ContinuationToken Property

 

Gets or sets a token that is used to list sets of long results.

Namespace:   Microsoft.WindowsAzure.Management.Models
Assembly:  Microsoft.WindowsAzure.Management (in Microsoft.WindowsAzure.Management.dll)

Syntax

public string ContinuationToken { get; set; }
public:
property String^ ContinuationToken {
    String^ get();
    void set(String^ value);
}
member ContinuationToken : string with get, set
Public Property ContinuationToken As String

Property Value

Type: System.String

The token.

Remarks

When there are too many operations to list, such as when the requested timeframe is very large, the response includes an incomplete list. A token can be used to return the rest of the list. Subsequent requests must include this parameter to continue listing operations from where the last response left off.

See Also

SubscriptionListOperationsResponse Class
Microsoft.WindowsAzure.Management.Models Namespace

Return to top