PermissionCollection.Implies(Permission) 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.
Checks to see if the specified permission is implied by the collection of Permission objects held in this PermissionCollection.
[Android.Runtime.Register("implies", "(Ljava/security/Permission;)Z", "GetImplies_Ljava_security_Permission_Handler")]
public abstract bool Implies (Java.Security.Permission? permission);
[<Android.Runtime.Register("implies", "(Ljava/security/Permission;)Z", "GetImplies_Ljava_security_Permission_Handler")>]
abstract member Implies : Java.Security.Permission -> bool
Parameters
- permission
- Permission
the Permission object to compare.
Returns
true if "permission" is implied by the permissions in the collection, false if not.
- Attributes
Remarks
Checks to see if the specified permission is implied by the collection of Permission objects held in this PermissionCollection.
Java documentation for java.security.PermissionCollection.implies(java.security.Permission)
.
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.