SftpFileStream BeginWrite Method SSH .NET Client Library Documentation
Begins an asynchronous write operation.

Namespace: Renci.SshNet.Sftp
Assembly: Renci.SshNet (in Renci.SshNet.dll) Version: 0.1.0.0 (1.0.0.0)
Syntax

public override IAsyncResult BeginWrite(
	byte[] buffer,
	int offset,
	int count,
	AsyncCallback callback,
	Object state
)

Parameters

buffer
Type:  OnlineSystem Byte 
The buffer to write data from.
offset
Type: OnlineSystem Int32
The byte offset in buffer from which to begin writing.
count
Type: OnlineSystem Int32
The maximum number of bytes to write.
callback
Type: OnlineSystem AsyncCallback
An optional asynchronous callback, to be called when the write is complete.
state
Type: OnlineSystem Object
A user-provided object that distinguishes this particular asynchronous write request from other requests.

Return Value

An IAsyncResult that represents the asynchronous write, which could still be pending.
Exceptions

ExceptionCondition
OnlineSystem.IO IOExceptionAttempted an asynchronous write past the end of the stream, or a disk error occurs.
OnlineSystem ArgumentExceptionOne or more of the arguments is invalid.
OnlineSystem ObjectDisposedExceptionMethods were called after the stream was closed.
OnlineSystem NotSupportedExceptionThe current Stream implementation does not support the write operation.
See Also