'Declaration
Public Function GetJobQueueStubs() As JobQueueCollection
public JobQueueCollection GetJobQueueStubs()
public: JobQueueCollection^ GetJobQueueStubs();
'Declaration
Public Function GetJobQueueStubs() As JobQueueCollection
public JobQueueCollection GetJobQueueStubs()
public: JobQueueCollection^ GetJobQueueStubs();
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.