ManagementBaseObject.GetText Method (System.Management)

Switch View :
ScriptFree
.NET Framework Class Library
ManagementBaseObject.GetText Method

Returns a textual representation of the object in the specified format.

Namespace:  System.Management
Assembly:  System.Management (in System.Management.dll)
Syntax

Visual Basic
Public Function GetText ( _
	format As TextFormat _
) As String
C#
public string GetText(
	TextFormat format
)
Visual C++
public:
String^ GetText(
	TextFormat format
)
F#
member GetText : 
        format:TextFormat -> string 

Parameters

format
Type: System.Management.TextFormat
The requested textual format.

Return Value

Type: System.String
The textual representation of the object in the specified format.
Remarks

Currently, the only format that WMI supports is Managed Object Format (MOF). In the future, other formats will be supported, such as Extensible Markup Language (XML).

.NET Framework Security

Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.

Examples

The following example displays the MOF code for the Win32_Process class by using the GetText method. For more information about the Win32_Process class, see the Windows Management Instrumentation documentation in the MSDN Library at http://msdn.microsoft.com/library.

Visual Basic

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")
        processClass.Options.UseAmendedQualifiers = True

        Console.WriteLine( _
            processClass.GetText( _
            TextFormat.Mof))

    End Function
End Class


C#

using System;
using System.Management;

public class Sample 
{    
    public static void Main() 
    {

        // Get the WMI class
        ManagementClass processClass = 
            new ManagementClass("Win32_Process");
        processClass.Options.UseAmendedQualifiers = true;

        Console.WriteLine(
            processClass.GetText(
            TextFormat.Mof));
    }
}


Version Information

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1
.NET Framework Security

Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also

Reference