adTempus API
ArcanaDevelopment.adTempus.Client Namespace / DataContext Class / DoFastJobLookup Method
The name or partial name to match. See Remarks.


In This Topic
    DoFastJobLookup Method
    In This Topic
    Performs a quick, minimal lookup to find jobs that match a textToMatch
    Syntax
    'Declaration
     
    
    <NotNullAttribute()>
    Public Function DoFastJobLookup( _
       ByVal textToMatch As String _
    ) As ReadOnlyCollection(Of JobLookupInfo)
    [NotNull()]
    public ReadOnlyCollection<JobLookupInfo> DoFastJobLookup( 
       string textToMatch
    )
    [NotNull()]
    public:
    ReadOnlyCollection<JobLookupInfo^>^ DoFastJobLookup( 
       String^ textToMatch
    ) 

    Parameters

    textToMatch
    The name or partial name to match. See Remarks.

    Return Value

    A collection of ArcanaDevelopment.adTempus.Shared.JobLookupInfo representing the matching jobs, if any.
    Remarks

    This method supports the "Go to Job" feature in the Console. That feature calls this method each time a new character is entered in the search box, to quickly return jobs that match the text being entered.

    The textToMatch is the full or partial job name to match, optionally including the group name (separated from the job name by "\". The method finds all jobs with names (and optionally group names) that contain the provided textToMatch.

    The method returns only minimal information about the job, to make it efficient to call repeatedly.

    See Also