adTempus API
ArcanaDevelopment.adTempus.Client Namespace / Job Class / GetStatus Method
Indicates whether to refresh the status from the server. See Remarks.


In This Topic
    GetStatus Method
    In This Topic
    Gets the status of the job, optionally refreshing from the server
    Syntax
    'Declaration
     
    
    Public Function GetStatus( _
       Optional ByVal refresh As Boolean _
    ) As JobStatus
    public JobStatus GetStatus( 
       bool refresh
    )
    public:
    JobStatus^ GetStatus( 
       bool refresh
    ) 

    Parameters

    refresh
    Indicates whether to refresh the status from the server. See Remarks.
    Remarks
    If GetStatus is called with refresh set to false, this is equivalent to using the JobStatus property, and the status is not updated from the server (it will reflect the status as of when the job was fetched, when the job was last refreshed, or the last time GetStatus was called). For the latest status set refresh to true, which fetches the latest information from the server.
    See Also