MySqlConnection.GetSchemaCollectionAsync Method (String, String[])

MySQL Connector/Net

MySqlConnectionGetSchemaCollectionAsync Method (String, String)
Async version of GetSchemaCollection

Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.9.9
Syntax
public Task<MySqlSchemaCollection> GetSchemaCollectionAsync(
	string collectionName,
	string[] restrictionValues
)
Public Function GetSchemaCollectionAsync ( 
	collectionName As String,
	restrictionValues As String()
) As Task(Of MySqlSchemaCollection)
public:
Task<MySqlSchemaCollection^>^ GetSchemaCollectionAsync(
	String^ collectionName, 
	array<String^>^ restrictionValues
)
member GetSchemaCollectionAsync : 
        collectionName : string * 
        restrictionValues : string[] -> Task<MySqlSchemaCollection> 

Parameters

collectionName
Type: SystemString
Name of the collection
restrictionValues
Type: SystemString
Values to restrict

Return Value

Type: TaskMySqlSchemaCollection
A schema collection
See Also