adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / IJobVariableDictionary Interface / Add Method / Add(String,String) Method
The name of the variable to add or update
The new value for the variable


In This Topic
    Add(String,String) Method
    In This Topic
    Adds or updates the variable with the specified key.
    Syntax
    'Declaration
     
    
    <ComVisibleAttribute(False)>
    <NotNullAttribute()>
    Overloads Function Add( _
       ByVal Key As String, _
       ByVal value As String _
    ) As IJobVariable
    [ComVisible(false)]
    [NotNull()]
    IJobVariable Add( 
       string Key,
       string value
    )
    [ComVisible(false)]
    [NotNull()]
    IJobVariable^ Add( 
       String^ Key,
       String^ value
    ) 

    Parameters

    Key
    The name of the variable to add or update
    value
    The new value for the variable

    Return Value

    The newly-added JobVariable.
    Remarks
    Adding or updating variables in this collection only affects the job instance in which the script is running.
    See Also