AVSampleBufferAudioRenderer.AudioRendererWasFlushedAutomaticallyNotification Eigenschaft
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Benachrichtigungskonstante für AudioRendererWasFlushedAutomatisch
[Foundation.Advice("Use AVSampleBufferAudioRenderer.Notifications.ObserveAudioRendererWasFlushedAutomatically helper method instead.")]
[Foundation.Field("AVSampleBufferAudioRendererWasFlushedAutomaticallyNotification", "AVFoundation")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.TvOS, 11, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.MacOSX, 10, 13, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 11, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All, null)]
public static Foundation.NSString AudioRendererWasFlushedAutomaticallyNotification { [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.TvOS, 11, 0, ObjCRuntime.PlatformArchitecture.All, null)] [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.MacOSX, 10, 13, ObjCRuntime.PlatformArchitecture.All, null)] [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 11, 0, ObjCRuntime.PlatformArchitecture.All, null)] [ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All, null)] get; }
member this.AudioRendererWasFlushedAutomaticallyNotification : Foundation.NSString
Eigenschaftswert
Die NSString-Konstante sollte als Token für NSNotificationCenter verwendet werden.
- Attribute
Hinweise
Diese Konstante kann mit dem NSNotificationCenter verwendet werden, um einen Listener für diese Benachrichtigung zu registrieren. Dies ist ein NSString anstelle einer Zeichenfolge, da diese Werte als Token in einigen nativen Bibliotheken verwendet werden können, anstatt nur für ihren tatsächlichen Zeichenfolgeninhalt verwendet zu werden. Der Parameter "notification" für den Rückruf enthält zusätzliche Informationen, die für den Benachrichtigungstyp spezifisch sind.
Um diese Benachrichtigung zu abonnieren, können Entwickler die praktische AVSampleBufferAudioRenderer.NotificationsMethode verwenden,ObserveAudioRendererWasFlushedAutomatically die stark typisierten Zugriff auf die Parameter der Benachrichtigung bietet.
Das folgende Beispiel zeigt, wie Sie die stark typisierte Benachrichtigungsklasse verwenden, um das Rätselraten aus den verfügbaren Eigenschaften in der Benachrichtigung zu nehmen:
//
// Lambda style
//
// listening
notification = AVSampleBufferAudioRenderer.Notifications.ObserveAudioRendererWasFlushedAutomatically ((sender, args) => {
/* Access strongly typed args */
Console.WriteLine ("Notification: {0}", args.Notification);
Console.WriteLine ("_AudioRendererFlushTime", args._AudioRendererFlushTime);
});
// To stop listening:
notification.Dispose ();
//
// Method style
//
NSObject notification;
void Callback (object sender, AVFoundation.AudioRendererWasFlushedAutomaticallyEventArgs args)
{
// Access strongly typed args
Console.WriteLine ("Notification: {0}", args.Notification);
Console.WriteLine ("_AudioRendererFlushTime", args._AudioRendererFlushTime);
}
void Setup ()
{
notification = AVSampleBufferAudioRenderer.Notifications.ObserveAudioRendererWasFlushedAutomatically (Callback);
}
void Teardown ()
{
notification.Dispose ();
}
Das folgende Beispiel zeigt, wie Sie die Benachrichtigung mit der DefaultCenter-API verwenden:
// Lambda style
NSNotificationCenter.DefaultCenter.AddObserver (
AVSampleBufferAudioRenderer.AudioRendererWasFlushedAutomaticallyNotification, (notification) => {Console.WriteLine ("Received the notification AVSampleBufferAudioRenderer", notification); }
// Method style
void Callback (NSNotification notification)
{
Console.WriteLine ("Received a notification AVSampleBufferAudioRenderer", notification);
}
void Setup ()
{
NSNotificationCenter.DefaultCenter.AddObserver (AVSampleBufferAudioRenderer.AudioRendererWasFlushedAutomaticallyNotification, Callback);
}