Share via


DurableTaskOptions.LocalRpcEndpointEnabled Property

Definition

Gets or sets a value indicating whether to enable the local RPC endpoint managed by this extension.

public bool? LocalRpcEndpointEnabled { get; set; }
member this.LocalRpcEndpointEnabled : Nullable<bool> with get, set
Public Property LocalRpcEndpointEnabled As Nullable(Of Boolean)

Property Value

Remarks

The local RPC endpoint is intended to allow out-of-process functions to make direct calls into this extension. This is primarily intended to support instance management APIs used by the durable client binding. The following values are allowed:

null(Default) The local RPC endpoint is enabled only for non-.NET function apps.
trueA local RPC endpoint will be enabled and listen at http://127.0.0.1:17071/durabletask/.
falseThe local RPC endpoint will be disabled.

Applies to