MonobjcMonobjc Documented Class Library
PersistentDomainForName Method (domainName)
NamespacesMonobjc.FoundationNSUserDefaultsPersistentDomainForName(NSString)

Returns a dictionary containing the keys and values in the specified persistent domain.

Original signature is '- (NSDictionary *)persistentDomainForName:(NSString *)domainName'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual NSDictionary PersistentDomainForName(
	NSString domainName
)
Public Overridable Function PersistentDomainForName ( _
	domainName As NSString _
) As NSDictionary
public:
virtual NSDictionary^ PersistentDomainForName(
	NSString^ domainName
)
Parameters
domainName (NSString)
The domain whose keys and values you want. This value should be equal to your application's bundle identifier.
Return Value
A dictionary containing the keys. The keys are names of defaults and the value corresponding to each key is a property list object (NSData, NSString, NSNumber, NSDate, NSArray, or NSDictionary).
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.Foundation (Module: Monobjc.Foundation)