DurableTaskOptions.LocalRpcEndpointEnabled Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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. |
true | A local RPC endpoint will be enabled and listen at http://127.0.0.1:17071/durabletask/ . |
false | The local RPC endpoint will be disabled. |
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for .NET