Skip to content

Commit 51ef22c

Browse files
Fix | ExecuteReaderAsync API return type in ref file (#2372)
1 parent e9cab01 commit 51ef22c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Microsoft.Data.SqlClient/ref/Microsoft.Data.SqlClient.Batch.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public class SqlBatch : System.Data.Common.DbBatch
4444
/// <include file='../../../doc/snippets/Microsoft.Data.SqlClient/SqlBatch.xml' path='docs/members[@name="SqlBatch"]/ExecuteReader/*'/>
4545
public Microsoft.Data.SqlClient.SqlDataReader ExecuteReader() => throw null;
4646
/// <include file='../../../doc/snippets/Microsoft.Data.SqlClient/SqlBatch.xml' path='docs/members[@name="SqlBatch"]/ExecuteReaderAsync/*'/>
47-
public Microsoft.Data.SqlClient.SqlDataReader ExecuteReaderAsync() => throw null;
47+
public System.Threading.Tasks.Task<Microsoft.Data.SqlClient.SqlDataReader> ExecuteReaderAsync() => throw null;
4848
/// <include file='../../../doc/snippets/Microsoft.Data.SqlClient/SqlBatch.xml' path='docs/members[@name="SqlBatch"]/ExecuteScalar/*'/>
4949
public override object ExecuteScalar() => throw null;
5050
/// <include file='../../../doc/snippets/Microsoft.Data.SqlClient/SqlBatch.xml' path='docs/members[@name="SqlBatch"]/ExecuteScalarAsync/*'/>

0 commit comments

Comments
 (0)