FunctionShellCallOutputContentParam 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 FunctionShellCallOutputContentParam.
public FunctionShellCallOutputContentParam(string stdout, string stderr, Azure.AI.AgentServer.Responses.Models.FunctionShellCallOutputOutcomeParam outcome);
new Azure.AI.AgentServer.Responses.Models.FunctionShellCallOutputContentParam : string * string * Azure.AI.AgentServer.Responses.Models.FunctionShellCallOutputOutcomeParam -> Azure.AI.AgentServer.Responses.Models.FunctionShellCallOutputContentParam
Public Sub New (stdout As String, stderr As String, outcome As FunctionShellCallOutputOutcomeParam)
Parameters
- stdout
- String
Captured stdout output for the shell call.
- stderr
- String
Captured stderr output for the shell call.
The exit or timeout outcome associated with this shell call.
Exceptions
stdout, stderr or outcome is null.