FunctionShellCallOutputContent Constructor
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.
Initializes a new instance of FunctionShellCallOutputContent.
public FunctionShellCallOutputContent(string stdout, string stderr, Azure.AI.AgentServer.Responses.Models.FunctionShellCallOutputOutcome outcome);
new Azure.AI.AgentServer.Responses.Models.FunctionShellCallOutputContent : string * string * Azure.AI.AgentServer.Responses.Models.FunctionShellCallOutputOutcome -> Azure.AI.AgentServer.Responses.Models.FunctionShellCallOutputContent
Public Sub New (stdout As String, stderr As String, outcome As FunctionShellCallOutputOutcome)
Parameters
- stdout
- String
The standard output that was captured.
- stderr
- String
The standard error output that was captured.
- outcome
- FunctionShellCallOutputOutcome
Represents either an exit outcome (with an exit code) or a timeout outcome for a shell call output chunk.
Exceptions
stdout, stderr or outcome is null.