MemoryStream.CanRead 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得表示目前資料流是否支援讀取的值。
public:
virtual property bool CanRead { bool get(); };
public override bool CanRead { get; }
member this.CanRead : bool
Public Overrides ReadOnly Property CanRead As Boolean
屬性值
true
,如果資料流已開啟。
備註
如果衍生自 Stream 的類別不支援讀取,則呼叫 Read 和 ReadByte 方法會擲回 NotSupportedException。
如果資料流已關閉,這個屬性會傳 false
回 。