Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

SslStream::CanRead Property

 

Gets a Boolean value that indicates whether the underlying stream is readable.

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

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

Property Value

Type: System::Boolean

true if authentication has occurred and the underlying stream is readable; otherwise false.

If successful authentication has occurred, this property returns the value returned by invoking CanRead 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:
© 2017 Microsoft