Duration.ToString(Duration.MaxUnit) Method
Convert the duration instance to its ISO 8601 string form with the specified maximum unit of time
Namespace: EWSoftware.PDIAssembly: EWSoftware.PDI (in EWSoftware.PDI.dll) Version: 2025.1.9.0
public string ToString(
Duration.MaxUnit maxUnit
)
Public Function ToString (
maxUnit As Duration.MaxUnit
) As String
public:
String^ ToString(
Duration.MaxUnit maxUnit
)
member ToString :
maxUnit : Duration.MaxUnit -> string
- maxUnit Duration.MaxUnit
- The maximum unit of time that should be represented in the returned string
StringReturns the duration in ISO 8601 format
The conversion to string breaks the duration down by largest to smallest unit (years down to
seconds). This version allows you to specify the maximum unit of time that should be represented.
Any time in excess of the maximum time unit will be returned in the maximum time unit (i.e. PT1D will
be returned as P24H for a maximum time unit of hours, P1M2W5D will be returned as P7W for a maximum
time unit of weeks if a month is defined as 30 days).