dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Results
FetchItemsResult Class
The result of the fetchItems()
method containing an array of the fetched portal items, the next entry index, and the total number of results.
ArcGIS Maps SDK for JavaScript
public class FetchItemsResult :
System.IEquatable<dymaptic.GeoBlazor.Core.Results.FetchItemsResult>
Inheritance System.Object 🡒 FetchItemsResult
Implements System.IEquatable<FetchItemsResult>
Constructors
FetchItemsResult(IReadOnlyCollection, Nullable, Nullable) Constructor
The result of the fetchItems()
method containing an array of the fetched portal items, the next entry index, and the total number of results.
ArcGIS Maps SDK for JavaScript
public FetchItemsResult(System.Collections.Generic.IReadOnlyCollection<dymaptic.GeoBlazor.Core.Components.PortalItem>? Items=null, System.Nullable<double> NextStart=null, System.Nullable<double> Total=null);
Parameters
Items
System.Collections.Generic.IReadOnlyCollection<PortalItem>
An array containing user’s portal items.
ArcGIS Maps SDK for JavaScript
NextStart
System.Nullable<System.Double>
The next entry index if the current result set doesn’t contain all results.
ArcGIS Maps SDK for JavaScript
Total
System.Nullable<System.Double>
The total number of results.
ArcGIS Maps SDK for JavaScript
Properties
FetchItemsResult.Items Property
An array containing user’s portal items.
ArcGIS Maps SDK for JavaScript
public System.Collections.Generic.IReadOnlyCollection<dymaptic.GeoBlazor.Core.Components.PortalItem>? Items { get; set; }
Property Value
System.Collections.Generic.IReadOnlyCollection<PortalItem>
FetchItemsResult.NextStart Property
The next entry index if the current result set doesn’t contain all results.
ArcGIS Maps SDK for JavaScript
public System.Nullable<double> NextStart { get; set; }
Property Value
System.Nullable<System.Double>
FetchItemsResult.Total Property
The total number of results.
ArcGIS Maps SDK for JavaScript
public System.Nullable<double> Total { get; set; }