PipeStream.WriteByte(Byte) Método
Definição
Grava um byte no fluxo atual.Writes a byte to the current stream.
public:
override void WriteByte(System::Byte value);
public override void WriteByte (byte value);
[System.Security.SecurityCritical]
public override void WriteByte (byte value);
override this.WriteByte : byte -> unit
[<System.Security.SecurityCritical>]
override this.WriteByte : byte -> unit
Public Overrides Sub WriteByte (value As Byte)
Parâmetros
- value
- Byte
O byte a ser gravado no fluxo.The byte to write to the stream.
- Atributos
Exceções
O pipe está fechado.The pipe is closed.
O pipe não dá suporte a operações de gravação.The pipe does not support write operations.
O pipe está desconectado, esperando para conectar-se ou o identificador não foi definido.The pipe is disconnected, waiting to connect, or the handle has not been set.
O pipe está interrompido ou ocorreu outro erro de E/S.The pipe is broken or another I/O error occurred.
Comentários
Use a CanWrite propriedade para determinar se o PipeStream objeto atual oferece suporte a operações de gravação.Use the CanWrite property to determine whether the current PipeStream object supports write operations.