UdpSingleSourceMulticastClient.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 UdpSingleSourceMulticastClient 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 UdpSingleSourceMulticastClient. The Dispose method leaves the UdpSingleSourceMulticastClient in an unusable state. After calling Dispose, you must release all references to the UdpSingleSourceMulticastClient so the garbage collector can reclaim the memory that the UdpSingleSourceMulticastClient was occupying.

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

Applies to