<PackageReference Include="System.Data.SqlClient" Version="4.5.0-rc1" />

SqlDataReader

using System.Collections; using System.Collections.ObjectModel; using System.Data.Common; using System.Data.SqlTypes; using System.IO; using System.Threading; using System.Threading.Tasks; using System.Xml; namespace System.Data.SqlClient { public class SqlDataReader : DbDataReader, IDbColumnSchemaGenerator, IDisposable { protected SqlConnection Connection { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } } public override int Depth { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } } public override int FieldCount { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } } public override bool HasRows { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } } public override bool IsClosed { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } } public override object this[int i] { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } } public override object this[string name] { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } } public override int RecordsAffected { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } } public override int VisibleFieldCount { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } } internal SqlDataReader() { } public override bool GetBoolean(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override byte GetByte(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override long GetBytes(int i, long dataIndex, byte[] buffer, int bufferIndex, int length) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override char GetChar(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override long GetChars(int i, long dataIndex, char[] buffer, int bufferIndex, int length) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public ReadOnlyCollection<DbColumn> GetColumnSchema() { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override string GetDataTypeName(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override DateTime GetDateTime(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public virtual DateTimeOffset GetDateTimeOffset(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override decimal GetDecimal(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override double GetDouble(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override IEnumerator GetEnumerator() { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override Type GetFieldType(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override Task<T> GetFieldValueAsync<T>(int i, CancellationToken cancellationToken) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override T GetFieldValue<T>(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override float GetFloat(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override Guid GetGuid(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override short GetInt16(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override int GetInt32(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override long GetInt64(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override string GetName(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override int GetOrdinal(string name) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override Type GetProviderSpecificFieldType(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override object GetProviderSpecificValue(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override int GetProviderSpecificValues(object[] values) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override DataTable GetSchemaTable() { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public virtual SqlBinary GetSqlBinary(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public virtual SqlBoolean GetSqlBoolean(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public virtual SqlByte GetSqlByte(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public virtual SqlBytes GetSqlBytes(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public virtual SqlChars GetSqlChars(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public virtual SqlDateTime GetSqlDateTime(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public virtual SqlDecimal GetSqlDecimal(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public virtual SqlDouble GetSqlDouble(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public virtual SqlGuid GetSqlGuid(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public virtual SqlInt16 GetSqlInt16(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public virtual SqlInt32 GetSqlInt32(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public virtual SqlInt64 GetSqlInt64(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public virtual SqlMoney GetSqlMoney(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public virtual SqlSingle GetSqlSingle(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public virtual SqlString GetSqlString(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public virtual object GetSqlValue(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public virtual int GetSqlValues(object[] values) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public virtual SqlXml GetSqlXml(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override Stream GetStream(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override string GetString(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override TextReader GetTextReader(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public virtual TimeSpan GetTimeSpan(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override object GetValue(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override int GetValues(object[] values) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public virtual XmlReader GetXmlReader(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } protected internal bool IsCommandBehavior(CommandBehavior condition) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override bool IsDBNull(int i) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override Task<bool> IsDBNullAsync(int i, CancellationToken cancellationToken) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override bool NextResult() { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override Task<bool> NextResultAsync(CancellationToken cancellationToken) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override bool Read() { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public override Task<bool> ReadAsync(CancellationToken cancellationToken) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } } }