UserTaskPropertiesTryGetValue Method |
Gets the value that is associated with the specified key.
Namespace: Scanjour.Workflow4.BaseAssembly: Scanjour.Workflow4.Base (in Scanjour.Workflow4.Base.dll) Version: 24.5.0.0 (24.5.0.0)
Syntaxpublic bool TryGetValue(
string key,
out UserTaskProperty value
)
Public Function TryGetValue (
key As String,
<OutAttribute> ByRef value As UserTaskProperty
) As Boolean
public:
virtual bool TryGetValue(
String^ key,
[OutAttribute] UserTaskProperty^% value
) sealed
abstract TryGetValue :
key : string *
value : UserTaskProperty byref -> bool
override TryGetValue :
key : string *
value : UserTaskProperty byref -> bool
Parameters
- key String
- The key to locate.
- value UserTaskProperty
- When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the value parameter. This parameter is passed uninitialized.
Return Value
Boolean
true if the object that implements the
IReadOnlyDictionaryTKey, TValue interface contains an element that has the specified key; otherwise, false.
Implements
IReadOnlyDictionaryTKey, TValueTryGetValue(TKey, TValue)
See Also