Skip to content

Commit 1662ac0

Browse files
committed
Make internal property non-public.
This was added in dd853ff.
1 parent a77db10 commit 1662ac0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/MySqlConnector/MySql.Data.MySqlClient/MySqlBatchCommand.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,13 @@ public MySqlBatchCommand(string? commandText)
1818

1919
public string? CommandText { get; set; }
2020
public CommandType CommandType { get; set; }
21-
public bool AllowUserVariables => false;
2221
public CommandBehavior CommandBehavior { get; set; }
2322
public int RecordsAffected { get; set; }
2423

2524
public MySqlParameterCollection Parameters => m_parameterCollection ??= new MySqlParameterCollection();
2625

26+
bool IMySqlCommand.AllowUserVariables => false;
27+
2728
MySqlParameterCollection? IMySqlCommand.RawParameters => m_parameterCollection;
2829

2930
MySqlConnection? IMySqlCommand.Connection => Batch?.Connection;

0 commit comments

Comments
 (0)