Table of Contents

Method JobStartLessThan

Namespace
Skyline.DataMiner.Net.Jobs
Assembly
SLNetTypes.dll

JobStartLessThan<T>(Exposer<T, IDictionary<string, dynamic>>, DateTime)

Returns a filter that filters jobs keeping only those that have a start time less than the specified DateTime value.

public static ManagedFilter<T, IEnumerable> JobStartLessThan<T>(this Exposer<T, IDictionary<string, dynamic>> field, DateTime time)

Parameters

field Exposer<T, IDictionary<string, dynamic>>

The field exposer.

time DateTime

The DateTime value that the start time field of the default section definition of the Job must be lower than.

Returns

ManagedFilter<T, IEnumerable>

A filter that filters jobs keeping only those that have a start time less than the specified DateTime value.

Type Parameters

T

The type from which fields are exposed.

Examples

Job retrievedJob = jobManagerHelper.Jobs.Read(JobExposers.FieldValues.JobStartLessThan(DateTime.Now)).FirstOrDefault();