Gets the name of the source data type.
Namespace: System.Extensions.DataAssembly: System.Extensions (in System.Extensions.dll) Version: 0.0.0.5 (0.0.0.5)
Syntax
C# |
---|
public static string GetDataTypeName(
this IDataRecord reader,
string name
) |
Visual Basic |
---|
<ExtensionAttribute>
Public Shared Function GetDataTypeName (
reader As IDataRecord,
name As String
) As String |
Visual C++ |
---|
public:
[ExtensionAttribute]
static String^ GetDataTypeName(
IDataRecord^ reader,
String^ name
) |
F# |
---|
static member GetDataTypeName :
reader : IDataRecord *
name : string -> string
|
Return Value
Type:
StringThe name of the back-end data type.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IDataRecord. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also