File.AppendAllBytesAsync Méthode
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
AppendAllBytesAsync(String, Byte[], CancellationToken) |
Ajoute de façon asynchrone le tableau d’octets spécifié à la fin du fichier au chemin d’accès donné. Si le fichier n’existe pas, cette méthode crée un fichier. Si l’opération est annulée, la tâche retourne un état annulé. |
AppendAllBytesAsync(String, ReadOnlyMemory<Byte>, CancellationToken) |
Ajoute de façon asynchrone le tableau d’octets spécifié à la fin du fichier au chemin d’accès donné. Si le fichier n’existe pas, cette méthode crée un fichier. Si l’opération est annulée, la tâche retourne un état annulé. |
AppendAllBytesAsync(String, Byte[], CancellationToken)
- Source:
- File.cs
Ajoute de façon asynchrone le tableau d’octets spécifié à la fin du fichier au chemin d’accès donné.
Si le fichier n’existe pas, cette méthode crée un fichier. Si l’opération est annulée, la tâche retourne un état annulé.
public static System.Threading.Tasks.Task AppendAllBytesAsync (string path, byte[] bytes, System.Threading.CancellationToken cancellationToken = default);
static member AppendAllBytesAsync : string * byte[] * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Shared Function AppendAllBytesAsync (path As String, bytes As Byte(), Optional cancellationToken As CancellationToken = Nothing) As Task
Paramètres
- path
- String
Fichier à ajouter.
- bytes
- Byte[]
Octets à ajouter au fichier.
- cancellationToken
- CancellationToken
Jeton à surveiller pour les demandes d’annulation. La valeur par défaut est None.
Retours
Exceptions
path
ou bytes
est null
.
path
est vide.
Le jeton d’annulation a été annulé. Cette exception est stockée dans la tâche retournée.
S’applique à
AppendAllBytesAsync(String, ReadOnlyMemory<Byte>, CancellationToken)
Ajoute de façon asynchrone le tableau d’octets spécifié à la fin du fichier au chemin d’accès donné.
Si le fichier n’existe pas, cette méthode crée un fichier. Si l’opération est annulée, la tâche retourne un état annulé.
public static System.Threading.Tasks.Task AppendAllBytesAsync (string path, ReadOnlyMemory<byte> bytes, System.Threading.CancellationToken cancellationToken = default);
static member AppendAllBytesAsync : string * ReadOnlyMemory<byte> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Shared Function AppendAllBytesAsync (path As String, bytes As ReadOnlyMemory(Of Byte), Optional cancellationToken As CancellationToken = Nothing) As Task
Paramètres
- path
- String
Fichier à ajouter.
- bytes
- ReadOnlyMemory<Byte>
Octets à ajouter au fichier.
- cancellationToken
- CancellationToken
Jeton à surveiller pour les demandes d’annulation. La valeur par défaut est None.
Retours
Exceptions
path
est null
.
path
est vide.
Le jeton d’annulation a été annulé. Cette exception est stockée dans la tâche retournée.