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.

OracleLob::Seek Method (Int64, SeekOrigin)

 

Sets the position on the current OracleLob stream.

Namespace:   System.Data.OracleClient
Assembly:  System.Data.OracleClient (in System.Data.OracleClient.dll)

public:
virtual long long Seek(
	long long offset,
	SeekOrigin origin
) override

Parameters

offset
Type: System::Int64

A byte offset relative to origin. If offset is negative, the new position precedes the position specified by origin by the number of bytes specified by offset. If offset is zero, the new position is the position specified by origin. If offset is positive, the new position follows the position specified by origin by the number of bytes specified by offset.

origin
Type: System.IO::SeekOrigin

A value of type SeekOrigin indicating the reference point used to obtain the new position.

Return Value

Type: System::Int64

The new position within the current stream.

Exception Condition
ArgumentException

The origin parameter does not contain a valid value.

ArgumentOutOfRangeException

The resulting position is beyond the length of the value.

ObjectDisposedException

The OracleLob object was closed or disposed.

OracleException

An Oracle error has occurred.

If offset is negative, the new position must precede the position specified by origin by the number of bytes specified by offset. If offset is zero, the new position must be the position specified by origin. If offset is positive, the new position must follow the position specified by origin by the number of bytes specified by offset.

Seeking to any location beyond the length of the stream is supported. Seeking to an odd position for CLOB and NCLOB data types is also supported. For more information, see the Remarks section of the Read property.

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