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
Współpracuj z nami w serwisie GitHub
Źródło tej zawartości można znaleźć w witrynie GitHub, gdzie można również tworzyć i przeglądać problemy i żądania ściągnięcia. Więcej informacji znajdziesz w naszym przewodniku dla współtwórców.
Azure SDK for .NET