GetSchemaCollectionAsync Method

MySQL Connector.Net

Collapse image Expand Image Copy image CopyHover image
Async version of GetSchemaCollection

Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.8.4.0

Syntax

C#
public Task<MySqlSchemaCollection> GetSchemaCollectionAsync(
	string collectionName,
	string[] restrictionValues
)
Visual Basic
Public Function GetSchemaCollectionAsync ( _
	collectionName As String, _
	restrictionValues As String() _
) As Task(Of MySqlSchemaCollection)
Visual C++
public:
Task<MySqlSchemaCollection^>^ GetSchemaCollectionAsync(
	String^ collectionName, 
	array<String^>^ restrictionValues
)

Parameters

collectionName
Type: System..::..String
Name of the collection
restrictionValues
Type: array<System..::..String>[]()[][]
Values to restrict

Return Value

A schema collection

See Also