Application.DataTypeInfos Property
Returns a DataTypeInfos collection that contains DataTypeInfo objects. This property is read-only.
Namespace: Microsoft.SqlServer.Dts.Runtime
Assembly: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)
Syntax
'Declaration
Public ReadOnly Property DataTypeInfos As DataTypeInfos
public DataTypeInfos DataTypeInfos { get; }
public:
property DataTypeInfos^ DataTypeInfos {
DataTypeInfos^ get ();
}
/** @property */
public DataTypeInfos get_DataTypeInfos ()
public function get DataTypeInfos () : DataTypeInfos
Property Value
A DataTypeInfos collection that contains DataTypeInfo objects.
Example
The following code example shows how to enumerate the available data types.
class ApplicationTests1
{
static void Main(string[] args)
{
DataTypeInfos dti = new Application().DataTypeInfos;
foreach (DataTypeInfo x in dti)
Console.WriteLine(x.TypeName + " , " + x.TypeEnumName);
}
}
class ApplicationTests1
Sub Main(ByVal args() As String)
Dim dti As DataTypeInfos = New Application().DataTypeInfos
For Each x As DataTypeInfo In dti
Console.WriteLine(x.TypeName + " , " + x.TypeEnumName)
Next
End Sub
End Class
Thread Safety
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
Development Platforms
For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server 2005.
Target Platforms
For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server 2005.
See Also
Reference
Application Class
Application Members
Microsoft.SqlServer.Dts.Runtime Namespace