CopyToAsync(OracleClob, Int64, CancellationToken)
This method returns a Task-based asynchronous version of OracleBFile.CopyTo(), which copies data from the current instance to the provided object.
Declaration
// C# public async Task<Int64> CopyToAsync(OracleClob obj, Int64 dst_offset, CancellationToken cancellationToken)
Parameters
-
obj- TheOracleClobobject to which the data is copied. -
dst_offset- Theoffset(in characters) at which theOracleClobobject is copied. -
cancellationToken- The input cancellation token which can be used by the application to cancel the task.
Return Value
Task<Int64> object representing the asynchronous operation immediately without blocking the calling thread for the whole duration of the query execution.
Exceptions
-
ObjectDisposedException- The object is already disposed. -
ArgumentOutOfRangeException- Thedst_offsetis less than0. -
InvalidOperationException- This exception is thrown if any of the following conditions exist:-
The
OracleConnectionis not open or has been closed during the lifetime of the object. -
The
LOBobject parameter has a different connection than the object.
-