MonobjcMonobjc Documented Class Library
UnarchiverWillReplaceObjectWithObject Method (unarchiver, object, newObject)
NamespacesMonobjc.FoundationINSKeyedUnarchiverDelegateUnarchiverWillReplaceObjectWithObject(NSKeyedUnarchiver, Id, Id)

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++
void UnarchiverWillReplaceObjectWithObject(
	NSKeyedUnarchiver unarchiver,
	Id object,
	Id newObject
)
Sub UnarchiverWillReplaceObjectWithObject ( _
	unarchiver As NSKeyedUnarchiver, _
	object As Id, _
	newObject As Id _
)
void UnarchiverWillReplaceObjectWithObject(
	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)