Share via


INSSeguePerforming Interface

Definition

This interface represents the Objective-C protocol NSSeguePerforming.

[Foundation.Protocol(Name="NSSeguePerforming", WrapperType=typeof(AppKit.NSSeguePerformingWrapper))]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="PrepareForSegue", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AppKit.NSStoryboardSegue), typeof(Foundation.NSObject) }, Selector="prepareForSegue:sender:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="PerformSegue", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(System.String), typeof(Foundation.NSObject) }, Selector="performSegueWithIdentifier:sender:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="ShouldPerformSegue", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(System.String), typeof(Foundation.NSObject) }, ReturnType=typeof(System.Boolean), Selector="shouldPerformSegueWithIdentifier:sender:")]
public interface INSSeguePerforming : IDisposable, ObjCRuntime.INativeObject
[<Foundation.Protocol(Name="NSSeguePerforming", WrapperType=typeof(AppKit.NSSeguePerformingWrapper))>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="PrepareForSegue", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AppKit.NSStoryboardSegue), typeof(Foundation.NSObject) }, Selector="prepareForSegue:sender:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="PerformSegue", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(System.String), typeof(Foundation.NSObject) }, Selector="performSegueWithIdentifier:sender:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="ShouldPerformSegue", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(System.String), typeof(Foundation.NSObject) }, ReturnType=typeof(System.Boolean), Selector="shouldPerformSegueWithIdentifier:sender:")>]
type INSSeguePerforming = 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