update sharpcifs

This commit is contained in:
Luke Pulverenti
2017-07-07 23:12:21 -04:00
parent a30e22c3a2
commit 0d10dfe471
221 changed files with 23704 additions and 25614 deletions

View File

@@ -4,23 +4,22 @@ using System.Text;
namespace SharpCifs.Util.Sharpen
{
public class InputStreamReader : StreamReader
{
{
//Stream(string path) constructor deleted
//protected InputStreamReader (string file) : base(file)
//{
//}
//protected InputStreamReader (string file) : base(file)
//{
//}
public InputStreamReader(InputStream s) : base(s.GetWrappedStream())
{
}
public InputStreamReader (InputStream s) : base(s.GetWrappedStream ())
{
}
public InputStreamReader(InputStream s, string encoding)
: base(s.GetWrappedStream(), Encoding.GetEncoding(encoding))
{
}
public InputStreamReader (InputStream s, string encoding) : base(s.GetWrappedStream (), Encoding.GetEncoding (encoding))
{
}
public InputStreamReader(InputStream s, Encoding e) : base(s.GetWrappedStream(), e)
{
}
}
public InputStreamReader (InputStream s, Encoding e) : base(s.GetWrappedStream (), e)
{
}
}
}