Context.CheckCallingUriPermission(Uri, ActivityFlags) 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 specific URI.
[Android.Runtime.Register("checkCallingUriPermission", "(Landroid/net/Uri;I)I", "GetCheckCallingUriPermission_Landroid_net_Uri_IHandler")]
public abstract Android.Content.PM.Permission CheckCallingUriPermission (Android.Net.Uri? uri, Android.Content.ActivityFlags modeFlags);
[<Android.Runtime.Register("checkCallingUriPermission", "(Landroid/net/Uri;I)I", "GetCheckCallingUriPermission_Landroid_net_Uri_IHandler")>]
abstract member CheckCallingUriPermission : 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 and user ID has been granted permission to access a specific URI. This is basically the same as calling #checkUriPermission(Uri, 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.
Java documentation for android.content.Context.checkCallingUriPermission(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.CheckUriPermission(Android.Net.Uri%2c+System.Int32%2c+System.Int32%2c+System.Int32)>