dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Model

BaseSearchResponse Class

Base interface of common response properties returned from the search and suggest methods. ArcGIS Maps SDK for JavaScript

public record BaseSearchResponse : System.IEquatable<dymaptic.GeoBlazor.Core.Model.BaseSearchResponse>

Inheritance System.Object 🡒 BaseSearchResponse

Derived
↳ SearchResponse
↳ SuggestResponse

Implements System.IEquatable<BaseSearchResponse>

Constructors

BaseSearchResponse(Nullable, Nullable, string) Constructor

Base interface of common response properties returned from the search and suggest methods. ArcGIS Maps SDK for JavaScript

public BaseSearchResponse(System.Nullable<int> ActiveSourceIndex=null, System.Nullable<double> NumResults=null, string? SearchTerm=null);

Parameters

ActiveSourceIndex System.Nullable<System.Int32>

The index of the source from which the search result was obtained.

NumResults System.Nullable<System.Double>

The number of search results.

SearchTerm System.String

The searched expression

Properties

BaseSearchResponse.ActiveSourceIndex Property

The index of the source from which the search result was obtained.

public System.Nullable<int> ActiveSourceIndex { get; init; }

Property Value

System.Nullable<System.Int32>

BaseSearchResponse.NumResults Property

The number of search results.

public System.Nullable<double> NumResults { get; init; }

Property Value

System.Nullable<System.Double>

BaseSearchResponse.SearchTerm Property

The searched expression

public string? SearchTerm { get; init; }

Property Value

System.String