PropertyDataCollection.PropertyDataEnumerator Класс
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Представляет перечислитель для объектов PropertyData в PropertyDataCollection.
public: ref class PropertyDataCollection::PropertyDataEnumerator : System::Collections::IEnumerator
public class PropertyDataCollection.PropertyDataEnumerator : System.Collections.IEnumerator
type PropertyDataCollection.PropertyDataEnumerator = class
interface IEnumerator
Public Class PropertyDataCollection.PropertyDataEnumerator
Implements IEnumerator
- Наследование
-
PropertyDataCollection.PropertyDataEnumerator
- Реализации
Примеры
В следующем примере выполняется перечисление через свойства класса Win32_LogicalDisk .
using System;
using System.Management;
// This sample demonstrates how to
// enumerate all properties in a
// ManagementObject using the
// PropertyDataEnumerator object.
class Sample_PropertyDataEnumerator
{
public static int Main(string[] args)
{
ManagementObject disk = new
ManagementObject("Win32_LogicalDisk.DeviceID='C:'");
PropertyDataCollection.PropertyDataEnumerator
propertyEnumerator = disk.Properties.GetEnumerator();
while(propertyEnumerator.MoveNext())
{
PropertyData p =
(PropertyData)propertyEnumerator.Current;
Console.WriteLine("Property found: " + p.Name);
}
return 0;
}
}
Imports System.Management
' This sample demonstrates how to
' enumerate all properties in a
' ManagementObject using
' PropertyDataEnumerator object.
Class Sample_PropertyDataEnumerator
Public Overloads Shared Function _
Main(ByVal args() As String) As Integer
Dim disk As New ManagementObject( _
"Win32_LogicalDisk.DeviceID='C:'")
Dim propertyEnumerator As _
PropertyDataCollection.PropertyDataEnumerator _
= disk.Properties.GetEnumerator()
While propertyEnumerator.MoveNext()
Dim p As PropertyData = _
CType(propertyEnumerator.Current, PropertyData)
Console.WriteLine("Property found: " & p.Name)
End While
Return 0
End Function
End Class
Свойства
Current |
Получает текущий элемент PropertyData в перечислении PropertyDataCollection. |
Методы
Equals(Object) |
Определяет, равен ли указанный объект текущему объекту. (Унаследовано от Object) |
GetHashCode() |
Служит хэш-функцией по умолчанию. (Унаследовано от Object) |
GetType() |
Возвращает объект Type для текущего экземпляра. (Унаследовано от Object) |
MemberwiseClone() |
Создает неполную копию текущего объекта Object. (Унаследовано от Object) |
MoveNext() |
Переходит к следующему элементу перечисления PropertyDataCollection. |
Reset() |
Устанавливает перечислитель в начало перечисления PropertyDataCollection. |
ToString() |
Возвращает строку, представляющую текущий объект. (Унаследовано от Object) |
Явные реализации интерфейса
IEnumerator.Current |
Возвращает текущий объект в коллекции. |