IDataEnvironment.Connections Property

Definition

Gets a collection of data connections defined in the current design session.

public:
 property System::Collections::ICollection ^ Connections { System::Collections::ICollection ^ get(); };
public System.Collections.ICollection Connections { get; }
member this.Connections : System.Collections.ICollection
Public ReadOnly Property Connections As ICollection

Property Value

A collection of DesignerDataConnection objects representing the data connections available in the current design session.

Remarks

The Connections property returns the set of connections available at design time. Your implementation of the Connections property can return either the list of connections defined in the current Web application, or a list of connections defined at a global level, such as a list of data connections maintained by the design environment.

Each connection in the collection should have a unique connection string. If your collection includes both connections from the application's configuration file and global connections, your implementation must handle the case where connections from the global list and the configuration file have the same connection string. In this case, it is recommended that you eliminate duplicates and use the configuration-file connection only.

Applies to