adTempus API
ArcanaDevelopment.adTempus.Client Namespace / DataContext Class / GetJobQueueStubs Method


In This Topic
    GetJobQueueStubs Method
    In This Topic
    Gets stubs for all Job Queues the caller has permission for
    Syntax
    'Declaration
     
    
    Public Function GetJobQueueStubs() As JobQueueCollection
    public JobQueueCollection GetJobQueueStubs()
    public:
    JobQueueCollection^ GetJobQueueStubs(); 

    Return Value

    A collection containing stubs for all Queues the caller has at least View permission for
    Remarks

    Object Stubs

    When you only need to display basic information about an object you can reduce the amount of data being returned from the server by fetching the object as a "stub," which contains only minimal information such as description (as returned by ObjectBase.GetDescription) and permissions. A stub object has ObjectBase.IsStub set to true. If you access a property or relation that was not returned as part of the stub, the client will automatically fetch the full object details from the server.

    To fetch object stubs instead of full objects Include the ArcanaDevelopment.adTempus.Shared.ObjectFetchOptions.StubsOnly flag when calling any method that accepts an ArcanaDevelopment.adTempus.Shared.ObjectFetchOptions parameter.

    See Also