Share via


CreateTimeSpan Constructor

 

Initializes a new instance of the CreateTimeSpan class.

Namespace:   Microsoft.Activities.Expressions
Assembly:  Microsoft.Activities (in Microsoft.Activities.dll)

Overload List

Name Description
System_CAPS_pubmethod CreateTimeSpan()

Initializes a new instance of the CreateTimeSpan class.

System_CAPS_pubmethod CreateTimeSpan(InArgument<Double>, InArgument<Double>, InArgument<Double>, InArgument<Double>)

Initializes a new instance of the CreateTimeSpan class.

See Also

CreateTimeSpan Class
Microsoft.Activities.Expressions Namespace

Return to top

CreateTimeSpan Constructor ()

Initializes a new instance of the CreateTimeSpan class.

Syntax

public CreateTimeSpan()
public:
CreateTimeSpan()
new : unit -> CreateTimeSpan
Public Sub New

Return to top

CreateTimeSpan Constructor (InArgument<Double>, InArgument<Double>, InArgument<Double>, InArgument<Double>)

Initializes a new instance of the CreateTimeSpan class.

Syntax

public CreateTimeSpan(
    InArgument<double> days,
    InArgument<double> hours,
    InArgument<double> minutes,
    InArgument<double> seconds
)
public:
CreateTimeSpan(
    InArgument<double>^ days,
    InArgument<double>^ hours,
    InArgument<double>^ minutes,
    InArgument<double>^ seconds
)
new : 
        days:InArgument<float> *
        hours:InArgument<float> *
        minutes:InArgument<float> *
        seconds:InArgument<float> -> CreateTimeSpan
Public Sub New (
    days As InArgument(Of Double),
    hours As InArgument(Of Double),
    minutes As InArgument(Of Double),
    seconds As InArgument(Of Double)
)

Parameters

Return to top