Share via


DurableTaskOptions.HubName Property

Definition

Gets or sets default task hub name to be used by all DurableOrchestrationClient, DurableOrchestrationContext, and DurableActivityContext instances.

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

Property Value

System.String

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