Access Enum
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.
Enumerates values returned by several methods of Access and taken as a parameter of the F:Android.Content.Res.AssetManager.Open member.
public enum Access
type Access =
- Inheritance
-
Access
Fields
Name | Value | Description |
---|---|---|
Unknown | 0 | Mode for Open(String, Access): no specific information about how data will be accessed. |
Random | 1 | Mode for Open(String, Access): Read chunks, and seek forward and backward. |
Streaming | 2 | Mode for Open(String, Access): Read sequentially, with an occasional forward seek. |
Buffer | 3 | Mode for Open(String, Access): Attempt to load contents into memory, for fast small reads. |
Remarks
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.