Click or drag to resize
BackgroundJobClientExtensionsContinueWithT Method (IBackgroundJobClient, String, ExpressionActionT)

[Missing <summary> documentation for "M:Hangfire.BackgroundJobClientExtensions.ContinueWith``1(Hangfire.IBackgroundJobClient,System.String,System.Linq.Expressions.Expression{System.Action{``0}})"]

Namespace: Hangfire
Assembly: Hangfire.Core (in Hangfire.Core.dll) Version: 1.5.0.0
Syntax
public static string ContinueWith<T>(
	[NotNullAttribute] this IBackgroundJobClient client,
	[NotNullAttribute] string parentId,
	[NotNullAttribute][InstantHandleAttribute] Expression<Action<T>> methodCall
)

Parameters

client
Type: HangfireIBackgroundJobClient

[Missing <param name="client"/> documentation for "M:Hangfire.BackgroundJobClientExtensions.ContinueWith``1(Hangfire.IBackgroundJobClient,System.String,System.Linq.Expressions.Expression{System.Action{``0}})"]

parentId
Type: SystemString

[Missing <param name="parentId"/> documentation for "M:Hangfire.BackgroundJobClientExtensions.ContinueWith``1(Hangfire.IBackgroundJobClient,System.String,System.Linq.Expressions.Expression{System.Action{``0}})"]

methodCall
Type: System.Linq.ExpressionsExpressionActionT

[Missing <param name="methodCall"/> documentation for "M:Hangfire.BackgroundJobClientExtensions.ContinueWith``1(Hangfire.IBackgroundJobClient,System.String,System.Linq.Expressions.Expression{System.Action{``0}})"]

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:Hangfire.BackgroundJobClientExtensions.ContinueWith``1(Hangfire.IBackgroundJobClient,System.String,System.Linq.Expressions.Expression{System.Action{``0}})"]

Return Value

Type: String

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IBackgroundJobClient. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also