INSKeyedUnarchiverDelegate Interface

Definition

This interface represents the Objective-C protocol NSKeyedUnarchiverDelegate.

[Foundation.Protocol(Name="NSKeyedUnarchiverDelegate", WrapperType=typeof(Foundation.NSKeyedUnarchiverDelegateWrapper))]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="DecodedObject", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(Foundation.NSKeyedUnarchiver), typeof(Foundation.NSObject) }, ReturnType=typeof(Foundation.NSObject), Selector="unarchiver:didDecodeObject:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="Finished", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(Foundation.NSKeyedUnarchiver) }, Selector="unarchiverDidFinish:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="CannotDecodeClass", ParameterByRef=new System.Boolean[] { false, false, false }, ParameterType=new System.Type[] { typeof(Foundation.NSKeyedUnarchiver), typeof(System.String), typeof(System.String[]) }, ReturnType=typeof(ObjCRuntime.Class), Selector="unarchiver:cannotDecodeObjectOfClassName:originalClasses:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="Finishing", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(Foundation.NSKeyedUnarchiver) }, Selector="unarchiverWillFinish:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="ReplacingObject", ParameterByRef=new System.Boolean[] { false, false, false }, ParameterType=new System.Type[] { typeof(Foundation.NSKeyedUnarchiver), typeof(Foundation.NSObject), typeof(Foundation.NSObject) }, Selector="unarchiver:willReplaceObject:withObject:")]
public interface INSKeyedUnarchiverDelegate : IDisposable, ObjCRuntime.INativeObject
[<Foundation.Protocol(Name="NSKeyedUnarchiverDelegate", WrapperType=typeof(Foundation.NSKeyedUnarchiverDelegateWrapper))>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="DecodedObject", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(Foundation.NSKeyedUnarchiver), typeof(Foundation.NSObject) }, ReturnType=typeof(Foundation.NSObject), Selector="unarchiver:didDecodeObject:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="Finished", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(Foundation.NSKeyedUnarchiver) }, Selector="unarchiverDidFinish:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="CannotDecodeClass", ParameterByRef=new System.Boolean[] { false, false, false }, ParameterType=new System.Type[] { typeof(Foundation.NSKeyedUnarchiver), typeof(System.String), typeof(System.String[]) }, ReturnType=typeof(ObjCRuntime.Class), Selector="unarchiver:cannotDecodeObjectOfClassName:originalClasses:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="Finishing", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(Foundation.NSKeyedUnarchiver) }, Selector="unarchiverWillFinish:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="ReplacingObject", ParameterByRef=new System.Boolean[] { false, false, false }, ParameterType=new System.Type[] { typeof(Foundation.NSKeyedUnarchiver), typeof(Foundation.NSObject), typeof(Foundation.NSObject) }, Selector="unarchiver:willReplaceObject:withObject:")>]
type INSKeyedUnarchiverDelegate = interface
    interface INativeObject
    interface IDisposable
Derived
Attributes
Implements

Remarks

A class that implements this interface (and subclasses NSObject) will be exported to Objective-C as implementing the Objective-C protocol this interface represents.

A class may also implement members from this interface to implement members from the protocol.

Applies to