GregorianDateToIso8601String Method (Iso8601Format, Int32) | 
 
            Converts the value of this instance to its equivalent ISO8601 string representation,
            with fractional seconds represented to the specified number of digits.
            
 
    Namespace: 
   AGI.Foundation.Time
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic string ToIso8601String(
	Iso8601Format format,
	int digitsOfFractionalSeconds
)
Public Function ToIso8601String ( 
	format As Iso8601Format,
	digitsOfFractionalSeconds As Integer
) As String
public:
String^ ToIso8601String(
	Iso8601Format format, 
	int digitsOfFractionalSeconds
)
member ToIso8601String : 
        format : Iso8601Format * 
        digitsOfFractionalSeconds : int -> string 
Parameters
- format
 - Type: AGI.Foundation.TimeIso8601Format
The type of ISO8601 string to create. - digitsOfFractionalSeconds
 - Type: SystemInt32
            The number of digits after the decimal point in the 'seconds' portion of the time.
             
Return Value
Type: 
StringA string representing this date and time in ISO8601 format.
See Also