Initializes an instance of the DataSourceAttribute class using an array of table names and the name of the data source provider.
Namespace:  Microsoft.VisualStudio.TestTools.WebTesting
Assembly:  Microsoft.VisualStudio.QualityTools.WebTestFramework (in Microsoft.VisualStudio.QualityTools.WebTestFramework.dll)
Syntax
'Declaration
Public Sub New ( _
    dataSourceName As String, _
    providerName As String, _
    connectionString As String, _
    ParamArray tableNames As String() _
)
public DataSourceAttribute(
    string dataSourceName,
    string providerName,
    string connectionString,
    params string[] tableNames
)
public:
DataSourceAttribute(
    String^ dataSourceName, 
    String^ providerName, 
    String^ connectionString, 
    ... array<String^>^ tableNames
)
new : 
        dataSourceName:string * 
        providerName:string * 
        connectionString:string * 
        tableNames:string[] -> DataSourceAttribute
public function DataSourceAttribute(
    dataSourceName : String, 
    providerName : String, 
    connectionString : String, 
    ... tableNames : String[]
)
Parameters
- dataSourceName 
 Type: String- The name of the data source. 
- providerName 
 Type: String- The name of the data source provider. 
- connectionString 
 Type: String- The connection string to access the data source. 
- tableNames 
 Type: array<String[]- The table names within the data source that contain information to be accessed. 
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.