PipeStream.BeginWrite Method
Begins an asynchronous write operation.
Namespace: System.IO.Pipes
Assembly: System.Core (in System.Core.dll)
[HostProtectionAttribute(SecurityAction.LinkDemand, ExternalThreading = true)] public override IAsyncResult BeginWrite( byte[] buffer, int offset, int count, AsyncCallback callback, Object state )
Parameters
- buffer
- Type: System.Byte[]
The buffer that contains the data to write to the current stream.
- offset
- Type: System.Int32
The zero-based byte offset in buffer at which to begin copying bytes to the current stream.
- count
- Type: System.Int32
The maximum number of bytes to write.
- callback
- Type: System.AsyncCallback
The method to call when the asynchronous write operation is completed.
- state
- Type: System.Object
A user-provided object that distinguishes this particular asynchronous write request from other requests.
Return Value
Type: System.IAsyncResultAn IAsyncResult object that references the asynchronous write operation.
| Exception | Condition |
|---|---|
| ArgumentNullException | buffer is null. |
| ArgumentOutOfRangeException | offset is less than 0. -or- count is less than 0. |
| ArgumentException | count is greater than the number of bytes available in buffer. |
| ObjectDisposedException | The pipe is closed. |
| NotSupportedException | The pipe does not support write operations. |
| InvalidOperationException | The pipe is disconnected, waiting to connect, or the handle has not been set. |
| IOException | The pipe is broken or another I/O error occurred. |
EndWrite must be called once for every call to BeginWrite. This can be done either in the same code that called BeginWrite or in a callback that is passed to BeginWrite.
Use the CanWrite property to determine whether the current PipeStream object supports write operations.
If the pipe is closed or an invalid argument is passed to BeginWrite, the appropriate exceptions are raised immediately. Errors that occur during an asynchronous write request occur on the thread pool thread that is performing the request. The exceptions are raised when the code calls the EndWrite method.
Note |
|---|
The HostProtectionAttribute attribute applied to this type or member has the following Resources property value: ExternalThreading. The HostProtectionAttribute does not affect desktop applications (which are typically started by double-clicking an icon, typing a command, or entering a URL in a browser). For more information, see the HostProtectionAttribute class or SQL Server Programming and Host Protection Attributes. |
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note