Returns a Boolean value that indicates whether a given property list is valid for a given format.
Original signature is '+ (BOOL)propertyList:(id)plist isValidForFormat:(NSPropertyListFormat)format'
Available in Mac OS X v10.2 and later.

C# | Visual Basic | Visual C++ |
public static bool PropertyListIsValidForFormat( Id plist, NSPropertyListFormat format )
Public Shared Function PropertyListIsValidForFormat ( _ plist As Id, _ format As NSPropertyListFormat _ ) As Boolean
public: static bool PropertyListIsValidForFormat( Id^ plist, NSPropertyListFormat format )

- plist (Id)
- A property list object.
- format (NSPropertyListFormat)
- A property list format. Possible values for format are listed in NSPropertyListFormat.

YES if plist is a valid property list in format format, otherwise NO.

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