Application.ConnectionInfos Property

Returns a ConnectionInfos collection that contains ConnectionInfo 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 ConnectionInfos As ConnectionInfos
public ConnectionInfos ConnectionInfos { get; }
public:
property ConnectionInfos^ ConnectionInfos {
    ConnectionInfos^ get ();
}
/** @property */
public ConnectionInfos get_ConnectionInfos ()
public function get ConnectionInfos () : ConnectionInfos

Eigenschaftswert

A ConnectionInfos collection that contains ConnectionInfo objects.

Hinweise

Aktualisierter Beispielcode:17. Juli 2006

Beispiel

The following code example shows how to enumerate the available connection managers.

class ApplicationTests1
    {
        static void Main(string[] args)
        {
          Application app = new Application();

          ConnectionInfos cis = app.ConnectionInfos;
          foreach (ConnectionInfo x in cis)
              Console.WriteLine("Connection Type" + x.ConnectionType);
        }
    }
}
class ApplicationTests1
        Sub Main(ByVal args() As String)
          Dim app As Application =  New Application() 
 
          Dim cis As ConnectionInfos =  app.ConnectionInfos 
          For Each x As ConnectionInfo In cis
              Console.WriteLine("Connection Type" + x.ConnectionType)
          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