NSTextStorage.Notifications.ObserveWillProcessEditing Methode
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.
Überlädt
ObserveWillProcessEditing(EventHandler<NSNotificationEventArgs>) |
Stark typisierte Benachrichtigung für die P:UIKit.NSTextStorage.WillProcessEditingNotification-Konstante . |
ObserveWillProcessEditing(NSObject, EventHandler<NSNotificationEventArgs>) |
Stark typisierte Benachrichtigung für die P:UIKit.NSTextStorage.WillProcessEditingNotification-Konstante . |
ObserveWillProcessEditing(EventHandler<NSNotificationEventArgs>)
Stark typisierte Benachrichtigung für die P:UIKit.NSTextStorage.WillProcessEditingNotification-Konstante .
public static Foundation.NSObject ObserveWillProcessEditing (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveWillProcessEditing : EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject
Parameter
- handler
- EventHandler<NSNotificationEventArgs>
Methode zum Aufrufen, wenn die Benachrichtigung veröffentlicht wird.
Gibt zurück
Tokenobjekt, das verwendet werden kann, um den Empfang von Benachrichtigungen zu beenden, indem es entweder veräußert oder an übergeben wird RemoveObservers(IEnumerable<NSObject>)
Hinweise
Diese Methode kann verwendet werden, um P:UIKit.NSTextStorage.WillProcessEditingNotification-Benachrichtigungen zu abonnieren.
// Listen to all notifications posted for any object
var token = NSTextStorage.Notifications.ObserveWillProcessEditing ((notification) => {
Console.WriteLine ("Observed WillProcessEditingNotification!");
};
// Listen to all notifications posted for a single object
var token = NSTextStorage.Notifications.ObserveWillProcessEditing (objectToObserve, (notification) => {
Console.WriteLine ($"Observed WillProcessEditingNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();
Gilt für:
ObserveWillProcessEditing(NSObject, EventHandler<NSNotificationEventArgs>)
Stark typisierte Benachrichtigung für die P:UIKit.NSTextStorage.WillProcessEditingNotification-Konstante .
public static Foundation.NSObject ObserveWillProcessEditing (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveWillProcessEditing : Foundation.NSObject * EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject
Parameter
- objectToObserve
- NSObject
Das zu beobachtende Objekt.
- handler
- EventHandler<NSNotificationEventArgs>
Methode zum Aufrufen, wenn die Benachrichtigung veröffentlicht wird.
Gibt zurück
Tokenobjekt, das verwendet werden kann, um den Empfang von Benachrichtigungen zu beenden, indem es entweder veräußert oder an übergeben wird RemoveObservers(IEnumerable<NSObject>)
Hinweise
Diese Methode kann verwendet werden, um P:UIKit.NSTextStorage.WillProcessEditingNotification-Benachrichtigungen zu abonnieren.
// Listen to all notifications posted for any object
var token = NSTextStorage.Notifications.ObserveWillProcessEditing ((notification) => {
Console.WriteLine ("Observed WillProcessEditingNotification!");
};
// Listen to all notifications posted for a single object
var token = NSTextStorage.Notifications.ObserveWillProcessEditing (objectToObserve, (notification) => {
Console.WriteLine ($"Observed WillProcessEditingNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();