adTempus API
ArcanaDevelopment.adTempus.Client.Collections Namespace / JobVariableCollection Class / TryGetValue Method
The name of the variable to find.
The variable with the specified name, if found.


In This Topic
    TryGetValue Method (JobVariableCollection)
    In This Topic
    Attempts to get the variable with the specified ArcanaDevelopment.adTempus.Client.JobVariable.Name.
    Syntax
    'Declaration
     
    
    Public Function TryGetValue( _
       ByVal variableName As String, _
       ByRef variable As JobVariable _
    ) As Boolean
    public bool TryGetValue( 
       string variableName,
       out JobVariable variable
    )
    public:
    bool TryGetValue( 
       String^ variableName,
       [Out] JobVariable^ variable
    ) 

    Parameters

    variableName
    The name of the variable to find.
    variable
    The variable with the specified name, if found.

    Return Value

    true if a variable was found with the specified variableName
    See Also