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.
51
51
Returns schema information for the data source of this [ ` MySqlConnection ` ] ( ../../MySqlConnectionType/ ) .
52
52
53
53
``` csharp
54
- public override DataTable GetSchema (string collectionName , string [] restrictions )
54
+ public override DataTable GetSchema (string collectionName , string [] restrictionValues )
55
55
```
56
56
57
57
| parameter | description |
58
58
| --- | --- |
59
59
| 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. |
61
61
62
62
## Return Value
63
63
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
66
66
Asynchronously returns schema information for the data source of this [ ` MySqlConnection ` ] ( ../../MySqlConnectionType/ ) .
67
67
68
68
``` csharp
69
- public Task < DataTable > GetSchemaAsync (string collectionName , string [] restrictions ,
69
+ public Task < DataTable > GetSchemaAsync (string collectionName , string [] restrictionValues ,
70
70
CancellationToken cancellationToken = default (CancellationToken ))
71
71
```
72
72
73
73
| parameter | description |
74
74
| --- | --- |
75
75
| 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. |
77
77
| cancellationToken | A token to cancel the asynchronous operation. |
78
78
79
79
## Return Value
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ title: MySqlConnectionStringBuilder.ContainsKey method
5
5
# MySqlConnectionStringBuilder.ContainsKey method
6
6
7
7
``` csharp
8
- public override bool ContainsKey (string key )
8
+ public override bool ContainsKey (string keyword )
9
9
```
10
10
11
11
## See Also
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ title: MySqlConnectionStringBuilder.Remove method
5
5
# MySqlConnectionStringBuilder.Remove method
6
6
7
7
``` csharp
8
- public override bool Remove (string key )
8
+ public override bool Remove (string keyword )
9
9
```
10
10
11
11
## See Also
You can’t perform that action at this time.
0 commit comments