MonobjcMonobjc Documented Class Library
NSKeyedUnarchiver..::..UnarchiverDidDecodeObjectEventHandler Delegate
NamespacesMonobjc.FoundationNSKeyedUnarchiverNSKeyedUnarchiver..::..UnarchiverDidDecodeObjectEventHandler

Informs the delegate that a given object has been decoded.

Original signature is '- (id)unarchiver:(NSKeyedUnarchiver *)unarchiver didDecodeObject:(id)object'

Available in Mac OS X v10.2 and later.

Declaration Syntax
C#Visual BasicVisual C++
public delegate Id UnarchiverDidDecodeObjectEventHandler(
	NSKeyedUnarchiver unarchiver,
	Id object
)
Public Delegate Function UnarchiverDidDecodeObjectEventHandler ( _
	unarchiver As NSKeyedUnarchiver, _
	object As Id _
) As Id
public delegate Id^ UnarchiverDidDecodeObjectEventHandler(
	NSKeyedUnarchiver^ unarchiver, 
	Id^ object
)
Parameters
unarchiver (NSKeyedUnarchiver)
An unarchiver for which the receiver is the delegate.
object (Id)
The object that has been decoded. object may be nil.
Return Value
The object to use in place of object. The delegate can either return object or return a different object to replace the decoded one. If the delegate returns nil, the decoded value will be unchanged (that is, the original object will be decoded).
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)