Application.ConnectionInfos Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a ConnectionInfos collection that contains ConnectionInfo objects. This property is read-only.
public:
property Microsoft::SqlServer::Dts::Runtime::ConnectionInfos ^ ConnectionInfos { Microsoft::SqlServer::Dts::Runtime::ConnectionInfos ^ get(); };
public Microsoft.SqlServer.Dts.Runtime.ConnectionInfos ConnectionInfos { get; }
member this.ConnectionInfos : Microsoft.SqlServer.Dts.Runtime.ConnectionInfos
Public ReadOnly Property ConnectionInfos As ConnectionInfos
Property Value
A ConnectionInfos collection that contains ConnectionInfo objects.
Examples
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