AVAudioSession.Notifications.ObserveSilenceSecondaryAudioHint 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
ObserveSilenceSecondaryAudioHint(EventHandler<AVAudioSessionSecondaryAudioHintEventArgs>)
상수에 대한 강력한 형식의 알림입니다 SilenceSecondaryAudioHintNotification .
public static Foundation.NSObject ObserveSilenceSecondaryAudioHint (EventHandler<AVFoundation.AVAudioSessionSecondaryAudioHintEventArgs> handler);
static member ObserveSilenceSecondaryAudioHint : EventHandler<AVFoundation.AVAudioSessionSecondaryAudioHintEventArgs> -> Foundation.NSObject
매개 변수
알림이 게시될 때 호출할 메서드입니다.
반환
알림을 삭제하거나 에 전달하여 알림 수신을 중지하는 데 사용할 수 있는 토큰 개체 RemoveObservers(IEnumerable<NSObject>)
설명
다음 예제에서는 개발자가 코드에서 이 메서드를 사용하는 방법을 보여 줍니다.
//
// 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 ();
}
적용 대상
ObserveSilenceSecondaryAudioHint(NSObject, EventHandler<AVAudioSessionSecondaryAudioHintEventArgs>)
상수에 대한 강력한 형식의 알림입니다 SilenceSecondaryAudioHintNotification .
public static Foundation.NSObject ObserveSilenceSecondaryAudioHint (Foundation.NSObject objectToObserve, EventHandler<AVFoundation.AVAudioSessionSecondaryAudioHintEventArgs> handler);
static member ObserveSilenceSecondaryAudioHint : Foundation.NSObject * EventHandler<AVFoundation.AVAudioSessionSecondaryAudioHintEventArgs> -> Foundation.NSObject
매개 변수
- objectToObserve
- NSObject
관찰할 특정 개체입니다.
알림이 발생할 때 응답하는 처리기입니다.
반환
알림을 삭제하거나 에 전달하여 알림 수신을 중지하는 데 사용할 수 있는 토큰 개체 RemoveObservers(IEnumerable<NSObject>)
설명
이 메서드를 사용하여 알림을 구독 SilenceSecondaryAudioHintNotification 할 수 있습니다.
// 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 ();