I'm trying to write a workflow that requires an optionset value to be passed as a required argument
with a string, its easy enough
<RequiredArgument>
<Input("new_Licence")>
Public Property new_Licence() As InArgument(Of String)
Get
Return m_new_Licence
End Get
Set
m_new_Licence = Value
End Set
End Property
Private m_new_Licence As InArgument(Of String)
but I cannot find how to do the same with an option set value
*This post is locked for comments