ApiInnerError Constructors
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.
Overloads
| Name | Description |
|---|---|
| ApiInnerError() |
Initializes a new instance of ApiInnerError for deserialization. |
| ApiInnerError(String) |
Initializes a new instance of ApiInnerError. |
| ApiInnerError(String, ApiInnerError, IDictionary<String,BinaryData>) |
Initializes a new instance of ApiInnerError. |
ApiInnerError()
- Source:
- ApiInnerError.cs
Initializes a new instance of ApiInnerError for deserialization.
public ApiInnerError();
Public Sub New ()
Applies to
ApiInnerError(String)
- Source:
- ApiInnerError.cs
Initializes a new instance of ApiInnerError.
public ApiInnerError(string code);
new Azure.AI.AgentServer.Contracts.Generated.Common.ApiInnerError : string -> Azure.AI.AgentServer.Contracts.Generated.Common.ApiInnerError
Public Sub New (code As String)
Parameters
- code
- String
The error code.
Exceptions
code is null.
Applies to
ApiInnerError(String, ApiInnerError, IDictionary<String,BinaryData>)
- Source:
- ApiInnerError.cs
Initializes a new instance of ApiInnerError.
public ApiInnerError(string code, Azure.AI.AgentServer.Contracts.Generated.Common.ApiInnerError innererror, System.Collections.Generic.IDictionary<string,BinaryData> serializedAdditionalRawData);
new Azure.AI.AgentServer.Contracts.Generated.Common.ApiInnerError : string * Azure.AI.AgentServer.Contracts.Generated.Common.ApiInnerError * System.Collections.Generic.IDictionary<string, BinaryData> -> Azure.AI.AgentServer.Contracts.Generated.Common.ApiInnerError
Public Sub New (code As String, innererror As ApiInnerError, serializedAdditionalRawData As IDictionary(Of String, BinaryData))
Parameters
- code
- String
The error code.
- innererror
- ApiInnerError
The inner error, if any.
- serializedAdditionalRawData
- IDictionary<String,BinaryData>
Keeps track of any properties unknown to the library.