AVAudioSession.Notifications.ObserveSilenceSecondaryAudioHint 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.
Surcharges
ObserveSilenceSecondaryAudioHint(EventHandler<AVAudioSessionSecondaryAudioHintEventArgs>) |
Notification fortement typée pour la SilenceSecondaryAudioHintNotification constante. |
ObserveSilenceSecondaryAudioHint(NSObject, EventHandler<AVAudioSessionSecondaryAudioHintEventArgs>) |
Notification fortement typée pour la SilenceSecondaryAudioHintNotification constante. |
ObserveSilenceSecondaryAudioHint(EventHandler<AVAudioSessionSecondaryAudioHintEventArgs>)
Notification fortement typée pour la SilenceSecondaryAudioHintNotification constante.
public static Foundation.NSObject ObserveSilenceSecondaryAudioHint (EventHandler<AVFoundation.AVAudioSessionSecondaryAudioHintEventArgs> handler);
static member ObserveSilenceSecondaryAudioHint : EventHandler<AVFoundation.AVAudioSessionSecondaryAudioHintEventArgs> -> Foundation.NSObject
Paramètres
Méthode à appeler lors de la publication de la notification.
Retours
Objet jeton qui peut être utilisé pour arrêter de recevoir des notifications en le supprimant ou en le transmettant à RemoveObservers(IEnumerable<NSObject>)
Remarques
L’exemple suivant montre comment les développeurs peuvent utiliser cette méthode dans leur code :
//
// Lambda style
//
// listening
notification = AVAudioSession.Notifications.ObserveSilenceSecondaryAudioHint ((sender, args) => {
/* Access strongly typed args */
Console.WriteLine ("Notification: {0}", args.Notification);
Console.WriteLine ("Hint", args.Hint);
Console.WriteLine ("HintType", args.HintType);
});
// To stop listening:
notification.Dispose ();
//
//Method style
//
NSObject notification;
void Callback (object sender, AVFoundation.AVAudioSessionSecondaryAudioHintEventArgs args)
{
// Access strongly typed args
Console.WriteLine ("Notification: {0}", args.Notification);
Console.WriteLine ("Hint", args.Hint);
Console.WriteLine ("HintType", args.HintType);
}
void Setup ()
{
notification = AVAudioSession.Notifications.ObserveSilenceSecondaryAudioHint (Callback);
}
void Teardown ()
{
notification.Dispose ();
}
S’applique à
ObserveSilenceSecondaryAudioHint(NSObject, EventHandler<AVAudioSessionSecondaryAudioHintEventArgs>)
Notification fortement typée pour la SilenceSecondaryAudioHintNotification constante.
public static Foundation.NSObject ObserveSilenceSecondaryAudioHint (Foundation.NSObject objectToObserve, EventHandler<AVFoundation.AVAudioSessionSecondaryAudioHintEventArgs> handler);
static member ObserveSilenceSecondaryAudioHint : Foundation.NSObject * EventHandler<AVFoundation.AVAudioSessionSecondaryAudioHintEventArgs> -> Foundation.NSObject
Paramètres
- objectToObserve
- NSObject
Objet spécifique à observer.
Gestionnaire qui répond à la notification lorsqu’elle se produit.
Retours
Objet jeton qui peut être utilisé pour arrêter de recevoir des notifications en le supprimant ou en le transmettant à RemoveObservers(IEnumerable<NSObject>)
Remarques
Cette méthode peut être utilisée pour SilenceSecondaryAudioHintNotification s’abonner aux notifications.
// Listen to all notifications posted for any object
var token = AVAudioSession.Notifications.ObserveSilenceSecondaryAudioHint ((notification) => {
Console.WriteLine ("Observed SilenceSecondaryAudioHintNotification!");
};
// Listen to all notifications posted for a single object
var token = AVAudioSession.Notifications.ObserveSilenceSecondaryAudioHint (objectToObserve, (notification) => {
Console.WriteLine ($"Observed SilenceSecondaryAudioHintNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();