Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

SslStream::Position Property

 

Gets or sets the current position in the underlying stream.

Namespace:   System.Net.Security
Assembly:  System (in System.dll)

public:
property long long Position {
	virtual long long get() override;
	virtual void set(long long value) override;
}

Property Value

Type: System::Int64

A Int64.

The current position in the underlying stream.

Exception Condition
NotSupportedException

Setting this property is not supported.

-or-

Getting the value of this property is not supported when the underlying stream is a NetworkStream.

This property returns the value returned by invoking Position on the underlying stream. If the underlying stream is not seekable, this method typically throws an exception. The run-time type of the underlying stream determines the run-time type of the exception that is thrown.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft