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

MarkSupported() public method

public MarkSupported ( ) : bool
return bool
		public virtual bool MarkSupported ()
		{
		    if (Wrapped is WrappedSystemStream)
				return ((WrappedSystemStream)Wrapped).InputStream.MarkSupported ();
		    return ((Wrapped != null) && Wrapped.CanSeek);
		}