UdpClient.Close 方法

定义

关闭 UDP 连接。

public:
 void Close();
public void Close ();
member this.Close : unit -> unit
Public Sub Close ()

例外

访问套接字时出错。

示例

以下示例演示如何通过调用 Close 方法关闭 UdpClient

// Closes the UDP client by calling the public method Close().
udpClient->Close();
// Closes the UDP client by calling the public method Close().
udpClient.Close();
' Closes the UDP client by calling the public method Close().
udpClient.Close()

注解

Close禁用基础Socket资源,并释放与 UdpClient关联的所有托管和非托管资源。

注意

如果收到 , SocketException请使用 SocketException.ErrorCode 获取特定错误代码。 获取此代码后,可以参阅 Windows 套接字版本 2 API 错误代码 文档,了解错误的详细说明。

适用于

另请参阅