Class StorageListPage
- Namespace
- CloudStorageORM.Abstractions
- Assembly
- CloudStorageORM.dll
Represents a single provider list page with continuation state.
public sealed record StorageListPage : IEquatable<StorageListPage>
- Inheritance
-
StorageListPage
- Implements
- Inherited Members
Constructors
StorageListPage(IReadOnlyList<string>, string?, bool)
Represents a single provider list page with continuation state.
public StorageListPage(IReadOnlyList<string> Keys, string? ContinuationToken, bool HasMore)
Parameters
KeysIReadOnlyList<string>ContinuationTokenstringHasMorebool
Properties
ContinuationToken
public string? ContinuationToken { get; init; }
Property Value
HasMore
public bool HasMore { get; init; }
Property Value
Keys
public IReadOnlyList<string> Keys { get; init; }