ZoneId.AvailableZoneIds Property

Definition

Gets the set of available zone IDs.

public static System.Collections.Generic.ICollection<string>? AvailableZoneIds { [Android.Runtime.Register("getAvailableZoneIds", "()Ljava/util/Set;", "", ApiSince=26)] get; }
[<get: Android.Runtime.Register("getAvailableZoneIds", "()Ljava/util/Set;", "", ApiSince=26)>]
static member AvailableZoneIds : System.Collections.Generic.ICollection<string>

Property Value

a modifiable copy of the set of zone IDs, not null

Attributes

Remarks

Gets the set of available zone IDs. This set includes the string form of all available region-based IDs. Offset-based zone IDs are not included in the returned set. The ID can be passed to of(String) to create a ZoneId. The set of zone IDs can increase over time, although in a typical application the set of IDs is fixed. Each call to this method is thread-safe.

Java reference for java.time.ZoneId.getAvailableZoneIds.

Applies to