NegotiateStream.ReadTimeout Propriedade

Definição

Obtém ou define a quantidade de tempo que uma operação de leitura é bloqueada aguardando dados.Gets or sets the amount of time a read operation blocks waiting for data.

public:
 virtual property int ReadTimeout { int get(); void set(int value); };
public override int ReadTimeout { get; set; }
member this.ReadTimeout : int with get, set
Public Overrides Property ReadTimeout As Integer

Valor da propriedade

Int32

Um Int32 valor que especifica a quantidade de tempo que decorrerá antes de uma operação de leitura falhar.A Int32 that specifies the amount of time that will elapse before a read operation fails.

Exemplos

O exemplo de código a seguir demonstra como exibir o valor dessa propriedade.The following code example demonstrates displaying the value of this property.

static void DisplayStreamProperties( NegotiateStream^ stream )
{
   Console::WriteLine( L"Can read: {0}", stream->CanRead );
   Console::WriteLine( L"Can write: {0}", stream->CanWrite );
   Console::WriteLine( L"Can seek: {0}", stream->CanSeek );
   try
   {
      
      // If the underlying stream supports it, display the length.
      Console::WriteLine( L"Length: {0}", stream->Length );
   }
   catch ( NotSupportedException^ ) 
   {
      Console::WriteLine( L"Cannot get the length of the underlying stream." );
   }

   if ( stream->CanTimeout )
   {
      Console::WriteLine( L"Read time-out: {0}", stream->ReadTimeout );
      Console::WriteLine( L"Write time-out: {0}", stream->WriteTimeout );
   }
}


 static void DisplayStreamProperties(NegotiateStream stream)
{
     Console.WriteLine("Can read: {0}", stream.CanRead);
     Console.WriteLine("Can write: {0}", stream.CanWrite);
     Console.WriteLine("Can seek: {0}", stream.CanSeek);
     try
     {
         // If the underlying stream supports it, display the length.
         Console.WriteLine("Length: {0}", stream.Length);
     } catch (NotSupportedException)
     {
             Console.WriteLine("Cannot get the length of the underlying stream.");
     }

     if (stream.CanTimeout)
     {
         Console.WriteLine("Read time-out: {0}", stream.ReadTimeout);
         Console.WriteLine("Write time-out: {0}", stream.WriteTimeout);
     }
}

Comentários

Essa propriedade retorna o valor retornado invocando a ReadTimeout propriedade no fluxo subjacente.This property returns the value returned by invoking the ReadTimeout property on the underlying stream. Quando você define essa propriedade, o ReadTimeout valor no fluxo subjacente é definido como o valor especificado.When you set this property, the ReadTimeout value on the underlying stream is set to the specified value.

Se o fluxo subjacente for a NetworkStream , ReadTimeout estiver em milissegundos e definido como Infinite por padrão para que as operações de leitura não expirem o tempo limite.If the underlying stream is a NetworkStream, ReadTimeout is in milliseconds and is set to Infinite by default so that read operations do not time out.

Aplica-se a