영어로 읽기

다음을 통해 공유


Stream.CanRead 속성

정의

파생 클래스에서 재정의되면 현재 스트림이 읽기를 지원하는지를 나타내는 값을 가져옵니다.

public abstract bool CanRead { get; }

속성 값

스트림이 읽기를 지원하면 true이고, 지원하지 않으면 false입니다.

예제

다음은 속성을 사용하는 예제입니다 CanRead .

using System;
using System.IO;

class TestRW
{
    public static void Main(String[] args)
    {
        FileStream fs = new FileStream("MyFile.txt", FileMode.OpenOrCreate, FileAccess.Read);
        if (fs.CanRead && fs.CanWrite)
        {
            Console.WriteLine("MyFile.txt can be both written to and read from.");
        }
        else if (fs.CanRead)
        {
            Console.WriteLine("MyFile.txt is not writable.");
        }
    }
}

설명

에서 Stream 파생된 클래스가 읽기를 지원하지 않는 경우 , ReadByteBeginRead 메서드를 Read호출하면 가 throw됩니다NotSupportedException.

적용 대상

추가 정보