MethodDataCollection.MethodDataEnumerator 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
MethodData의 MethodDataCollection 개체에 대한 열거자를 나타냅니다.
public: ref class MethodDataCollection::MethodDataEnumerator : System::Collections::IEnumerator
public class MethodDataCollection.MethodDataEnumerator : System.Collections.IEnumerator
type MethodDataCollection.MethodDataEnumerator = class
interface IEnumerator
Public Class MethodDataCollection.MethodDataEnumerator
Implements IEnumerator
- 상속
-
MethodDataCollection.MethodDataEnumerator
- 구현
예제
다음 예제에서는 열거의 메서드를 통해 합니다 Win32_LogicalDisk 클래스 하 고 표시 합니다.
using System;
using System.Management;
// This sample demonstrates how to
// enumerate all methods in
// Win32_LogicalDisk class using the
// MethodDataEnumerator object.
class Sample_MethodDataEnumerator
{
public static int Main(string[] args)
{
ManagementClass diskClass =
new ManagementClass("win32_logicaldisk");
MethodDataCollection.MethodDataEnumerator diskEnumerator =
diskClass.Methods.GetEnumerator();
while(diskEnumerator.MoveNext())
{
MethodData method = diskEnumerator.Current;
Console.WriteLine("Method = " + method.Name);
}
return 0;
}
}
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
속성
Current |
MethodDataCollection 열거형의 현재 MethodData를 반환합니다. |
메서드
Equals(Object) |
지정된 개체가 현재 개체와 같은지 확인합니다. (다음에서 상속됨 Object) |
GetHashCode() |
기본 해시 함수로 작동합니다. (다음에서 상속됨 Object) |
GetType() |
현재 인스턴스의 Type을 가져옵니다. (다음에서 상속됨 Object) |
MemberwiseClone() |
현재 Object의 단순 복사본을 만듭니다. (다음에서 상속됨 Object) |
MoveNext() |
MethodDataCollection 열거형의 다음 요소로 이동합니다. |
Reset() |
열거자를 MethodDataCollection 열거형의 시작 부분을 가리키도록 다시 설정합니다. |
ToString() |
현재 개체를 나타내는 문자열을 반환합니다. (다음에서 상속됨 Object) |
명시적 인터페이스 구현
IEnumerator.Current |
컬렉션의 현재 개체를 가져옵니다. |
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET