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

Property Value

A ConnectionInfos collection that contains ConnectionInfo objects.

Remarks

Updated sample code:17 July 2006

Example

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

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

Change History

Release

History

17 July 2006

Changed content:
  • Modified code sample.