Share via


AgentApplicationBuilder Constructors

Definition

Overloads

AgentApplicationBuilder(TurnStateFactory)

Creates the builder and uses the passed TurnStateFactory to use for managing the Agent's turn state.

AgentApplicationBuilder(IStorage)

Creates the builder and uses IStorage to create the default TurnStateFactory to use for managing the Agent's turn state.

AgentApplicationBuilder(TurnStateFactory)

Creates the builder and uses the passed TurnStateFactory to use for managing the Agent's turn state.

public AgentApplicationBuilder(Microsoft.Agents.Builder.App.TurnStateFactory turnStateFactory);
new Microsoft.Agents.Builder.App.AgentApplicationBuilder : Microsoft.Agents.Builder.App.TurnStateFactory -> Microsoft.Agents.Builder.App.AgentApplicationBuilder
Public Sub New (turnStateFactory As TurnStateFactory)

Parameters

turnStateFactory
TurnStateFactory

Applies to

AgentApplicationBuilder(IStorage)

Creates the builder and uses IStorage to create the default TurnStateFactory to use for managing the Agent's turn state.

public AgentApplicationBuilder(Microsoft.Agents.Storage.IStorage storage);
new Microsoft.Agents.Builder.App.AgentApplicationBuilder : Microsoft.Agents.Storage.IStorage -> Microsoft.Agents.Builder.App.AgentApplicationBuilder
Public Sub New (storage As IStorage)

Parameters

storage
IStorage

The IStorage to use with TurnState.

Applies to