BufferedStream.CanSeek Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient une valeur indiquant si le flux actuel prend en charge la recherche.
public:
virtual property bool CanSeek { bool get(); };
public override bool CanSeek { get; }
member this.CanSeek : bool
Public Overrides ReadOnly Property CanSeek As Boolean
Valeur de propriété
true
si le flux prend en charge la recherche ; false
si le flux est fermé ou s'il a été construit à partir d'un handle de système d'exploitation tel qu'un canal ou une sortie console.
Exemples
Cet exemple de code fait partie d’un exemple plus grand fourni pour 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
Remarques
Si une classe dérivée de Stream ne prend pas en charge la recherche, appelle , LengthSetLength, Positionet Seek lève un NotSupportedException.
Si le flux est fermé, cette propriété retourne false
.