XElement.SaveAsync Método
Definición
Sobrecargas
SaveAsync(Stream, SaveOptions, CancellationToken) |
Genera de forma asincrónica este objeto XElement en un Stream.Asynchronously outputs this XElement to a Stream. |
SaveAsync(XmlWriter, CancellationToken) |
Genera de forma asincrónica este objeto XElement en un XmlWriter.Asynchronously outputs this XElement to an XmlWriter. |
SaveAsync(TextWriter, SaveOptions, CancellationToken) |
Genera de forma asincrónica este objeto XElement en un TextWriter.Asynchronously outputs this XElement to a TextWriter. |
SaveAsync(Stream, SaveOptions, CancellationToken)
public:
System::Threading::Tasks::Task ^ SaveAsync(System::IO::Stream ^ stream, System::Xml::Linq::SaveOptions options, System::Threading::CancellationToken cancellationToken);
public System.Threading.Tasks.Task SaveAsync (System.IO.Stream stream, System.Xml.Linq.SaveOptions options, System.Threading.CancellationToken cancellationToken);
member this.SaveAsync : System.IO.Stream * System.Xml.Linq.SaveOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Function SaveAsync (stream As Stream, options As SaveOptions, cancellationToken As CancellationToken) As Task
Parámetros
- stream
- Stream
Flujo en el que se genera el XML.The stream to output the XML to.
- options
- SaveOptions
Combinación bit a bit de los valores de enumeración que especifican las opciones de serialización.A bitwise combination of the enumeration values that specify the serialization options.
- cancellationToken
- CancellationToken
Un token que se puede utilizar para solicitar la cancelación de la operación asincrónica.A token that can be used to request cancellation of the asynchronous operation.
Devoluciones
Tarea que representa la operación de guardado asincrónico.A task representing the asynchronous save operation.
Se aplica a
SaveAsync(XmlWriter, CancellationToken)
public:
System::Threading::Tasks::Task ^ SaveAsync(System::Xml::XmlWriter ^ writer, System::Threading::CancellationToken cancellationToken);
public System.Threading.Tasks.Task SaveAsync (System.Xml.XmlWriter writer, System.Threading.CancellationToken cancellationToken);
member this.SaveAsync : System.Xml.XmlWriter * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Function SaveAsync (writer As XmlWriter, cancellationToken As CancellationToken) As Task
Parámetros
- writer
- XmlWriter
Escritor en el que se genera el XML.The writer to output the XML to.
- cancellationToken
- CancellationToken
Un token que se puede utilizar para solicitar la cancelación de la operación asincrónica.A token that can be used to request cancellation of the asynchronous operation.
Devoluciones
Tarea que representa la operación de guardado asincrónico.A task representing the asynchronous save operation.
Se aplica a
SaveAsync(TextWriter, SaveOptions, CancellationToken)
Genera de forma asincrónica este objeto XElement en un TextWriter.Asynchronously outputs this XElement to a TextWriter.
public:
System::Threading::Tasks::Task ^ SaveAsync(System::IO::TextWriter ^ textWriter, System::Xml::Linq::SaveOptions options, System::Threading::CancellationToken cancellationToken);
public System.Threading.Tasks.Task SaveAsync (System.IO.TextWriter textWriter, System.Xml.Linq.SaveOptions options, System.Threading.CancellationToken cancellationToken);
member this.SaveAsync : System.IO.TextWriter * System.Xml.Linq.SaveOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Function SaveAsync (textWriter As TextWriter, options As SaveOptions, cancellationToken As CancellationToken) As Task
Parámetros
- textWriter
- TextWriter
Escritor en el que se genera el XML.The writer to output the XML to.
- options
- SaveOptions
Combinación bit a bit de los valores de enumeración que especifican las opciones de serialización.A bitwise combination of the enumeration values that specify the serialization options.
- cancellationToken
- CancellationToken
Un token que se puede utilizar para solicitar la cancelación de la operación asincrónica.A token that can be used to request cancellation of the asynchronous operation.
Devoluciones
Tarea que representa la operación de guardado asincrónico.A task representing the asynchronous save operation.