TimeZoneFormat.FormatOffsetISO8601Basic Method    
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the ISO 8601 basic time zone string for the given offset.
[Android.Runtime.Register("formatOffsetISO8601Basic", "(IZZZ)Ljava/lang/String;", "", ApiSince=24)]
public string? FormatOffsetISO8601Basic(int offset, bool useUtcIndicator, bool isShort, bool ignoreSeconds);
	[<Android.Runtime.Register("formatOffsetISO8601Basic", "(IZZZ)Ljava/lang/String;", "", ApiSince=24)>]
member this.FormatOffsetISO8601Basic : int * bool * bool * bool -> string
	Parameters
- offset
 - Int32
 
the offset from GMT(UTC) in milliseconds.
- useUtcIndicator
 - Boolean
 
true if ISO 8601 UTC indicator "Z" is used when the offset is 0.
- isShort
 - Boolean
 
true if shortest form is used.
- ignoreSeconds
 - Boolean
 
true if non-zero offset seconds is appended.
Returns
the ISO 8601 basic format.
- Attributes
 
Remarks
Returns the ISO 8601 basic time zone string for the given offset. For example, "-08", "-0830" and "Z"
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.