MySqlConnection.GetSchemaCollectionAsync Method (String, String[], CancellationToken)

MySQL Connector/Net

MySqlConnectionGetSchemaCollectionAsync Method (String, String, CancellationToken)

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

Parameters

collectionName
Type: SystemString
restrictionValues
Type: SystemString
cancellationToken
Type: System.ThreadingCancellationToken

Return Value

Type: TaskMySqlSchemaCollection
See Also