BufferedStream.CanSeek Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém um valor que indica se o fluxo atual dá suporte à busca.
public:
virtual property bool CanSeek { bool get(); };
public override bool CanSeek { get; }
member this.CanSeek : bool
Public Overrides ReadOnly Property CanSeek As Boolean
Valor da propriedade
true
se o fluxo der suporte à busca; false
se o fluxo estiver fechado ou se o fluxo tiver sido construído a partir de um identificador do sistema operacional, como um pipe ou saída para o console.
Exemplos
Este exemplo de código faz parte de um exemplo maior fornecido para a 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
Comentários
Se uma classe derivada de não oferecer Stream suporte à busca, chamará para Length, SetLength, Positione gerará Seek um NotSupportedException.
Se o fluxo for fechado, essa propriedade retornará false
.