dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Model
SuggestResponse Class
Result of calling suggest. ArcGIS Maps SDK for JavaScript
public record SuggestResponse : dymaptic.GeoBlazor.Core.Model.BaseSearchResponse, System.IEquatable<dymaptic.GeoBlazor.Core.Model.SuggestResponse>
Inheritance System.Object 🡒 BaseSearchResponse 🡒 SuggestResponse
Implements System.IEquatable<SuggestResponse>
Constructors
SuggestResponse(Nullable, IReadOnlyCollection, Nullable, string, IReadOnlyCollection, string) Constructor
Result of calling suggest. ArcGIS Maps SDK for JavaScript
public SuggestResponse(System.Nullable<int> ActiveSourceIndex, System.Collections.Generic.IReadOnlyCollection<dymaptic.GeoBlazor.Core.Results.SuggestResults> Errors, System.Nullable<double> NumResults, string SuggestTerm, System.Collections.Generic.IReadOnlyCollection<dymaptic.GeoBlazor.Core.Results.SuggestResults> Results, string? SearchTerm);
Parameters
ActiveSourceIndex
System.Nullable<System.Int32>
The index of the source from which the search result was obtained.
Errors
System.Collections.Generic.IReadOnlyCollection<SuggestResults>
An array of error objects returned from the suggest results. ArcGIS Maps SDK for JavaScript
NumResults
System.Nullable<System.Double>
The number of search results.
SuggestTerm
System.String
The suggested expression.
Results
System.Collections.Generic.IReadOnlyCollection<SuggestResults>
An array of objects representing the results of suggest. ArcGIS Maps SDK for JavaScript
SearchTerm
System.String
The searched expression
Properties
SuggestResponse.Errors Property
An array of error objects returned from the suggest results. ArcGIS Maps SDK for JavaScript
public System.Collections.Generic.IReadOnlyCollection<dymaptic.GeoBlazor.Core.Results.SuggestResults> Errors { get; init; }
Property Value
System.Collections.Generic.IReadOnlyCollection<SuggestResults>
SuggestResponse.Results Property
An array of objects representing the results of suggest. ArcGIS Maps SDK for JavaScript
public System.Collections.Generic.IReadOnlyCollection<dymaptic.GeoBlazor.Core.Results.SuggestResults> Results { get; init; }
Property Value
System.Collections.Generic.IReadOnlyCollection<SuggestResults>
SuggestResponse.SuggestTerm Property
The suggested expression.
public string SuggestTerm { get; init; }