- permission
- The name of the permission being checked.
- message
- A message to include in the exception if it is thrown.
If the calling process of an IPC you are handling has not been granted a particular permission, throw a Java.Lang.SecurityException. This is basically the same as calling Context.EnforcePermission(string, System.Int32, System.Int32, System.Int32) with the pid and uid returned by Android.OS.Binder.CallingPid and Android.OS.Binder.CallingUid. One important difference is that if you are not currently processing an IPC, this function will always throw the SecurityException. This is done to protect against accidentally leaking permissions; you can use Context.EnforceCallingOrSelfPermission(string, System.String) to avoid this protection.