InputStream.MarkSupported Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Tests if this input stream supports the mark
and
reset
methods.
[Android.Runtime.Register("markSupported", "()Z", "GetMarkSupportedHandler")]
public virtual bool MarkSupported ();
[<Android.Runtime.Register("markSupported", "()Z", "GetMarkSupportedHandler")>]
abstract member MarkSupported : unit -> bool
override this.MarkSupported : unit -> bool
Returns
true
if this stream instance supports the mark
and reset methods; false
otherwise.
- Attributes
Remarks
Tests if this input stream supports the mark
and reset
methods. Whether or not mark
and reset
are supported is an invariant property of a particular input stream instance. The markSupported
method of InputStream
returns false
.
Java documentation for java.io.InputStream.markSupported()
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.