UdpAnySourceMulticastClient.Dispose Method

Definition

Caution

This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.

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

public:
 virtual void Dispose();
[System.Obsolete("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
public void Dispose ();
[<System.Obsolete("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)>]
abstract member Dispose : unit -> unit
override this.Dispose : unit -> unit
Public Sub Dispose ()

Implements

Attributes

Remarks

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 UdpAnySourceMulticastClient so the garbage collector can reclaim the memory that the UdpAnySourceMulticastClient was occupying.

Always call Dispose before 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.

Applies to