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.

C# | Visual Basic | Visual C++ |
public virtual NSDictionary PersistentDomainForName( NSString domainName )
Public Overridable Function PersistentDomainForName ( _ domainName As NSString _ ) As NSDictionary
public: virtual NSDictionary^ PersistentDomainForName( NSString^ domainName )

- domainName (NSString)
- The domain whose keys and values you want. This value should be equal to your application's bundle identifier.

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).

- Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)