Skip to content

Commit

Permalink
Move Api definition to NetCoreApp
Browse files Browse the repository at this point in the history
  • Loading branch information
Galaktionov_v committed Nov 29, 2018
1 parent d3440c0 commit 860ef7c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,15 @@ public sealed partial class SqlConnectionStringBuilder : System.Data.Common.DbCo
public PoolBlockingPeriod PoolBlockingPeriod { get { throw null; } set { } }
}

public sealed partial class SqlCommand : System.Data.Common.DbCommand, System.ICloneable
{
public System.IAsyncResult BeginExecuteReader() { throw null; }
public System.IAsyncResult BeginExecuteReader(System.AsyncCallback callback, object stateObject) { throw null; }
public System.IAsyncResult BeginExecuteReader(System.AsyncCallback callback, object stateObject, System.Data.CommandBehavior behavior) { throw null; }
public System.IAsyncResult BeginExecuteReader(System.Data.CommandBehavior behavior) { throw null; }
public System.Data.SqlClient.SqlDataReader EndExecuteReader(System.IAsyncResult asyncResult) { throw null; }
}

}

namespace System.Data.SqlTypes
Expand Down
5 changes: 0 additions & 5 deletions src/System.Data.SqlClient/ref/System.Data.SqlClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -425,11 +425,6 @@ public override void Cancel() { }
public System.IAsyncResult BeginExecuteXmlReader() { throw null; }
public System.IAsyncResult BeginExecuteXmlReader(System.AsyncCallback callback, object stateObject) { throw null; }
public System.Xml.XmlReader EndExecuteXmlReader(System.IAsyncResult asyncResult) { throw null; }
public System.IAsyncResult BeginExecuteReader() { throw null; }
public System.IAsyncResult BeginExecuteReader(System.AsyncCallback callback, object stateObject) { throw null; }
public System.IAsyncResult BeginExecuteReader(System.AsyncCallback callback, object stateObject, System.Data.CommandBehavior behavior) { throw null; }
public System.IAsyncResult BeginExecuteReader(System.Data.CommandBehavior behavior) { throw null; }
public System.Data.SqlClient.SqlDataReader EndExecuteReader(System.IAsyncResult asyncResult) { throw null; }
public override void Prepare() { }
public System.Data.Sql.SqlNotificationRequest Notification { get { throw null; } set { } }
public void ResetCommandTimeout() { }
Expand Down

0 comments on commit 860ef7c

Please sign in to comment.