MonobjcMonobjc Documented Class Library
ClassNameDecodedForArchiveClassName Method (nameInArchive)
NamespacesMonobjc.FoundationNSUnarchiverClassNameDecodedForArchiveClassName(NSString)

Returns the name of the class that will be used when instantiating objects whose ostensible class, according to the archived data, is a given name.

Original signature is '- (NSString *)classNameDecodedForArchiveClassName:(NSString *)nameInArchive'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual NSString ClassNameDecodedForArchiveClassName(
	NSString nameInArchive
)
Public Overridable Function ClassNameDecodedForArchiveClassName ( _
	nameInArchive As NSString _
) As NSString
public:
virtual NSString^ ClassNameDecodedForArchiveClassName(
	NSString^ nameInArchive
)
Parameters
nameInArchive (NSString)
The ostensible name of a class in an archive.
Return Value
The name of the class that will be used when instantiating objects whose ostensible class, according to the archived data, is nameInArchive. Returns nameInArchive unless a substitute name has been specified using the instance method (not the class method) decodeClassName:asClassName:.
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)