ManagementBaseObject.SystemProperties プロパティとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > ManagementBaseObject.SystemProperties プロパティの意味・解説 

ManagementBaseObject.SystemProperties プロパティ

管理オブジェクトWMI (Windows Management Instrumentation) システム プロパティコレクション取得します (たとえば、クラス名サーバー、および名前空間)。WMI システム プロパティ名は、"__" で始まります

名前空間: System.Management
アセンブリ: System.Management (system.management.dll 内)
構文構文

Public Overridable ReadOnly
 Property SystemProperties As PropertyDataCollection
Dim instance As ManagementBaseObject
Dim value As PropertyDataCollection

value = instance.SystemProperties
public virtual PropertyDataCollection SystemProperties { get;
 }
public:
virtual property PropertyDataCollection^ SystemProperties {
    PropertyDataCollection^ get ();
}
/** @property */
public PropertyDataCollection get_SystemProperties ()
public function get SystemProperties
 () : PropertyDataCollection

プロパティ
管理オブジェクトシステム プロパティ格納している PropertyDataCollection を返します

解説解説
使用例使用例

SystemProperties プロパティ使用してWin32_Process クラスシステム プロパティの名前および値を表示する例を次に示しますWin32_Process クラス詳細については、MSDN ライブラリ (http://msdn.microsoft.com/library/ja) で Windows Management Instrumentation に関するドキュメント参照してください

Imports System
Imports System.Management


Class Sample
    Public Overloads Shared
 Function _
        Main(ByVal args() As String)
 As Integer

        ' Get the WMI class
        Dim processClass As New
 ManagementClass( _
            "Win32_Process")

        ' Get the system properties for the class
        Dim properties As PropertyDataCollection
        properties = processClass.SystemProperties

        For Each p As PropertyData
 In properties

            Console.WriteLine(p.Name)
            Console.WriteLine(p.Value)
            Console.WriteLine()

        Next
    End Function
End Class
using System;
using System.Management;

public class Sample 
{    
    public static void Main()
 
    {

        // Get the WMI class
        ManagementClass processClass = 
            new ManagementClass("Win32_Process");

        // Get the system properties for the class
        PropertyDataCollection properties =
            processClass.SystemProperties;

        // display the properties
        foreach (PropertyData p in properties)
        {
            Console.WriteLine(p.Name);
            Console.WriteLine(p.Value);
            Console.WriteLine();

        }
    }
}
.NET Framework のセキュリティ.NET Frameworkセキュリティ
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
ManagementBaseObject クラス
ManagementBaseObject メンバ
System.Management 名前空間


このページでは「.NET Framework クラス ライブラリ リファレンス」からManagementBaseObject.SystemProperties プロパティを検索した結果を表示しています。
Weblioに収録されているすべての辞書からManagementBaseObject.SystemProperties プロパティを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からManagementBaseObject.SystemProperties プロパティ を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

ManagementBaseObject.SystemProperties プロパティのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



ManagementBaseObject.SystemProperties プロパティのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS