How to access data obtained by WebClient.DownloadDataAsync?
问题 (This is a follow-up question to this one.) I want to read an endless audio stream asynchronously, so that I can do my JIT analysis on the obtained data. Using a WebClient object's DownloadDataAsync method, I can initiate the download easily, see following Win form project: Imports System.Net 'For WebClient Public Class Form1 Private WithEvents c As New WebClient() Protected Overrides Sub Finalize() c.Dispose() MyBase.Finalize() End Sub Private Sub Form1_Load(sender As Object, e As EventArgs)