DevicePolicyManager.GetPasswordExpirationTimeout(ComponentName) 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.
Get the password expiration timeout for the given admin.
[Android.Runtime.Register("getPasswordExpirationTimeout", "(Landroid/content/ComponentName;)J", "GetGetPasswordExpirationTimeout_Landroid_content_ComponentName_Handler")]
public virtual long GetPasswordExpirationTimeout (Android.Content.ComponentName? admin);
[<Android.Runtime.Register("getPasswordExpirationTimeout", "(Landroid/content/ComponentName;)J", "GetGetPasswordExpirationTimeout_Landroid_content_ComponentName_Handler")>]
abstract member GetPasswordExpirationTimeout : Android.Content.ComponentName -> int64
override this.GetPasswordExpirationTimeout : Android.Content.ComponentName -> int64
Parameters
- admin
- ComponentName
The name of the admin component to check, or null
to aggregate all admins.
Returns
The timeout for the given admin or the minimum of all timeouts
- Attributes
Remarks
Get the password expiration timeout for the given admin. The expiration timeout is the recurring expiration timeout provided in the call to #setPasswordExpirationTimeout(ComponentName, long)
for the given admin or the aggregate of all participating policy administrators if admin
is null. Admins that have set restrictions on profiles that have a separate challenge are not taken into account.
This method can be called on the DevicePolicyManager
instance returned by #getParentProfileInstance(ComponentName)
in order to retrieve restrictions on the parent profile.
On devices not supporting PackageManager#FEATURE_SECURE_LOCK_SCREEN
feature, the password expiration is always disabled and this method always returns 0.
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.