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

Informs the delegate that one object is being substituted for another.

Original signature is '- (void)unarchiver:(NSKeyedUnarchiver *)unarchiver willReplaceObject:(id)object withObject:(id)newObject'

Available in Mac OS X v10.2 and later.

Declaration Syntax
C#Visual BasicVisual C++
public delegate void UnarchiverWillReplaceObjectWithObjectEventHandler(
	NSKeyedUnarchiver unarchiver,
	Id object,
	Id newObject
)
Public Delegate Sub UnarchiverWillReplaceObjectWithObjectEventHandler ( _
	unarchiver As NSKeyedUnarchiver, _
	object As Id, _
	newObject As Id _
)
public delegate void UnarchiverWillReplaceObjectWithObjectEventHandler(
	NSKeyedUnarchiver^ unarchiver, 
	Id^ object, 
	Id^ newObject
)
Parameters
unarchiver (NSKeyedUnarchiver)
An unarchiver for which the receiver is the delegate.
object (Id)
An object in the archive.
newObject (Id)
The object with which unarchiver will replace object.
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)