This documentation is archived and is not being maintained.
SslStream::CanWrite Property
.NET Framework (current version)
Gets a Boolean value that indicates whether the underlying stream is writable.
Namespace:
System.Net.SecurityAssembly:
System (in System.dll)
public:
property bool CanWrite {
virtual bool get() override;
}
Property Value
Type:
System::Booleantrue if authentication has occurred and the underlying stream is writable; otherwise false.
If successful authentication has occurred, this property returns the value returned by invoking CanWrite 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