MonoMac.Foundation.NSObject.ChangeNotificationIsPriorKey Property
Represents the value associated with the constant NSKeyValueChangeNotificationIsPriorKey

Syntax

public static NSString ChangeNotificationIsPriorKey { get; }

Value

NSString constant, should be used as a token to NSNotificationCenter.

Remarks

This constant can be used with the MonoMac.Foundation.NSNotificationCenter to register a listener for this notification.

c# Example

// 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);
}

Requirements

Namespace: MonoMac.Foundation
Assembly: XamMac (in XamMac.dll)
Assembly Versions: 0.0.0.0