Share via


DataProviderObjectFactory.GetType Method (String)

Retrieves a type definition given a type name.

Namespace:  Microsoft.VisualStudio.Data
Assembly:  Microsoft.VisualStudio.Data (in Microsoft.VisualStudio.Data.dll)

Syntax

'Declaration
Public Overridable Function GetType ( _
    typeName As String _
) As Type
public virtual Type GetType(
    string typeName
)
public:
virtual Type^ GetType(
    String^ typeName
)
abstract GetType : 
        typeName:string -> Type 
override GetType : 
        typeName:string -> Type 
public function GetType(
    typeName : String
) : Type

Parameters

Return Value

Type: System.Type
Returns a type object instance.

Remarks

This method allows DDEX providers to customize resolution of types referenced from dynamic locations such as XML files. The base class implementation tries to locate a comma separating the type name from its qualifying assembly, and if found, calls the GetAssembly method with the assembly qualifier and, if found, tries to retrieve the type from this assembly. Otherwise it calls GetAssembly with an empty string and, if found, tries to get the type from this assembly. Finally if the type is still not found, it calls the standard GetType method and returns the result of this call.

.NET Framework Security

See Also

Reference

DataProviderObjectFactory Class

GetType Overload

Microsoft.VisualStudio.Data Namespace