NegotiateStream.CanWrite プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
基になるストリームが書き込み可能かどうかを示す Boolean 値を取得します。
public:
virtual property bool CanWrite { bool get(); };
public override bool CanWrite { get; }
member this.CanWrite : bool
Public Overrides ReadOnly Property CanWrite As Boolean
プロパティ値
認証が行われており、基になるストリームが書き込み可能な場合は true
。それ以外の場合は false
。
例
次のコード例では、このプロパティの値を表示する方法を示します。
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);
}
}
注釈
認証が成功した場合、このプロパティは基になるストリームで プロパティを CanWrite 呼び出すことによって返される値を返します。 基になるストリームは、 クラスの NegotiateStream インスタンスを作成するときに指定されます。