You've already forked linux-packaging-mono
Imported Upstream version 4.6.0.182
Former-commit-id: 439c182e520038bf50777ca2fe684f216ae28552
This commit is contained in:
parent
c911219690
commit
804b15604f
@@ -38,6 +38,8 @@ using Mono.Data.Tds.Protocol;
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Text;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using System.Collections;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
@@ -1426,6 +1428,25 @@ namespace System.Data.SqlClient
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
override public Task<T> GetFieldValueAsync<T> (int i, CancellationToken cancellationToken)
|
||||
{
|
||||
return base.GetFieldValueAsync<T> (i, cancellationToken);
|
||||
}
|
||||
|
||||
override public Stream GetStream (int i)
|
||||
{
|
||||
return base.GetStream (i);
|
||||
}
|
||||
override public TextReader GetTextReader (int i)
|
||||
{
|
||||
return base.GetTextReader (i);
|
||||
}
|
||||
|
||||
override public Task<bool> IsDBNullAsync (int i, CancellationToken cancellationToken)
|
||||
{
|
||||
return base.IsDBNullAsync (i, cancellationToken);
|
||||
}
|
||||
|
||||
#endregion // Methods
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user