This topic has not yet been rated - Rate this topic

UdpAnySourceMulticastClient.Dispose Method

.NET Framework 4.5

Note: This API is now obsolete.

Leaves the multicast group and releases all resources used by the current instance of the UdpAnySourceMulticastClient class and the underlying the Socket.

Namespace:  System.Net.Sockets
Assembly:  System.Net (in System.Net.dll)
[ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", 
	true)]
public void Dispose()

Implements

IDisposable.Dispose()

Call Dispose when you are finished using the UdpAnySourceMulticastClient. The Dispose method leaves the UdpAnySourceMulticastClient in an unusable state. After calling Dispose, you must release all references to the UdpAnySourceMulticastClientso the garbage collector can reclaim the memory that the UdpAnySourceMulticastClientwas occupying.

Always call Disposebefore you release your last reference to the UdpAnySourceMulticastClient. Otherwise, the resources it is using will not be freed until the garbage collector calls the UdpAnySourceMulticastClient object's Finalize method.

.NET Framework

Obsolete (does not compile) in 4.5 and later

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.

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.