ProxyStreamBeginWrite - метод
Пространство имён: Tessa.Platform.IOСборка: Tessa (в Tessa.dll) Версия: 4.2.0+ffad8363f63902f18b3b3f4cfa533a14b2fb19a6
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.