TextWriter.Synchronized(TextWriter) Método

Definição

Cria um wrapper thread-safe em torno do TextWriter especificado.

public:
 static System::IO::TextWriter ^ Synchronized(System::IO::TextWriter ^ writer);
public static System.IO.TextWriter Synchronized (System.IO.TextWriter writer);
static member Synchronized : System.IO.TextWriter -> System.IO.TextWriter
Public Shared Function Synchronized (writer As TextWriter) As TextWriter

Parâmetros

writer
TextWriter

O TextWriter a ser sincronizado.

Retornos

Um wrapper thread-safe.

Exceções

writer é null.

Comentários

Todas as operações de gravação no wrapper retornado serão thread-safe. Você chama esse método para garantir que apenas um thread por vez possa executar os métodos na TextWriter instância retornada. Para obter mais informações sobre sincronização e threading, consulte Synchronizing Data for Multithreading.

Para obter uma lista de tarefas comuns de E/S, consulte Tarefas comuns de E/S.

Aplica-se a

Confira também