SharpCifs.Util.Sharpen.InputStream.Reset C# (CSharp) Method

Reset() public method

public Reset ( ) : void
return void
		public virtual void Reset ()
		{
			if (Wrapped is WrappedSystemStream)
				((WrappedSystemStream)Wrapped).InputStream.Reset ();
			else {
				if (Wrapped == null)
					throw new IOException ();
				Wrapped.Position = _mark;
			}
		}