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
Eigenschaftswert
A DataTypeInfos collection that contains DataTypeInfo objects.
Beispiel
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
Threadsicherheit
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.
Plattformen
Entwicklungsplattformen
Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.
Zielplattforme
Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.
Siehe auch
Verweis
Application Class
Application Members
Microsoft.SqlServer.Dts.Runtime Namespace