DeviceAdminInfo.UsesPolicyForceLock Field
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.
Caution
This constant will be removed in the future version. Use Android.App.Admin.DeviceAdminUses enum directly instead of this field.
A type of policy that this device admin can use: able to force the device
to lock viaDevicePolicyManager#lockNow
or limit the
maximum lock timeout for the device via
DevicePolicyManager#setMaximumTimeToLock
.
[Android.Runtime.Register("USES_POLICY_FORCE_LOCK")]
[System.Obsolete("This constant will be removed in the future version. Use Android.App.Admin.DeviceAdminUses enum directly instead of this field.", true)]
public const Android.App.Admin.DeviceAdminUses UsesPolicyForceLock = 3;
[<Android.Runtime.Register("USES_POLICY_FORCE_LOCK")>]
[<System.Obsolete("This constant will be removed in the future version. Use Android.App.Admin.DeviceAdminUses enum directly instead of this field.", true)>]
val mutable UsesPolicyForceLock : Android.App.Admin.DeviceAdminUses
Field Value
Value = 3Implements
- Attributes
Remarks
A type of policy that this device admin can use: able to force the device to lock viaDevicePolicyManager#lockNow
or limit the maximum lock timeout for the device via DevicePolicyManager#setMaximumTimeToLock
.
To control this policy, the device admin must have a "force-lock" tag in the "uses-policies" section of its meta-data.
Java documentation for android.app.admin.DeviceAdminInfo.USES_POLICY_FORCE_LOCK
.
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.