本文整理汇总了VB.NET中System.Net.Sockets.TcpListener.BeginAcceptTcpClient方法的典型用法代码示例。如果您正苦于以下问题:VB.NET TcpListener.BeginAcceptTcpClient方法的具体用法?VB.NET TcpListener.BeginAcceptTcpClient怎么用?VB.NET TcpListener.BeginAcceptTcpClient使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Net.Sockets.TcpListener
的用法示例。
在下文中一共展示了TcpListener.BeginAcceptTcpClient方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: DoBeginAcceptTcpClient
' Thread signal.
Public Shared tcpClientConnected As New ManualResetEvent(False)
' Accept one client connection asynchronously.
Public Shared Sub DoBeginAcceptTcpClient(listener As TcpListener)
' Set the event to nonsignaled state.
tcpClientConnected.Reset()
' Start to listen for connections from a client.
Console.WriteLine("Waiting for a connection...")
' Accept the connection.
' BeginAcceptSocket() creates the accepted socket.
listener.BeginAcceptTcpClient(New AsyncCallback(AddressOf DoAcceptTcpClientCallback), listener)
' Wait until a connection is made and processed before
' continuing.
tcpClientConnected.WaitOne()
End Sub
' Process the client connection.
Public Shared Sub DoAcceptTcpClientCallback(ar As IAsyncResult)
' Get the listener that handles the client request.
Dim listener As TcpListener = CType(ar.AsyncState, TcpListener)
' End the operation and display the received data on
' the console.
Dim client As TcpClient = listener.EndAcceptTcpClient(ar)
' Process the connection here. (Add the client to a
' server table, read data, etc.)
Console.WriteLine("Client connected completed")
' Signal the calling thread to continue.
tcpClientConnected.Set()
End Sub