Share via


SubtractFromDate Constructor

 

Initializes a new instance of the SubtractFromDate class.

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

Overload List

Name Description
System_CAPS_pubmethod SubtractFromDate()

Initializes a new instance of the SubtractFromDate class.

System_CAPS_pubmethod SubtractFromDate(InArgument<DateTime>, InArgument<TimeSpan>)

Initializes a new instance of the SubtractFromDate class.

See Also

SubtractFromDate Class
Microsoft.Activities.Expressions Namespace

Return to top

SubtractFromDate Constructor ()

Initializes a new instance of the SubtractFromDate class.

Syntax

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

Return to top

SubtractFromDate Constructor (InArgument<DateTime>, InArgument<TimeSpan>)

Initializes a new instance of the SubtractFromDate class.

Syntax

public SubtractFromDate(
    InArgument<DateTime> input,
    InArgument<TimeSpan> timeSpan
)
public:
SubtractFromDate(
    InArgument<DateTime>^ input,
    InArgument<TimeSpan>^ timeSpan
)
new : 
        input:InArgument<DateTime> *
        timeSpan:InArgument<TimeSpan> -> SubtractFromDate
Public Sub New (
    input As InArgument(Of Date),
    timeSpan As InArgument(Of TimeSpan)
)

Parameters

Return to top