AppNotificationBuilder.MuteAudio Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Demande au système de désactiver tout son associé à la notification de l’application.
public:
virtual AppNotificationBuilder ^ MuteAudio() = MuteAudio;
AppNotificationBuilder MuteAudio();
public AppNotificationBuilder MuteAudio();
function muteAudio()
Public Function MuteAudio () As AppNotificationBuilder
Retours
Retourne l’instance AppNotificationBuilder afin que des appels de méthode supplémentaires puissent être chaînés.
Exemples
L’exemple suivant illustre la demande de désactivation audio dans la charge utile XML pour une notification d’application.
var notification = new AppNotificationBuilder()
.AddText("Notification text.")
.MuteAudio()
.BuildNotification();
AppNotificationManager.Default.Show(notification);
Charge utile XML résultante :
<toast>
<visual>
<binding template='ToastGeneric'>
<text>Notification text.</text>
</binding>
</visual>
<audio silent='true'/>
</toast>
Remarques
Pour spécifier l’audio d’une notification d’application, utilisez SetAudioEvent(AppNotificationSoundEvent, AppNotificationAudioLooping) ou SetAudioUri(Uri, AppNotificationAudioLooping).
Pour obtenir des conseils sur l’utilisation des API AppNotificationBuilder
Pour plus d’informations sur le schéma XML pour les notifications d’application, consultez schéma de contenu de notification d’application.