Context.CheckCallingUriPermissions(IList<Uri>, Int32) 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.
Determine whether the calling process and user ID has been granted permission to access a list of URIs.
[Android.Runtime.Register("checkCallingUriPermissions", "(Ljava/util/List;I)[I", "GetCheckCallingUriPermissions_Ljava_util_List_IHandler", ApiSince=31)]
public virtual int[] CheckCallingUriPermissions (System.Collections.Generic.IList<Android.Net.Uri> uris, int modeFlags);
[<Android.Runtime.Register("checkCallingUriPermissions", "(Ljava/util/List;I)[I", "GetCheckCallingUriPermissions_Ljava_util_List_IHandler", ApiSince=31)>]
abstract member CheckCallingUriPermissions : System.Collections.Generic.IList<Android.Net.Uri> * int -> int[]
override this.CheckCallingUriPermissions : System.Collections.Generic.IList<Android.Net.Uri> * int -> int[]
Parameters
- modeFlags
- Int32
The access modes to check.
Returns
Array of permission grants corresponding to each entry in the list of uris.
PackageManager#PERMISSION_GRANTED
if the given pid/uid is allowed to access that uri,
or PackageManager#PERMISSION_DENIED
if it is not.
- Attributes
Remarks
Determine whether the calling process and user ID has been granted permission to access a list of URIs. This is basically the same as calling #checkUriPermissions(List, int, int, int)
with the pid and uid returned by android.os.Binder#getCallingPid
and android.os.Binder#getCallingUid
. One important difference is that if you are not currently processing an IPC, this function will always fail.
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.