Freigeben über


PdfDocument.DidUnlockNotification Eigenschaft

Definition

Benachrichtigungskonstante für DidUnlock

[Foundation.Advice("Use PdfDocument.Notifications.ObserveDidUnlock helper method instead.")]
[Foundation.Field("PDFDocumentDidUnlockNotification", "PDFKit")]
public static Foundation.NSString DidUnlockNotification { get; }
[Foundation.Advice("Use PdfDocument.Notifications.ObserveDidUnlock helper method instead.")]
[Foundation.Field("PDFDocumentDidUnlockNotification", "Quartz")]
public static Foundation.NSString DidUnlockNotification { get; }
member this.DidUnlockNotification : 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, auch Entwickler können stattdessen die stark typisierte Benachrichtigung ObserveDidUnlock verwenden. 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.

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


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

void Setup ()
{
    NSNotificationCenter.DefaultCenter.AddObserver (PdfDocument.DidUnlockNotification, Callback);
}

Gilt für: