CreateDate.Second Property
Gets or sets the second value.
Namespace: Microsoft.Activities.Expressions
Assembly: Microsoft.Activities (in Microsoft.Activities.dll)
Syntax
[DefaultValueAttribute(null)]
[DependsOnAttribute("Minute")]
public InArgument<int> Second {
[CompilerGeneratedAttribute]
get;
[CompilerGeneratedAttribute]
set;
}
public:
[DefaultValueAttribute(null)]
[DependsOnAttribute("Minute")]
property InArgument<int>^ Second {
[CompilerGeneratedAttribute]
InArgument<int>^ get();
[CompilerGeneratedAttribute]
void set(InArgument<int>^ value);
}
[<DefaultValueAttribute(null)>]
[<DependsOnAttribute("Minute")>]
member Second : InArgument<int> with get, set
<DefaultValueAttribute(Nothing)>
<DependsOnAttribute("Minute")>
Public Property Second As InArgument(Of Integer)
Property Value
Type: System.Activities.InArgument<Int32>
Returns the second value.
See Also
CreateDate Class
Microsoft.Activities.Expressions Namespace
Return to top