Поделиться через


AVSampleBufferDisplayLayer.FailedToDecodeNotificationErrorKey Свойство

Определение

Константа уведомлений для FailedToDecodeNotifica

[Foundation.Field("AVSampleBufferDisplayLayerFailedToDecodeNotificationErrorKey", "AVFoundation")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 8, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.MacOSX, 10, 10, ObjCRuntime.PlatformArchitecture.All, null)]
public static Foundation.NSString FailedToDecodeNotificationErrorKey { [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 8, 0, ObjCRuntime.PlatformArchitecture.All, null)] [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.MacOSX, 10, 10, ObjCRuntime.PlatformArchitecture.All, null)] get; }
member this.FailedToDecodeNotificationErrorKey : Foundation.NSString

Значение свойства

Константа NSString должна использоваться в качестве токена для NSNotificationCenter.

Атрибуты

Комментарии

Эту константу можно использовать с для NSNotificationCenter регистрации прослушивателя для этого уведомления. Это NSString вместо строки, так как эти значения можно использовать в качестве маркеров в некоторых собственных библиотеках, а не только для их фактического содержимого строк. Параметр notification для обратного вызова содержит дополнительные сведения, относящиеся к типу уведомления.

// Lambda style
NSNotificationCenter.DefaultCenter.AddObserver (
        AVSampleBufferDisplayLayer.FailedToDecodeNotificationErrorKey, (notification) => {Console.WriteLine ("Received the notification AVSampleBufferDisplayLayer", notification); }


// Method style
void Callback (NSNotification notification)
{
    Console.WriteLine ("Received a notification AVSampleBufferDisplayLayer", notification);
}

void Setup ()
{
    NSNotificationCenter.DefaultCenter.AddObserver (AVSampleBufferDisplayLayer.FailedToDecodeNotificationErrorKey, Callback);
}

Применяется к