Searches the currently loaded assemblies for the specified type. Namespace: Microsoft.ConfigurationManagement.AdminConsole.Common
Assembly: Microsoft.ConfigurationManagement.ManagementProvider (in microsoft.configurationmanagement.managementprovider.dll)

Usage

Visual Basic
Dim type As String
Dim returnValue As Type

returnValue = UtilityClass.FindTypeFromLocalAssemblies(type)

Syntax

Visual Basic
Public Shared Function FindTypeFromLocalAssemblies ( _
		type As String _
) As Type
C#
public static Type FindTypeFromLocalAssemblies (
		string type
)
C++
public:
static Type^ FindTypeFromLocalAssemblies (
		String^ type
)
J#
public static Type FindTypeFromLocalAssemblies (
		String type
)
JScript
public static function FindTypeFromLocalAssemblies (
		type : String
) : Type

Parameters

type

[in] The name of the type.

Return Value

System.Type object that represents the requested type.

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