CreateDate.Minute Property

 

Gets or sets the minute value.

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

Syntax

[DependsOnAttribute("Hour")]
[DefaultValueAttribute(null)]
public InArgument<int> Minute {
    [CompilerGeneratedAttribute]
    get;
    [CompilerGeneratedAttribute]
    set;
}
public:
[DependsOnAttribute("Hour")]
[DefaultValueAttribute(null)]
property InArgument<int>^ Minute {
    [CompilerGeneratedAttribute]
    InArgument<int>^ get();
    [CompilerGeneratedAttribute]
    void set(InArgument<int>^ value);
}
[<DependsOnAttribute("Hour")>]
[<DefaultValueAttribute(null)>]
member Minute : InArgument<int> with get, set
<DependsOnAttribute("Hour")>
<DefaultValueAttribute(Nothing)>
Public Property Minute As InArgument(Of Integer)

Property Value

Type: System.Activities.InArgument<Int32>

Returns the minute value.

See Also

CreateDate Class
Microsoft.Activities.Expressions Namespace

Return to top