SslStream::CanTimeout Property

 

Gets a Boolean value that indicates whether the underlying stream supports time-outs.

Namespace:   System.Net.Security
Assembly:  System (in System.dll)

public:
property bool CanTimeout {
	virtual bool get() override;
}

Property Value

Type: System::Boolean

true if the underlying stream supports time-outs; otherwise, false.

This property returns the value returned by invoking CanTimeout on the underlying stream.

The underlying stream is specified when you create an instance of the SslStream class.

The following code example demonstrates displaying the value of this property.

static void DisplayStreamProperties( SslStream^ stream )
{
   Console::WriteLine( L"Can read: {0}, write {1}", stream->CanRead, stream->CanWrite );
   Console::WriteLine( L"Can timeout: {0}", stream->CanTimeout );
}


.NET Framework
Available since 2.0
Return to top
Show: