Update Reference Sources to .NET Framework 4.6.1
[mono.git] / mcs / class / referencesource / System.Xml / System / Xml / BinaryXml / XmlBinaryReaderAsync.cs
1 //------------------------------------------------------------------------------
2 // <copyright file="XmlBinaryWriter.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 // <owner current="true" primary="true">[....]</owner>
6 //------------------------------------------------------------------------------
7
8 using System;
9 using System.Collections;
10 using System.Collections.Generic;
11 using System.IO;
12 using System.Text;
13 using System.Diagnostics;
14 using System.Globalization;
15 using System.Xml.Schema;
16 using System.Threading.Tasks;
17
18 namespace System.Xml {
19
20     internal sealed partial class XmlSqlBinaryReader : XmlReader, IXmlNamespaceResolver {
21
22         public override Task<string> GetValueAsync() {
23             throw new NotSupportedException();
24         }
25
26         public override Task<bool> ReadAsync() {
27             throw new NotSupportedException();
28         }
29
30         public override Task<object> ReadContentAsObjectAsync() {
31             throw new NotSupportedException();
32         }
33
34         public override Task<object> ReadContentAsAsync(Type returnType, IXmlNamespaceResolver namespaceResolver) {
35             throw new NotSupportedException();
36         }
37
38         public override Task<XmlNodeType> MoveToContentAsync() {
39             throw new NotSupportedException();
40         }
41
42         public override Task<string> ReadContentAsStringAsync() {
43             throw new NotSupportedException();
44         }
45
46         public override Task<int> ReadContentAsBase64Async(byte[] buffer, int index, int count) {
47             throw new NotSupportedException();
48         }
49
50         public override Task<object> ReadElementContentAsAsync(Type returnType, IXmlNamespaceResolver namespaceResolver) {
51             throw new NotSupportedException();
52         }
53
54         public override Task<object> ReadElementContentAsObjectAsync() {
55             throw new NotSupportedException();
56         }
57
58         public override Task<int> ReadElementContentAsBinHexAsync(byte[] buffer, int index, int count) {
59             throw new NotSupportedException();
60         }
61
62         public override Task<string> ReadInnerXmlAsync() {
63             throw new NotSupportedException();
64         }
65
66         public override Task<string> ReadOuterXmlAsync() {
67             throw new NotSupportedException();
68         }
69
70         public override Task<int> ReadValueChunkAsync(char[] buffer, int index, int count) {
71             throw new NotSupportedException();
72         }
73
74         public override Task SkipAsync() {
75             throw new NotSupportedException();
76         }
77
78         public override Task<string> ReadElementContentAsStringAsync() {
79             throw new NotSupportedException();
80         }
81
82     }
83 }