This documentation is archived and is not being maintained.
MethodDataCollection.MethodDataEnumerator Class
Visual Studio 2008
Represents the enumerator for MethodData objects in the MethodDataCollection.
Assembly: System.Management (in System.Management.dll)
The following example enumerates through the methods in the Win32_LogicalDisk class and displays them.
Imports System Imports System.Management ' This sample demonstrates how to ' enumerate all methods in ' Win32_LogicalDisk class using ' MethodDataEnumerator object. Class Sample_MethodDataEnumerator Public Overloads Shared Function _ Main(ByVal args() As String) As Integer Dim diskClass As New _ ManagementClass("win32_logicaldisk") Dim diskEnumerator As _ MethodDataCollection.MethodDataEnumerator = _ diskClass.Methods.GetEnumerator() While diskEnumerator.MoveNext() Dim method As MethodData = _ diskEnumerator.Current Console.WriteLine("Method = " & method.Name) End While Return 0 End Function End Class
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: