iBATIS.NET Class Library DataMapper V1.6.1, DataAccess V1.9.1

Resources.TypeForName Method 

NOTE: This method is now obsolete.

Use IBatisNet.Common.Utilities.TypeUtils


Resolves the supplied type name into a Type instance.

[Visual Basic]
<Obsolete(Message:="Use IBatisNet.Common.Utilities.TypeUtils", IsError:=False, TypeId:=System.ObsoleteAttribute)>
Public Shared Function TypeForName( _
   ByVal String As String _
) As Type
[C#]
[Obsolete(Message="Use IBatisNet.Common.Utilities.TypeUtils", IsError=False, TypeId=System.ObsoleteAttribute)]
public static Type TypeForName(
   String typeName
);

Parameters

typeName
The (possibly partially assembly qualified) name of a Type.

Return Value

A resolved Type instance.

Exceptions

Exception Type Condition
TypeLoadException If the type cannot be resolved.

See Also

Resources Class | IBatisNet.Common.Utilities Namespace