GetWrappedStream() 개인적인 메소드

private GetWrappedStream ( ) : Stream
리턴 Stream
예제 #1
0
 public InputStreamReader(InputStream s) : base(s.GetWrappedStream())
 {
 }
예제 #2
0
 public InputStreamReader(InputStream s, string encoding) : base(s.GetWrappedStream(), Encoding.GetEncoding(encoding))
 {
 }
예제 #3
0
 public InputStreamReader(InputStream s, Encoding e) : base(s.GetWrappedStream(), e)
 {
 }
예제 #4
0
 public InputStreamReader(InputStream s)
     : base(s.GetWrappedStream ())
 {
 }
예제 #5
0
 public InputStreamReader(InputStream s, Encoding e)
     : base(s.GetWrappedStream (), e)
 {
 }
예제 #6
0
 public InputStreamReader(InputStream s, string encoding)
     : base(s.GetWrappedStream (), Encoding.GetEncoding (encoding))
 {
 }
예제 #7
0
		public ObjectInputStream (InputStream s)
		{
			_reader = new BinaryReader (s.GetWrappedStream ());
		}
예제 #8
0
 public ObjectInputStream(InputStream s)
 {
     _reader = new BinaryReader(s.GetWrappedStream());
 }