File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
docs/content/api/MySqlConnector
MySqlConnectionStringBuilder Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -51,13 +51,13 @@ A DataTable containing schema information.
5151Returns schema information for the data source of this [ ` MySqlConnection ` ] ( ../../MySqlConnectionType/ ) .
5252
5353``` csharp
54- public override DataTable GetSchema (string collectionName , string [] restrictions )
54+ public override DataTable GetSchema (string collectionName , string [] restrictionValues )
5555```
5656
5757| parameter | description |
5858| --- | --- |
5959| collectionName | The name of the schema to return. |
60- | restrictions | The restrictions to apply to the schema; this parameter is currently ignored. |
60+ | restrictionValues | The restrictions to apply to the schema; this parameter is currently ignored. |
6161
6262## Return Value
6363
Original file line number Diff line number Diff line change @@ -66,14 +66,14 @@ The proposed ADO.NET API that this is based on is not finalized; this API may ch
6666Asynchronously returns schema information for the data source of this [ ` MySqlConnection ` ] ( ../../MySqlConnectionType/ ) .
6767
6868``` csharp
69- public Task < DataTable > GetSchemaAsync (string collectionName , string [] restrictions ,
69+ public Task < DataTable > GetSchemaAsync (string collectionName , string [] restrictionValues ,
7070 CancellationToken cancellationToken = default (CancellationToken ))
7171```
7272
7373| parameter | description |
7474| --- | --- |
7575| collectionName | The name of the schema to return. |
76- | restrictions | The restrictions to apply to the schema; this parameter is currently ignored. |
76+ | restrictionValues | The restrictions to apply to the schema; this parameter is currently ignored. |
7777| cancellationToken | A token to cancel the asynchronous operation. |
7878
7979## Return Value
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ title: MySqlConnectionStringBuilder.ContainsKey method
55# MySqlConnectionStringBuilder.ContainsKey method
66
77``` csharp
8- public override bool ContainsKey (string key )
8+ public override bool ContainsKey (string keyword )
99```
1010
1111## See Also
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ title: MySqlConnectionStringBuilder.Remove method
55# MySqlConnectionStringBuilder.Remove method
66
77``` csharp
8- public override bool Remove (string key )
8+ public override bool Remove (string keyword )
99```
1010
1111## See Also
You can’t perform that action at this time.
0 commit comments