OracleLob.Seek Method (Int64, SeekOrigin)
Sets the position on the current OracleLob stream.
Assembly: System.Data.OracleClient (in System.Data.OracleClient.dll)
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.
| 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.
Available since 1.1