ScheduledJobSelector.SelectJob(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a collection of scheduled jobs matching a given jobName
.
If the collection is empty then no scheduled job was found. If more than one scheduled jobs were
found then multiple conflicting scheduled jobs have been found. This can for example be if
multiple jobs with the same type name but differing namespaces have been registered. If exactly
one scheduled job is returned then that is the job that should be executed.
public System.Collections.Generic.ICollection<Microsoft.WindowsAzure.Mobile.Service.ScheduledJobs.ScheduledJobDescriptor> SelectJob (string jobName);
abstract member SelectJob : string -> System.Collections.Generic.ICollection<Microsoft.WindowsAzure.Mobile.Service.ScheduledJobs.ScheduledJobDescriptor>
override this.SelectJob : string -> System.Collections.Generic.ICollection<Microsoft.WindowsAzure.Mobile.Service.ScheduledJobs.ScheduledJobDescriptor>
Public Function SelectJob (jobName As String) As ICollection(Of ScheduledJobDescriptor)
Parameters
- jobName
- String
The name of the scheduled job to look for.
Returns
A collection of matches found.
Implements
Applies to
Azure SDK for .NET