JobBuilderWithIdentity Method (String, String)

Quartz.NET 3.0 API Documentation
Use a JobKey with the given name and group to identify the JobDetail.

Namespace:  Quartz
Assembly:  Quartz (in Quartz.dll) Version: 3.0.0
Syntax

C#
public JobBuilder WithIdentity(
	string name,
	string group
)

Parameters

name
Type: SystemString
the name element for the Job's JobKey
group
Type: SystemString
the group element for the Job's JobKey

Return Value

Type: JobBuilder
the updated JobBuilder
Remarks

If none of the 'withIdentity' methods are set on the JobBuilder, then a random, unique JobKey will be generated.

See Also

Reference