NSUserDefaults.GlobalDomain Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
This is the key used to retrieve the global user defaults domain.
[Foundation.Field("NSGlobalDomain", "Foundation")]
public static Foundation.NSString GlobalDomain { get; }
member this.GlobalDomain : Foundation.NSString
Property Value
- Attributes
Remarks
This key is used to retrieve the global user defaults.
// Retrieve the gloabl NSButtonDelay setting on MacOS:
var global = new NSUserDefaults (NSUserDefaults.GlobalDomain);
Console.WriteLine ("Delay: " + j.FloatForKey ("NSButtonDelay"));