Formats and returns a single display qualifier. This method cannot be used when more than one display qualifier must be displayed. Namespace: Microsoft.ConfigurationManagement.AdminConsole
Assembly: Microsoft.ConfigurationManagement.ManagementProvider (in microsoft.configurationmanagement.managementprovider.dll)

Usage

Visual Basic
Dim sender As Object
Dim resultObject As IResultObject
Dim propertyName As String
Dim returnValue As String

returnValue = ResultObjectDisplayHelpers.NalDisplayQualifiersSingleDisplayString(sender, resultObject, propertyName)

Syntax

Visual Basic
Public Shared Function NalDisplayQualifiersSingleDisplayString ( _
		sender As Object, _
		resultObject As IResultObject, _
		propertyName As String _
) As String
C#
public static string NalDisplayQualifiersSingleDisplayString (
		Object sender,
		IResultObject resultObject,
		string propertyName
)
C++
public:
static String^ NalDisplayQualifiersSingleDisplayString (
		Object^ sender, 
		IResultObject^ resultObject, 
		String^ propertyName
)
J#
public static String NalDisplayQualifiersSingleDisplayString (
		Object sender, 
		IResultObject resultObject, 
		String propertyName
)
JScript
public static function NalDisplayQualifiersSingleDisplayString (
		sender : Object, 
		resultObject : IResultObject, 
		propertyName : String
) : String

Parameters

sender

[in] System.Object instance that indicates the sender of an event notifying that the display qualifier string is needed.

resultObject

[in] IResultObject interface for getting and setting result object properties.

propertyName

[in] Name of the property.

Return Value

Display qualifier string.

Exceptions

Exception type Condition
ArgumentNullException

The resultObject parameter cannot be null.

ArgumentException

The propertyName parameter cannot be null or an empty string.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Server 2003, Windows Vista

Target Platforms

Windows Server 2003,Windows Vista

See Also