StdAdoDelegateGetJobDataFromBlobT Method

Quartz.NET 3.0 API Documentation
This method should be overridden by any delegate subclasses that need special handling for BLOBs for job details.

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

C#
protected virtual Task<T> GetJobDataFromBlob<T>(
	DbDataReader rs,
	int colIndex
)
where T : class

Parameters

rs
Type: System.Data.CommonDbDataReader
The result set, already queued to the correct row.
colIndex
Type: SystemInt32
The column index for the BLOB.

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:Quartz.Impl.AdoJobStore.StdAdoDelegate.GetJobDataFromBlob``1(System.Data.Common.DbDataReader,System.Int32)"]

Return Value

Type: TaskT
The deserialized Object from the ResultSet BLOB.
See Also

Reference