Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
EmptyPage.cs
1
using
System;
2
using
System.Collections.Generic;
3
4
namespace
Waher.Persistence
5
{
10
public
class
EmptyPage
<T> :
IPage
<T>
11
where T : class
12
{
16
public
IEnumerable<T>
Items
=> Array.Empty<T>();
17
21
public
bool
More
=>
false
;
22
}
23
}
Waher.Persistence.EmptyPage
Represents an empty page of items.
Definition:
EmptyPage.cs:12
Waher.Persistence.EmptyPage.Items
IEnumerable< T > Items
Items available in the page. The enumeration may be empty.
Definition:
EmptyPage.cs:16
Waher.Persistence.EmptyPage.More
bool More
If there may be more pages following this page.
Definition:
EmptyPage.cs:21
Waher.Persistence.IPage
Interface for paginated results.
Definition:
IPage.cs:11
Waher.Persistence
Definition:
Bookmark.cs:4
IoTGateway
Persistence
Waher.Persistence
EmptyPage.cs
Generated by
1.9.5