DurationToString(DurationMaxUnit) 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: 2023.1.2.0
public string ToString(
DurationMaxUnit maxUnit
)
Public Function ToString (
maxUnit As DurationMaxUnit
) As String
public:
String^ ToString(
DurationMaxUnit maxUnit
)
member ToString :
maxUnit : DurationMaxUnit -> string
- maxUnit DurationMaxUnit
- 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).