WriteAsync(byte[], int, int, CancellationToken)
This method returns a Task-based asynchronous version of OracleClob.Write(), which writes a specified number of bytes from the ODP.NET LOB instance and populates the buffer.
Declaration
// C# public override Task WriteAsync(byte[] buffer, int offset, int count, CancellationToken cancellationToken)
Parameters
-
bufferThe byte array buffer that provides the data.
-
offsetThe 0-based offset (in bytes) from which the buffer is read.
-
countThe amount of bytes to be written into the
OracleClob. -
cancellationTokenThe input cancellation token which can be used by the application to cancel the task.
Return Value
Task object representing the asynchronous operation immediately without blocking the calling thread for the whole duration of the query execution.
Implements
Stream
Exceptions
-
ObjectDisposedException- The object is already disposed. -
InvalidOperationException- TheOracleConnectionis not open or has been closed during the lifetime of the object. -
ArgumentOutOfRangeException- This exception is thrown if any of the following conditions exist:-
The offset or the count parameter is less than
0. -
The offset is greater than or equal to the
buffer.Length. -
The offset and the count together are greater than the
buffer.Length. -
The offset, the count, or the Position is not even.
-