ManagementObjectSearcher.Get メソッド ()
アセンブリ: System.Management (system.management.dll 内)

Dim instance As ManagementObjectSearcher Dim returnValue As ManagementObjectCollection returnValue = instance.Get
指定されたクエリに対応するオブジェクトを格納している ManagementObjectCollection。


特定のクエリ、スコープ、および列挙体オプションを使用して ManagementObjectSearcher クラスの新しいインスタンスを初期化する例を次に示します。
Imports System Imports System.Management Public Class Sample Public Overloads Shared Function _ Main(ByVal args() As String) As Integer Dim s As New ManagementObjectSearcher( _ "root\MyApp", _ "SELECT * FROM Win32_Service", _ New EnumerationOptions( _ Nothing, System.TimeSpan.MaxValue, 1, _ True, False, True, True, False, _ True, True)) For Each service As ManagementObject In s.Get() 'show the instance Console.WriteLine(service.ToString()) Next End Function 'Main End Class 'Sample
using System; using System.Management; public class Sample { public static void Main(string[] args) { ManagementObjectSearcher s = new ManagementObjectSearcher( "root\\CIMV2", "SELECT * FROM Win32_Service", new EnumerationOptions( null, System.TimeSpan.MaxValue, 1, true, false, true, true, false, true, true)); foreach (ManagementObject service in s.Get()) { // show the service Console.WriteLine(service.ToString()); } } }


Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


ManagementObjectSearcher.Get メソッド (ManagementOperationObserver)
アセンブリ: System.Management (system.management.dll 内)

Dim instance As ManagementObjectSearcher Dim watcher As ManagementOperationObserver instance.Get(watcher)



Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


ManagementObjectSearcher.Get メソッド
Weblioに収録されているすべての辞書からManagementObjectSearcher.Getを検索する場合は、下記のリンクをクリックしてください。

- ManagementObjectSearcher.Getのページへのリンク