DataLimitBehavior 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.
public enum DataLimitBehavior
type DataLimitBehavior =
- Inheritance
-
DataLimitBehavior
Fields
| Name | Value | Description |
|---|---|---|
| Unknown | -1 | Indicates that the behavior for when a data limit is reached is unknown. This is the default value and should be used when the carrier has not specified what happens when the user's data usage exceeds the limit. Android reference for 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. |
| Disabled | 0 | Indicates that data access is disabled when the data limit is reached. Once the user's data usage hits the defined limit, their mobile data connection will be turned off until the next billing cycle begins. Android reference for 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. |
| Billed | 1 | Indicates that the user will be billed for data usage beyond the limit. When the user exceeds their data limit, they will incur overage charges. Data access continues, but at an additional cost. Android reference for 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. |
| Throttled | 2 | Indicates that data access is throttled to a slower speed when the limit is reached. After the user consumes their high-speed data allowance, the data connection remains active but is reduced to a lower bandwidth for the remainder of the billing cycle. Android reference for 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. |