Для изменения размера нажмите или перетащите

ProxyStreamBeginWrite - метод

Пространство имён:  Tessa.Platform.IO
Сборка:  Tessa (в Tessa.dll) Версия: 3.5.0.19
Синтаксис
public override IAsyncResult BeginWrite(
	byte[] buffer,
	int offset,
	int count,
	AsyncCallback? callback,
	Object? state
)

Параметры

buffer
Тип: SystemByte
The buffer to write data from.
offset
Тип: SystemInt32
The byte offset in buffer from which to begin writing.
count
Тип: SystemInt32
The maximum number of bytes to write.
callback
Тип: SystemAsyncCallback
An optional asynchronous callback, to be called when the write is complete.
state
Тип: SystemObject
A user-provided object that distinguishes this particular asynchronous write request from other requests.

Возвращаемое значение

Тип: IAsyncResult
An IAsyncResult that represents the asynchronous write, which could still be pending.
Исключения
ИсключениеУсловие
IOExceptionAttempted an asynchronous write past the end of the stream, or a disk error occurs.
ArgumentExceptionOne or more of the arguments is invalid.
ObjectDisposedExceptionMethods were called after the stream was closed.
NotSupportedExceptionThe current Stream implementation does not support the write operation.
См. также