MonobjcMonobjc Documented Class Library
NSKeyedArchiver..::..ArchiverWillReplaceObjectWithObjectEventHandler Delegate
NamespacesMonobjc.FoundationNSKeyedArchiverNSKeyedArchiver..::..ArchiverWillReplaceObjectWithObjectEventHandler

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

Original signature is '- (void)archiver:(NSKeyedArchiver *)archiver willReplaceObject:(id)object withObject:(id)newObject'

Available in Mac OS X v10.2 and later.

Declaration Syntax
C#Visual BasicVisual C++
public delegate void ArchiverWillReplaceObjectWithObjectEventHandler(
	NSKeyedArchiver archiver,
	Id object,
	Id newObject
)
Public Delegate Sub ArchiverWillReplaceObjectWithObjectEventHandler ( _
	archiver As NSKeyedArchiver, _
	object As Id, _
	newObject As Id _
)
public delegate void ArchiverWillReplaceObjectWithObjectEventHandler(
	NSKeyedArchiver^ archiver, 
	Id^ object, 
	Id^ newObject
)
Parameters
archiver (NSKeyedArchiver)
The archiver that sent the message.
object (Id)
The object being replaced in the archive.
newObject (Id)
The object replacing object in the archive.
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)