API version:
Show / Hide Table of Contents

Class CollectionPage<T>

Represents a page of resources in an Okta API collection.

Inheritance
System.Object
CollectionPage<T>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Okta.Sdk
Assembly: Okta.Sdk.dll
Syntax
public class CollectionPage<T>
Type Parameters
Name Description
T

The resource type of this collection.

Remarks

See the API documentation on pagination.

Properties

Items

Gets or sets the items in this page.

Declaration
public IEnumerable<T> Items { get; set; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<T>

The items in this page.

NextLink

Gets or sets the link to get the next page of results, if any.

Declaration
public WebLink NextLink { get; set; }
Property Value
Type Description
WebLink

The link to get the next page of results. If there is no next page, this will be null.

Response

Gets or sets the HTTP response returned from the Okta API when fetching this page.

Declaration
public HttpResponse<IEnumerable<T>> Response { get; set; }
Property Value
Type Description
HttpResponse<System.Collections.Generic.IEnumerable<T>>

The HTTP response returned from the Okta API when fetching this page.

Back to top Copyright © 2021 Okta, Inc.
Generated with DocFx.