ChannelWriter<T>.TryComplete(Exception) 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.
Tente de marquer le canal comme étant terminé, ce qui signifie qu’aucune autre donnée y sera écrite.
public virtual bool TryComplete (Exception error = default);
public virtual bool TryComplete (Exception? error = default);
abstract member TryComplete : Exception -> bool
override this.TryComplete : Exception -> bool
Public Overridable Function TryComplete (Optional error As Exception = Nothing) As Boolean
Paramètres
- error
- Exception
Exception Exception indiquant l’échec qui empêche l’écriture de données supplémentaires, ou valeur null en cas de succès.
Retours
true
si cette opération termine correctement le canal. Sinon, false
si le canal n’a pas pu être marqué comme étant terminé, par exemple s’il a déjà été marqué comme tel, ou en raison de la non prise en charge de la terminaison.
.