Share via


FunctionInvokingChatClient.AllowConcurrentInvocation Property

Definition

Gets or sets a value indicating whether to allow concurrent invocation of functions.

public:
 property bool AllowConcurrentInvocation { bool get(); void set(bool value); };
public bool AllowConcurrentInvocation { get; set; }
member this.AllowConcurrentInvocation : bool with get, set
Public Property AllowConcurrentInvocation As Boolean

Property Value

true if multiple function calls can execute in parallel. false if function calls are processed serially. The default value is false.

Remarks

An individual response from the inner client might contain multiple function call requests. By default, such function calls are processed serially. Set AllowConcurrentInvocation to true to enable concurrent invocation such that multiple function calls can execute in parallel.

Applies to