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
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 |
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. |