你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

ComputerToolCallSafetyCheck Constructors

Definition

Overloads

ComputerToolCallSafetyCheck()

Source:
ComputerToolCallSafetyCheck.cs

Initializes a new instance of ComputerToolCallSafetyCheck for deserialization.

public ComputerToolCallSafetyCheck();
Public Sub New ()

Applies to

ComputerToolCallSafetyCheck(String, String, String)

Source:
ComputerToolCallSafetyCheck.cs

Initializes a new instance of ComputerToolCallSafetyCheck.

public ComputerToolCallSafetyCheck(string id, string code, string message);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.ComputerToolCallSafetyCheck : string * string * string -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.ComputerToolCallSafetyCheck
Public Sub New (id As String, code As String, message As String)

Parameters

id
String

The ID of the pending safety check.

code
String

The type of the pending safety check.

message
String

Details about the pending safety check.

Exceptions

id, code or message is null.

Applies to

ComputerToolCallSafetyCheck(String, String, String, IDictionary<String,BinaryData>)

Source:
ComputerToolCallSafetyCheck.cs

Initializes a new instance of ComputerToolCallSafetyCheck.

public ComputerToolCallSafetyCheck(string id, string code, string message, System.Collections.Generic.IDictionary<string,BinaryData> serializedAdditionalRawData);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.ComputerToolCallSafetyCheck : string * string * string * System.Collections.Generic.IDictionary<string, BinaryData> -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.ComputerToolCallSafetyCheck
Public Sub New (id As String, code As String, message As String, serializedAdditionalRawData As IDictionary(Of String, BinaryData))

Parameters

id
String

The ID of the pending safety check.

code
String

The type of the pending safety check.

message
String

Details about the pending safety check.

serializedAdditionalRawData
IDictionary<String,BinaryData>

Keeps track of any properties unknown to the library.

Applies to