Formats and returns the user name. 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.GetUserNameFromPath(sender, resultObject, propertyName)

Syntax

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

Parameters

sender

[in] System.Object instance that indicates the sender of an event notifying that the user name is needed.

resultObject

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

propertyName

[in] Name of the property.

Return Value

User name 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