SubtaskInformation 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
SubtaskInformation() |
Initialise une nouvelle instance de la classe SubtaskInformation. |
SubtaskInformation(Nullable<Int32>, ComputeNodeInformation, Nullable<DateTime>, Nullable<DateTime>, Nullable<Int32>, TaskContainerExecutionInformation, TaskFailureInformation, Nullable<SubtaskState>, Nullable<DateTime>, Nullable<SubtaskState>, Nullable<DateTime>, Nullable<TaskExecutionResult>) |
Initialise une nouvelle instance de la classe SubtaskInformation. |
SubtaskInformation()
- Source:
- SubtaskInformation.cs
Initialise une nouvelle instance de la classe SubtaskInformation.
public SubtaskInformation ();
Public Sub New ()
S’applique à
SubtaskInformation(Nullable<Int32>, ComputeNodeInformation, Nullable<DateTime>, Nullable<DateTime>, Nullable<Int32>, TaskContainerExecutionInformation, TaskFailureInformation, Nullable<SubtaskState>, Nullable<DateTime>, Nullable<SubtaskState>, Nullable<DateTime>, Nullable<TaskExecutionResult>)
- Source:
- SubtaskInformation.cs
Initialise une nouvelle instance de la classe SubtaskInformation.
public SubtaskInformation (int? id = default, Microsoft.Azure.Batch.Protocol.Models.ComputeNodeInformation nodeInfo = default, DateTime? startTime = default, DateTime? endTime = default, int? exitCode = default, Microsoft.Azure.Batch.Protocol.Models.TaskContainerExecutionInformation containerInfo = default, Microsoft.Azure.Batch.Protocol.Models.TaskFailureInformation failureInfo = default, Microsoft.Azure.Batch.Protocol.Models.SubtaskState? state = default, DateTime? stateTransitionTime = default, Microsoft.Azure.Batch.Protocol.Models.SubtaskState? previousState = default, DateTime? previousStateTransitionTime = default, Microsoft.Azure.Batch.Protocol.Models.TaskExecutionResult? result = default);
new Microsoft.Azure.Batch.Protocol.Models.SubtaskInformation : Nullable<int> * Microsoft.Azure.Batch.Protocol.Models.ComputeNodeInformation * Nullable<DateTime> * Nullable<DateTime> * Nullable<int> * Microsoft.Azure.Batch.Protocol.Models.TaskContainerExecutionInformation * Microsoft.Azure.Batch.Protocol.Models.TaskFailureInformation * Nullable<Microsoft.Azure.Batch.Protocol.Models.SubtaskState> * Nullable<DateTime> * Nullable<Microsoft.Azure.Batch.Protocol.Models.SubtaskState> * Nullable<DateTime> * Nullable<Microsoft.Azure.Batch.Protocol.Models.TaskExecutionResult> -> Microsoft.Azure.Batch.Protocol.Models.SubtaskInformation
Public Sub New (Optional id As Nullable(Of Integer) = Nothing, Optional nodeInfo As ComputeNodeInformation = Nothing, Optional startTime As Nullable(Of DateTime) = Nothing, Optional endTime As Nullable(Of DateTime) = Nothing, Optional exitCode As Nullable(Of Integer) = Nothing, Optional containerInfo As TaskContainerExecutionInformation = Nothing, Optional failureInfo As TaskFailureInformation = Nothing, Optional state As Nullable(Of SubtaskState) = Nothing, Optional stateTransitionTime As Nullable(Of DateTime) = Nothing, Optional previousState As Nullable(Of SubtaskState) = Nothing, Optional previousStateTransitionTime As Nullable(Of DateTime) = Nothing, Optional result As Nullable(Of TaskExecutionResult) = Nothing)
Paramètres
- nodeInfo
- ComputeNodeInformation
Informations sur le nœud de calcul sur lequel la tâche secondaire s’est exécutée.
Heure à laquelle la tâche secondaire a commencé à s’exécuter. Si la tâche secondaire a été redémarrée ou retentée, il s’agit de l’heure la plus récente à laquelle la tâche secondaire a commencé à s’exécuter.
- containerInfo
- TaskContainerExecutionInformation
Informations sur le conteneur sous lequel la tâche s’exécute.
- failureInfo
- TaskFailureInformation
Informations décrivant l’échec de la tâche, le cas échéant.
- state
- Nullable<SubtaskState>
État actuel de la tâche secondaire.
Heure à laquelle la tâche secondaire est entrée dans son état actuel.
- previousState
- Nullable<SubtaskState>
État précédent de la tâche secondaire.
Heure à laquelle la tâche secondaire est entrée dans son état précédent.
- result
- Nullable<TaskExecutionResult>
Résultat de l’exécution de la tâche.
S’applique à
Azure SDK for .NET