Skip to content

Commit

Permalink
Correct some missing documentation
Browse files Browse the repository at this point in the history
Missing tag headings
  • Loading branch information
H-Yeo committed Feb 13, 2024
1 parent 1cc876e commit f6c994f
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -110,8 +110,9 @@ public class SqlBatchCommandCollection : System.Data.Common.DbBatchCommandCollec
public override bool Remove(System.Data.Common.DbBatchCommand item) => throw null;
/// <inheritdoc />
public override void RemoveAt(int index) => throw null;
/// <include file='../../../doc/snippets/Microsoft.Data.SqlClient/SqlBatchCommandCollection.xml' path='docs/members[@name="SqlBatchCommandCollection"]/this1/*'/>
Microsoft.Data.SqlClient.SqlBatchCommand System.Collections.Generic.IList<SqlBatchCommand>.this[int index] { get => throw null; set { } }
/// <include file='../../../doc/snippets/Microsoft.Data.SqlClient/SqlBatchCommandCollection.xml' path='docs/members[@name="SqlBatchCommandCollection"]/this/*'/>
/// <include file='../../../doc/snippets/Microsoft.Data.SqlClient/SqlBatchCommandCollection.xml' path='docs/members[@name="SqlBatchCommandCollection"]/this2/*'/>
public new Microsoft.Data.SqlClient.SqlBatchCommand this[int index] { get => throw null; set { } }
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() => throw null;
/// <include file='../../../doc/snippets/Microsoft.Data.SqlClient/SqlBatchCommandCollection.xml' path='docs/members[@name="SqlBatchCommandCollection"]/GetBatchCommand/*'/>
Expand Down

0 comments on commit f6c994f

Please sign in to comment.