File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ using System ;
1
2
using System . Collections . Generic ;
2
3
using System . IO ;
3
4
using System . Linq ;
@@ -97,6 +98,36 @@ public async Task<string> PeekLineAsync()
97
98
_buffer . Enqueue ( line ) ;
98
99
return line ;
99
100
}
101
+
102
+ public override int Read ( )
103
+ {
104
+ throw new NotImplementedException ( ) ;
105
+ }
106
+
107
+ public override int Read ( char [ ] buffer , int index , int count )
108
+ {
109
+ throw new NotImplementedException ( ) ;
110
+ }
111
+ public override Task < int > ReadAsync ( char [ ] buffer , int index , int count )
112
+ {
113
+ throw new NotImplementedException ( ) ;
114
+ }
115
+ public override int ReadBlock ( char [ ] buffer , int index , int count )
116
+ {
117
+ throw new NotImplementedException ( ) ;
118
+ }
119
+ public override Task < int > ReadBlockAsync ( char [ ] buffer , int index , int count )
120
+ {
121
+ throw new NotImplementedException ( ) ;
122
+ }
123
+ public override string ReadToEnd ( )
124
+ {
125
+ throw new NotImplementedException ( ) ;
126
+ }
127
+ public override Task < string > ReadToEndAsync ( )
128
+ {
129
+ throw new NotImplementedException ( ) ;
130
+ }
100
131
}
101
132
}
102
133
}
You can’t perform that action at this time.
0 commit comments