ProxyStreamBeginWrite - метод
Begins an asynchronous write operation. (Consider using WriteAsync(Byte, Int32, Int32) instead.)
Пространство имён: Tessa.Platform.IOСборка: Tessa (в Tessa.dll) Версия: 3.6.0.22
public override IAsyncResult BeginWrite(
byte[] buffer,
int offset,
int count,
AsyncCallback? callback,
Object? state
)
Public Overrides Function BeginWrite (
buffer As Byte(),
offset As Integer,
count As Integer,
callback As AsyncCallback,
state As Object
) As IAsyncResult
public:
virtual IAsyncResult^ BeginWrite(
array<unsigned char>^ buffer,
int offset,
int count,
AsyncCallback^ callback,
Object^ state
) override
abstract BeginWrite :
buffer : byte[] *
offset : int *
count : int *
callback : AsyncCallback *
state : Object -> IAsyncResult
override BeginWrite :
buffer : byte[] *
offset : int *
count : int *
callback : AsyncCallback *
state : Object -> IAsyncResult
- buffer Byte
- The buffer to write data from.
- offset Int32
- The byte offset in buffer from which to begin writing.
- count Int32
- The maximum number of bytes to write.
- callback AsyncCallback
- An optional asynchronous callback, to be called when the write is complete.
- state Object
- A user-provided object that distinguishes this particular asynchronous write request from other requests.
IAsyncResultAn
IAsyncResult that represents the asynchronous write, which could still be pending.
IOException | Attempted an asynchronous write past the end of the stream, or a disk error occurs. |
ArgumentException | One or more of the arguments is invalid. |
ObjectDisposedException | Methods were called after the stream was closed. |
NotSupportedException | The current Stream implementation does not support the write operation. |