共用方式為


Context.SendBroadcastAsUser 方法

定義

多載

SendBroadcastAsUser(Intent, UserHandle)

#sendBroadcast(Intent)版本,可讓您指定將傳送廣播的使用者。

SendBroadcastAsUser(Intent, UserHandle, String)

#sendBroadcast(Intent, String)版本,可讓您指定將傳送廣播的使用者。

SendBroadcastAsUser(Intent, UserHandle)

#sendBroadcast(Intent)版本,可讓您指定將傳送廣播的使用者。

[Android.Runtime.Register("sendBroadcastAsUser", "(Landroid/content/Intent;Landroid/os/UserHandle;)V", "GetSendBroadcastAsUser_Landroid_content_Intent_Landroid_os_UserHandle_Handler")]
[Android.Runtime.RequiresPermission("android.permission.INTERACT_ACROSS_USERS")]
public abstract void SendBroadcastAsUser (Android.Content.Intent? intent, Android.OS.UserHandle? user);
[<Android.Runtime.Register("sendBroadcastAsUser", "(Landroid/content/Intent;Landroid/os/UserHandle;)V", "GetSendBroadcastAsUser_Landroid_content_Intent_Landroid_os_UserHandle_Handler")>]
[<Android.Runtime.RequiresPermission("android.permission.INTERACT_ACROSS_USERS")>]
abstract member SendBroadcastAsUser : Android.Content.Intent * Android.OS.UserHandle -> unit

參數

intent
Intent

廣播的意圖

user
UserHandle

要傳送意圖的UserHandle。

屬性

備註

#sendBroadcast(Intent)版本,可讓您指定將傳送廣播的使用者。 這不適用於系統映像上未預安裝的應用程式。

android.content.Context.sendBroadcastAsUser(android.content.Intent, android.os.UserHandle)Java 檔。

此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。

另請參閱

適用於

SendBroadcastAsUser(Intent, UserHandle, String)

#sendBroadcast(Intent, String)版本,可讓您指定將傳送廣播的使用者。

[Android.Runtime.Register("sendBroadcastAsUser", "(Landroid/content/Intent;Landroid/os/UserHandle;Ljava/lang/String;)V", "GetSendBroadcastAsUser_Landroid_content_Intent_Landroid_os_UserHandle_Ljava_lang_String_Handler")]
[Android.Runtime.RequiresPermission("android.permission.INTERACT_ACROSS_USERS")]
public abstract void SendBroadcastAsUser (Android.Content.Intent? intent, Android.OS.UserHandle? user, string? receiverPermission);
[<Android.Runtime.Register("sendBroadcastAsUser", "(Landroid/content/Intent;Landroid/os/UserHandle;Ljava/lang/String;)V", "GetSendBroadcastAsUser_Landroid_content_Intent_Landroid_os_UserHandle_Ljava_lang_String_Handler")>]
[<Android.Runtime.RequiresPermission("android.permission.INTERACT_ACROSS_USERS")>]
abstract member SendBroadcastAsUser : Android.Content.Intent * Android.OS.UserHandle * string -> unit

參數

intent
Intent

要廣播的意圖;符合此意圖的所有接收者都會接收廣播。

user
UserHandle

要傳送意圖的UserHandle。

receiverPermission
String

(選擇性)字串命名接收者必須保留的許可權,才能接收您的廣播。 如果為 null,則不需要任何許可權。

屬性

備註

#sendBroadcast(Intent, String)版本,可讓您指定將傳送廣播的使用者。 這不適用於系統映像上未預安裝的應用程式。

android.content.Context.sendBroadcastAsUser(android.content.Intent, android.os.UserHandle, java.lang.String)Java 檔。

此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。

另請參閱

  • <xref:Android.Content.Context.SendBroadcast(Android.Content.Intent%2c+System.String)>

適用於