FileStream.CanRead Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Geçerli akışın okumayı destekleyip desteklemediğini gösteren bir değer alır.
public:
virtual property bool CanRead { bool get(); };
public override bool CanRead { get; }
member this.CanRead : bool
Public Overrides ReadOnly Property CanRead As Boolean
Özellik Değeri
true
akış okumayı destekliyorsa; false
akış kapalıysa veya yalnızca yazma erişimiyle açıldıysa.
Örnekler
Aşağıdaki örnekte özelliğinin kullanımı gösterilmektedir CanRead
. Bu kodun çıkışı "MyFile.txt yazılabilir değil"dir. "MyFile.txt hem öğesine yazılabilir hem de buradan okunabilir" çıkış iletisini almak için, oluşturucuda parametresini FileStream
olarak ReadWrite
değiştirinFileAccess
.
using namespace System;
using namespace System::IO;
int main( void )
{
FileStream^ fs = gcnew 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
{
Console::WriteLine( "MyFile.txt is not writable" );
}
return 0;
}
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.");
}
}
}
open System.IO
let fs = new FileStream("MyFile.txt", FileMode.OpenOrCreate, FileAccess.Read)
if fs.CanRead && fs.CanWrite then
printfn "MyFile.txt can be both written to and read from."
else if fs.CanRead then
printfn "MyFile.txt is not writable."
Imports System.IO
Class TestRW
Public Shared Sub Main()
Dim fs As New FileStream("MyFile.txt", FileMode.OpenOrCreate, FileAccess.Read)
If fs.CanRead And fs.CanWrite Then
Console.WriteLine("MyFile.txt can be both written to and read from.")
Else
If fs.CanRead Then
Console.WriteLine("MyFile.txt is not writable.")
End If
End If
End Sub
End Class
Açıklamalar
öğesinden Stream türetilen bir sınıf okumayı desteklemiyorsa , ReadByteve BeginRead yöntemlerine Readçağrılar bir NotSupportedExceptionoluşturur.
Akış kapatılırsa, bu özellik döndürür false
.