DurableTaskOptions.HubName Property

Definition

Gets or sets default task hub name to be used by all IDurableClient, IDurableEntityClient, IDurableOrchestrationClient, IDurableOrchestrationContext, and IDurableActivityContext instances.

public string HubName { get; set; }
member this.HubName : string with get, set
Public Property HubName As String

Property Value

The name of the default task hub.

Remarks

A task hub is a logical grouping of storage resources. Alternate task hub names can be used to isolate multiple Durable Functions applications from each other, even if they are using the same storage backend.

Applies to