dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Results
FetchResourcesResult Class
Object returned when fetchResources() promise resolves.
ArcGIS Maps SDK for JavaScript
public class FetchResourcesResult :
System.IEquatable<dymaptic.GeoBlazor.Core.Results.FetchResourcesResult>
Inheritance System.Object 🡒 FetchResourcesResult
Implements System.IEquatable<FetchResourcesResult>
Constructors
FetchResourcesResult(Nullable, IReadOnlyCollection, Nullable) Constructor
Object returned when fetchResources() promise resolves.
ArcGIS Maps SDK for JavaScript
public FetchResourcesResult(System.Nullable<double> NextStart=null, System.Collections.Generic.IReadOnlyCollection<dymaptic.GeoBlazor.Core.Model.FetchResource>? Resources=null, System.Nullable<double> Total=null);
Parameters
NextStart
System.Nullable<System.Double>
The next entry index if the current result set doesn’t contain all results.
ArcGIS Maps SDK for JavaScript
Resources
System.Collections.Generic.IReadOnlyCollection<FetchResource>
The fetched resources.
ArcGIS Maps SDK for JavaScript
Total
System.Nullable<System.Double>
The total number of results.
ArcGIS Maps SDK for JavaScript
Properties
FetchResourcesResult.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>
FetchResourcesResult.Resources Property
The fetched resources.
ArcGIS Maps SDK for JavaScript
public System.Collections.Generic.IReadOnlyCollection<dymaptic.GeoBlazor.Core.Model.FetchResource>? Resources { get; set; }
Property Value
System.Collections.Generic.IReadOnlyCollection<FetchResource>
FetchResourcesResult.Total Property
The total number of results.
ArcGIS Maps SDK for JavaScript
public System.Nullable<double> Total { get; set; }