BufferedStream.CanSeek Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene un valore che indica se il flusso corrente supporta la ricerca.
public:
virtual property bool CanSeek { bool get(); };
public override bool CanSeek { get; }
member this.CanSeek : bool
Public Overrides ReadOnly Property CanSeek As Boolean
Valore della proprietà
true
se il flusso supporta la ricerca; false
se il flusso è chiuso o è stato creato da un handle del sistema operativo, ad esempio un pipe o un output di console.
Esempio
Questo esempio di codice fa parte di un esempio più ampio fornito per la BufferedStream classe .
// Check whether the underlying stream supports seeking.
Console::WriteLine( "NetworkStream {0} seeking.\n", bufStream->CanSeek ? (String^)"supports" : "does not support" );
// Check whether the underlying stream supports seeking.
Console.WriteLine("NetworkStream {0} seeking.\n",
bufStream.CanSeek ? "supports" : "does not support");
// Check whether the underlying stream supports seeking.
printfn $"""NetworkStream {if bufStream.CanSeek then "supports" else "does not support"} seeking.\n"""
' Check whether the underlying stream supports seeking.
If bufStream.CanSeek Then
Console.WriteLine("NetworkStream supports" & _
"seeking." & vbCrLf)
Else
Console.WriteLine("NetworkStream does not " & _
"support seeking." & vbCrLf)
End If
Commenti
Se una classe derivata da Stream non supporta la ricerca, chiama a Length, SetLength, Positione Seek genera un'eccezione NotSupportedException.
Se il flusso è chiuso, questa proprietà restituisce false
.