CacheManager.CacheResult.InputStream Property
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.
Gets the input stream to the content of this cache entry, to allow content to be read. -or- Sets an input stream to the content of this cache entry.
public virtual System.IO.Stream? InputStream { [Android.Runtime.Register("getInputStream", "()Ljava/io/InputStream;", "GetGetInputStreamHandler")] get; [Android.Runtime.Register("setInputStream", "(Ljava/io/InputStream;)V", "GetSetInputStream_Ljava_io_InputStream_Handler")] set; }
[<get: Android.Runtime.Register("getInputStream", "()Ljava/io/InputStream;", "GetGetInputStreamHandler")>]
[<set: Android.Runtime.Register("setInputStream", "(Ljava/io/InputStream;)V", "GetSetInputStream_Ljava_io_InputStream_Handler")>]
member this.InputStream : System.IO.Stream with get, set
Property Value
an input stream to the content of this cache entry
- Attributes
Remarks
Property getter documentation:
Gets the input stream to the content of this cache entry, to allow content to be read. See CacheManager#getCacheFile CacheManager.getCacheFile(String, Map<String, String>)
.
Java documentation for android.webkit.CacheManager.CacheResult.getInputStream()
.
Property setter documentation:
Sets an input stream to the content of this cache entry.
Java documentation for android.webkit.CacheManager.CacheResult.setInputStream(java.io.InputStream)
.
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.