BatchError Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
BatchError() |
Initialise une nouvelle instance de la classe BatchError. |
BatchError(String, ErrorMessage, IList<BatchErrorDetail>) |
Initialise une nouvelle instance de la classe BatchError. |
BatchError()
- Source:
- BatchError.cs
Initialise une nouvelle instance de la classe BatchError.
public BatchError ();
Public Sub New ()
S’applique à
BatchError(String, ErrorMessage, IList<BatchErrorDetail>)
- Source:
- BatchError.cs
Initialise une nouvelle instance de la classe BatchError.
public BatchError (string code = default, Microsoft.Azure.Batch.Protocol.Models.ErrorMessage message = default, System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.BatchErrorDetail> values = default);
new Microsoft.Azure.Batch.Protocol.Models.BatchError : string * Microsoft.Azure.Batch.Protocol.Models.ErrorMessage * System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.BatchErrorDetail> -> Microsoft.Azure.Batch.Protocol.Models.BatchError
Public Sub New (Optional code As String = Nothing, Optional message As ErrorMessage = Nothing, Optional values As IList(Of BatchErrorDetail) = Nothing)
Paramètres
- code
- String
Identificateur de l'erreur. Les codes sont invariants et sont destinés à être consommés par programmation.
- message
- ErrorMessage
Message décrivant l’erreur, destiné à être affiché dans une interface utilisateur.
- values
- IList<BatchErrorDetail>
Collection de paires clé-valeur contenant des détails supplémentaires sur l’erreur.
S’applique à
Azure SDK for .NET