Interval Method (DateTime, TimeSpan)

MS Activities Extensions

Collapse imageExpand ImageCopy imageCopyHover image
Returns the interval from the specific time to the next occurance of the time on one the next matching day or the same day if no days are provided.

Namespace: Microsoft.Activities.Extensions
Assembly: Microsoft.Activities.Extensions (in Microsoft.Activities.Extensions.dll) Version: 2.0.6.9 (2.0.6.9)

Syntax

C#
public static TimeSpan Interval(
	DateTime fromTime,
	TimeSpan occuranceTime
)
Visual Basic
Public Shared Function Interval ( _
	fromTime As DateTime, _
	occuranceTime As TimeSpan _
) As TimeSpan
Visual C++
public:
static TimeSpan Interval(
	DateTime fromTime, 
	TimeSpan occuranceTime
)

Parameters

fromTime
Type: System..::..DateTime
The from Time.
occuranceTime
Type: System..::..TimeSpan
The time of day for the occurence

Return Value

the timespan from now until the next occurance of the time on a given day.

Exceptions

ExceptionCondition
System..::..ArgumentException The time string is invalid

See Also