NSObject.ChangeNotificationIsPriorKey Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Constante de notificación para ChangeNotificati
[Foundation.Field("NSKeyValueChangeNotificationIsPriorKey", "Foundation")]
public static Foundation.NSString ChangeNotificationIsPriorKey { get; }
member this.ChangeNotificationIsPriorKey : Foundation.NSString
Valor de propiedad
La constante NSString se debe usar como token para NSNotificationCenter.
- Atributos
Comentarios
Esta constante se puede usar con para NSNotificationCenter registrar un agente de escucha para esta notificación.
// Lambda style
NSNotificationCenter.DefaultCenter.AddObserver (NSObject.ChangeNotificationIsPriorKey, (notification) => Console.WriteLine ("Received the notification NSObject", notification);
// Method style
void Callback (NSNotification notification)
{
Console.WriteLine ("Received a notification NSObject", notification);
}
void Setup ()
{
NSNotificationCenter.DefaultCenter.AddObserver (NSObject.ChangeNotificationIsPriorKey, Callback);
}