dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components

PortalFeaturedGroups Class

The featured groups for the portal.
ArcGIS Maps SDK for JavaScript

public class PortalFeaturedGroups : dymaptic.GeoBlazor.Core.Components.MapComponent

Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 PortalFeaturedGroups

Constructors

PortalFeaturedGroups() Constructor

Parameterless constructor for use as a Razor Component.

public PortalFeaturedGroups();

PortalFeaturedGroups(string, string) Constructor

Constructor for use in C# code. Use named parameters (e.g., item1: value1, item2: value2) to set properties in any order.

public PortalFeaturedGroups(string? owner=null, string? title=null);

Parameters

owner System.String

Name of the group owner.
ArcGIS Maps SDK for JavaScript

title System.String

Group title.
ArcGIS Maps SDK for JavaScript

Properties

PortalFeaturedGroups.Owner Property

Name of the group owner.
ArcGIS Maps SDK for JavaScript

public string? Owner { get; set; }

Property Value

System.String

PortalFeaturedGroups.Title Property

Group title.
ArcGIS Maps SDK for JavaScript

public string? Title { get; set; }

Property Value

System.String

Methods

PortalFeaturedGroups.GetOwner() Method

Asynchronously retrieve the current value of the Owner property.

public System.Threading.Tasks.Task<string?> GetOwner();

Returns

System.Threading.Tasks.Task<System.String>

PortalFeaturedGroups.GetTitle() Method

Asynchronously retrieve the current value of the Title property.

public System.Threading.Tasks.Task<string?> GetTitle();

Returns

System.Threading.Tasks.Task<System.String>

PortalFeaturedGroups.SetOwner(string) Method

Asynchronously set the value of the Owner property after render.

public System.Threading.Tasks.Task SetOwner(string? value);

Parameters

value System.String

The value to set.

Returns

System.Threading.Tasks.Task

PortalFeaturedGroups.SetTitle(string) Method

Asynchronously set the value of the Title property after render.

public System.Threading.Tasks.Task SetTitle(string? value);

Parameters

value System.String

The value to set.

Returns

System.Threading.Tasks.Task