Visual Basic (Declaration) | |
---|---|
Public Overrides Function BeginRead( _ ByVal buffer() As Byte, _ ByVal offset As Integer, _ ByVal count As Integer, _ ByVal callback As AsyncCallback, _ ByVal state As Object _ ) As IAsyncResult |
Visual Basic (Usage) | ![]() |
---|---|
Dim instance As SizeLimitedStream Dim buffer() As Byte Dim offset As Integer Dim count As Integer Dim callback As AsyncCallback Dim state As Object Dim value As IAsyncResult value = instance.BeginRead(buffer, offset, count, callback, state) |
C# | |
---|---|
public override IAsyncResult BeginRead( byte[] buffer, int offset, int count, AsyncCallback callback, object state ) |
C++/CLI | |
---|---|
public: IAsyncResult^ BeginRead( array<byte>^ buffer, int offset, int count, AsyncCallback^ callback, Object^ state ) override |
Parameters
- buffer
- The buffer to read the data into.
- offset
- The byte offset in buffer at which to begin writing data read from the stream.
- count
- The maximum number of bytes to read.
- callback
- An optional asynchronous callback, to be called when the read is complete.
- state
- A user-provided object that distinguishes this particular asynchronous read request from other requests.
Return Value
An System.IAsyncResult that represents the asynchronous read, which could still be pending.Exception | Description |
---|---|
System.IO.IOException | Attempted an asynchronous read past the end of the stream, or a disk error occurs. |
System.ArgumentException | One or more of the arguments is invalid. |
System.ObjectDisposedException | Methods were called after the stream was closed. |
System.NotSupportedException | The current Stream implementation does not support the read operation. |
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2