Udostępnij za pośrednictwem


DurableTaskOptions.TrackingStoreConnectionStringName Property

Definition

Gets or sets the name of the Azure Storage connection string to use for the durable tracking store (History and Instances tables).

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

Property Value

The name of a connection string that exists in the app's application settings.

Remarks

If not specified, the AzureStorageConnectionStringName connection string is used for the durable tracking store.

This property is primarily useful when deploying multiple apps that need to share the same tracking infrastructure. For example, when deploying two versions of an app side by side, using the same tracking store allows both versions to save history into the same table, which allows clients to query for instance status across all versions.

Applies to