Bagikan melalui


NegotiateStream.WriteTimeout Properti

Definisi

Mendapatkan atau mengatur jumlah waktu operasi tulis memblokir menunggu data.

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

Nilai Properti

Int32 yang menentukan jumlah waktu yang akan berlalu sebelum operasi tulis gagal.

Contoh

Contoh kode berikut menunjukkan menampilkan nilai properti ini.

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);
     }
}

Keterangan

Properti ini mengembalikan nilai yang dikembalikan dengan memanggil WriteTimeout properti pada aliran yang mendasar. Untuk operasi yang ditetapkan, nilai yang ditentukan menetapkan nilai pada aliran yang mendasar WriteTimeout .

Jika aliran yang mendasar adalah NetworkStream, WriteTimeout dalam milidetik dan diatur ke Infinite secara default sehingga operasi tulis tidak kehabisan waktu.

Berlaku untuk