NegotiateStream.CanSeek Proprietà

Definizione

Ottiene un Boolean valore che indica se il flusso sottostante è ricercabile.

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à

Questa proprietà restituisce falsesempre .

Esempio

Nell'esempio di codice seguente viene illustrato il valore di questa proprietà.

 static void DisplayStreamProperties(NegotiateStream stream)
{
     Console.WriteLine("Can read: {0}", stream.CanRead);
     Console.WriteLine("Can write: {0}", stream.CanWrite);
     Console.WriteLine("Can seek: {0}", stream.CanSeek);
     try
     {
         // If the underlying stream supports it, display the length.
         Console.WriteLine("Length: {0}", stream.Length);
     } catch (NotSupportedException)
     {
             Console.WriteLine("Cannot get the length of the underlying stream.");
     }

     if (stream.CanTimeout)
     {
         Console.WriteLine("Read time-out: {0}", stream.ReadTimeout);
         Console.WriteLine("Write time-out: {0}", stream.WriteTimeout);
     }
}

Commenti

Non è consigliabile tentare di impostare la posizione dell'oggetto o del NegotiateStream flusso sottostante. Il flusso sottostante viene specificato quando si crea un'istanza della NegotiateStream classe .

Si applica a

Vedi anche