次の方法で共有


RelatedObjectQuery クラス

WQL ASSOCIATORS OF データ クエリを表します。インスタンス クエリとスキーマ クエリの両方に使用できます。

この型のすべてのメンバの一覧については、RelatedObjectQuery メンバ を参照してください。

System.Object
   System.Management.ManagementQuery
      System.Management.ObjectQuery
         System.Management.WqlObjectQuery
            System.Management.RelatedObjectQuery

Public Class RelatedObjectQuery
   Inherits WqlObjectQuery
[C#]
public class RelatedObjectQuery : WqlObjectQuery
[C++]
public __gc class RelatedObjectQuery : public WqlObjectQuery
[JScript]
public class RelatedObjectQuery extends WqlObjectQuery

スレッドセーフ

この型の public static (Visual Basicでは Shared) のすべてのメンバは、マルチスレッド操作で安全に使用できます。インスタンスのメンバの場合は、スレッドセーフであるとは限りません。

使用例

 
using System;
using System.Management;

// This sample demonstrates how to query all instances associated
// with Win32_LogicalDisk='C:'.

class Sample_RelatedObjectQuery
{
    public static int Main(string[] args) {

        //This query requests all objects related to the 'C:' drive.
        RelatedObjectQuery relatedQuery =
            new RelatedObjectQuery("win32_logicaldisk='c:'");
        ManagementObjectSearcher searcher =
            new ManagementObjectSearcher(relatedQuery);
    
        foreach (ManagementObject relatedObject in searcher.Get()) {
            Console.WriteLine(relatedObject.ToString());
        }
 
        return 0;
    }
}
   
[Visual Basic] 
Imports System
Imports System.Management

' This sample demonstrates how to query all instances associated
' with Win32_LogicalDisk='C:'.

Class Sample_RelatedObjectQuery
    Overloads Public Shared Function Main(args() As String) As Integer
 
        'This query requests all objects related to the 'C:' drive.
        Dim relatedQuery As New RelatedObjectQuery("win32_logicaldisk='c:'")
        Dim searcher As New ManagementObjectSearcher(relatedQuery)
   
        Dim relatedObject As ManagementObject
        For Each relatedObject In  searcher.Get()
            Console.WriteLine(relatedObject.ToString())
        Next relatedObject

        Return 0
    End Function
End Class
   

[C++, JScript] C++ および JScript のサンプルはありません。Visual Basic および C# のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

名前空間: System.Management

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

アセンブリ: System.Management (System.Management.dll 内)

参照

RelatedObjectQuery メンバ | System.Management 名前空間