Leadtools.Services.Cloud.ServiceContracts Namespace > IJobService Interface : GetClientJobs Method |
[FaultContractAttribute(DetailType=Leadtools.Services.Cloud.FaultContracts.CloudFault, Action="", Name="", Namespace="", ProtectionLevel=ProtectionLevel.None, HasProtectionLevel=false)] [OperationContractAttribute()] GetClientJobsResponse GetClientJobs( GetClientJobsRequest request )
'Declaration <FaultContractAttribute(DetailType=Leadtools.Services.Cloud.FaultContracts.CloudFault, Action="", Name="", Namespace="", ProtectionLevel=ProtectionLevel.None, HasProtectionLevel=False)> <OperationContractAttribute()> Function GetClientJobs( _ ByVal request As GetClientJobsRequest _ ) As GetClientJobsResponse
'Usage Dim instance As IJobService Dim request As GetClientJobsRequest Dim value As GetClientJobsResponse value = instance.GetClientJobs(request)
[FaultContractAttribute(DetailType=Leadtools.Services.Cloud.FaultContracts.CloudFault, Action="", Name="", Namespace="", ProtectionLevel=ProtectionLevel.None, HasProtectionLevel=false)] [OperationContractAttribute()] GetClientJobsResponse^ GetClientJobs( GetClientJobsRequest^ request )
Use this method to retrieve all jobs for a given user. This method will return all jobs with a matching value in the cUserToken column. The Leadtools.Services.Cloud.DataContracts.GetClientJobsResponse class will contain an array of all job IDs matching the specified user token. If no matching jobs are found, a zero length array is returned.
Public Sub GetClientJobs() Using jobServiceClient As JobServiceClient = New JobServiceClient() 'Get all the jobs with a user token of "user1". Dim getClientJobsRequest As GetClientJobsRequest = New GetClientJobsRequest() getClientJobsRequest.UserToken = "User2" Dim getClientJobsResponse As GetClientJobsResponse = jobServiceClient.GetClientJobs(getClientJobsRequest) For Each jobID As String In getClientJobsResponse.JobsIds Console.WriteLine(String.Format("ID = {0}", jobID)) Next jobID End Using End Sub
using LeadtoolsCloudExamples.JobService; public void GetClientJobs() { using (JobServiceClient jobServiceClient = new JobServiceClient()) { //Get all the jobs with a user token of "user1". GetClientJobsRequest getClientJobsRequest = new GetClientJobsRequest(); getClientJobsRequest.UserToken = "User2"; GetClientJobsResponse getClientJobsResponse = jobServiceClient.GetClientJobs(getClientJobsRequest); foreach (string jobID in getClientJobsResponse.JobsIds) Console.WriteLine(String.Format("ID = {0}", jobID)); } }