//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // // [....] //------------------------------------------------------------------------------ using System; using System.Collections; using System.Collections.Generic; using System.IO; using System.Text; using System.Diagnostics; using System.Globalization; using System.Xml.Schema; using System.Threading.Tasks; namespace System.Xml { internal sealed partial class XmlSqlBinaryReader : XmlReader, IXmlNamespaceResolver { public override Task GetValueAsync() { throw new NotSupportedException(); } public override Task ReadAsync() { throw new NotSupportedException(); } public override Task ReadContentAsObjectAsync() { throw new NotSupportedException(); } public override Task ReadContentAsAsync(Type returnType, IXmlNamespaceResolver namespaceResolver) { throw new NotSupportedException(); } public override Task MoveToContentAsync() { throw new NotSupportedException(); } public override Task ReadContentAsStringAsync() { throw new NotSupportedException(); } public override Task ReadContentAsBase64Async(byte[] buffer, int index, int count) { throw new NotSupportedException(); } public override Task ReadElementContentAsAsync(Type returnType, IXmlNamespaceResolver namespaceResolver) { throw new NotSupportedException(); } public override Task ReadElementContentAsObjectAsync() { throw new NotSupportedException(); } public override Task ReadElementContentAsBinHexAsync(byte[] buffer, int index, int count) { throw new NotSupportedException(); } public override Task ReadInnerXmlAsync() { throw new NotSupportedException(); } public override Task ReadOuterXmlAsync() { throw new NotSupportedException(); } public override Task ReadValueChunkAsync(char[] buffer, int index, int count) { throw new NotSupportedException(); } public override Task SkipAsync() { throw new NotSupportedException(); } public override Task ReadElementContentAsStringAsync() { throw new NotSupportedException(); } } }