Context.CheckCallingOrSelfUriPermission(Uri, ActivityFlags) Method

Definition

Determine whether the calling process of an IPC <em>or you</em> has been granted permission to access a specific URI.

[Android.Runtime.Register("checkCallingOrSelfUriPermission", "(Landroid/net/Uri;I)I", "GetCheckCallingOrSelfUriPermission_Landroid_net_Uri_IHandler")]
public abstract Android.Content.PM.Permission CheckCallingOrSelfUriPermission (Android.Net.Uri? uri, Android.Content.ActivityFlags modeFlags);
[<Android.Runtime.Register("checkCallingOrSelfUriPermission", "(Landroid/net/Uri;I)I", "GetCheckCallingOrSelfUriPermission_Landroid_net_Uri_IHandler")>]
abstract member CheckCallingOrSelfUriPermission : Android.Net.Uri * Android.Content.ActivityFlags -> Android.Content.PM.Permission

Parameters

uri
Uri

The uri that is being checked.

modeFlags
ActivityFlags

The access modes to check.

Returns

PackageManager#PERMISSION_GRANTED if the caller is allowed to access that uri, or PackageManager#PERMISSION_DENIED if it is not.

Attributes

Remarks

Determine whether the calling process of an IPC <em>or you</em> has been granted permission to access a specific URI. This is the same as #checkCallingUriPermission, except it grants your own permissions if you are not currently processing an IPC. Use with care!

Java documentation for android.content.Context.checkCallingOrSelfUriPermission(android.net.Uri, int).

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.

Applies to

See also

  • <xref:Android.Content.Context.CheckCallingUriPermission(Android.Net.Uri%2c+Android.Content.ActivityFlags)>