MulticastIPAddressInformationCollection.GetEnumerator Method

Definition

Returns an object that can be used to iterate through this collection.

public:
 virtual System::Collections::Generic::IEnumerator<System::Net::NetworkInformation::MulticastIPAddressInformation ^> ^ GetEnumerator();
public virtual System.Collections.Generic.IEnumerator<System.Net.NetworkInformation.MulticastIPAddressInformation> GetEnumerator ();
abstract member GetEnumerator : unit -> System.Collections.Generic.IEnumerator<System.Net.NetworkInformation.MulticastIPAddressInformation>
override this.GetEnumerator : unit -> System.Collections.Generic.IEnumerator<System.Net.NetworkInformation.MulticastIPAddressInformation>
Public Overridable Function GetEnumerator () As IEnumerator(Of MulticastIPAddressInformation)

Returns

An object that implements the IEnumerator interface and provides access to the UnicastIPAddressInformation types in this collection.

Implements

Remarks

The object that is returned by this method is initially positioned before the first element in this collection. You must call the MoveNext method before you can access the first element. To access the element at the current position, call the Current property.

Do not modify the collection while using the enumerator. If the collection is modified while an enumerator is in use, an attempt to set the position by calling MoveNext or Reset causes an InvalidOperationException.

For a detailed description of enumerators, see the documentation for the IEnumerator class and the GetEnumerator method.

Applies to