IsolationContext Constructors

Definition

Overloads

Name Description
IsolationContext()

Initializes a new instance of IsolationContext for mocking.

IsolationContext(String, String)

Initializes a new instance of IsolationContext.

IsolationContext()

Source:
IsolationContext.cs

Initializes a new instance of IsolationContext for mocking.

protected IsolationContext();
Protected Sub New ()

Applies to

IsolationContext(String, String)

Source:
IsolationContext.cs

Initializes a new instance of IsolationContext.

public IsolationContext(string? userIsolationKey, string? chatIsolationKey);
new Azure.AI.AgentServer.Core.IsolationContext : string * string -> Azure.AI.AgentServer.Core.IsolationContext
Public Sub New (userIsolationKey As String, chatIsolationKey As String)

Parameters

userIsolationKey
String

The value of the x-agent-user-isolation-key header, or null if the header was absent.

chatIsolationKey
String

The value of the x-agent-chat-isolation-key header, or null if the header was absent.

Applies to