dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Components
PortalFolder Class
Provides information about folders used to organize content in a portal.
ArcGIS Maps SDK for JavaScript
public class PortalFolder : dymaptic.GeoBlazor.Core.Components.MapComponent
Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 PortalFolder
Constructors
PortalFolder() Constructor
Parameterless constructor for use as a Razor Component.
public PortalFolder();
PortalFolder(Nullable, 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 PortalFolder(System.Nullable<System.DateTime> created=null, string? portalFolderId=null, string? title=null);
Parameters
created
System.Nullable<System.DateTime>
The date the folder was created.
ArcGIS Maps SDK for JavaScript
portalFolderId
System.String
The unique id of the folder.
ArcGIS Maps SDK for JavaScript
title
System.String
The title of the folder.
ArcGIS Maps SDK for JavaScript
Properties
PortalFolder.Created Property
The date the folder was created.
ArcGIS Maps SDK for JavaScript
public System.Nullable<System.DateTime> Created { get; set; }
Property Value
System.Nullable<System.DateTime>
PortalFolder.Portal Property
The portal associated with the folder.
ArcGIS Maps SDK for JavaScript
public dymaptic.GeoBlazor.Core.Components.Portal? Portal { get; set; }
Property Value
PortalFolder.PortalFolderId Property
The unique id of the folder.
ArcGIS Maps SDK for JavaScript
public string? PortalFolderId { get; set; }
Property Value
PortalFolder.Title Property
The title of the folder.
ArcGIS Maps SDK for JavaScript
public string? Title { get; set; }
Property Value
PortalFolder.Url Property
The URL to the folder.
ArcGIS Maps SDK for JavaScript
public string? Url { get; set; }
Property Value
Methods
PortalFolder.GetCreated() Method
Asynchronously retrieve the current value of the Created property.
public System.Threading.Tasks.Task<System.Nullable<System.DateTime>> GetCreated();
Returns
System.Threading.Tasks.Task<System.Nullable<System.DateTime>>
PortalFolder.GetPortalFolderId() Method
Asynchronously retrieve the current value of the PortalFolderId property.
public System.Threading.Tasks.Task<string?> GetPortalFolderId();
Returns
System.Threading.Tasks.Task<System.String>
PortalFolder.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>
PortalFolder.GetUrl() Method
Asynchronously retrieve the current value of the Url property.
public System.Threading.Tasks.Task<string?> GetUrl();
Returns
System.Threading.Tasks.Task<System.String>
PortalFolder.SetCreated(Nullable) Method
Asynchronously set the value of the Created property after render.
public System.Threading.Tasks.Task SetCreated(System.Nullable<System.DateTime> value);
Parameters
value
System.Nullable<System.DateTime>
The value to set.
Returns
PortalFolder.SetPortalFolderId(string) Method
Asynchronously set the value of the PortalFolderId property after render.
public System.Threading.Tasks.Task SetPortalFolderId(string? value);
Parameters
value
System.String
The value to set.
Returns
PortalFolder.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
PortalFolder.ValidateRequiredGeneratedChildren() Method
Validates source-generated child components.
public override void ValidateRequiredGeneratedChildren();
Implements ValidateRequiredGeneratedChildren()