INSConnectionDelegate Interface

Definition

This interface represents the Objective-C protocol NSConnectionDelegate.

[Foundation.Protocol(Name="NSConnectionDelegate", WrapperType=typeof(Foundation.NSConnectionDelegateWrapper))]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="AuthenticateComponents", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(Foundation.NSArray), typeof(Foundation.NSData) }, ReturnType=typeof(System.Boolean), Selector="authenticateComponents:withData:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="GetAuthenticationData", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(Foundation.NSArray) }, ReturnType=typeof(Foundation.NSData), Selector="authenticationDataForComponents:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="ShouldMakeNewConnection", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(Foundation.NSConnection), typeof(Foundation.NSConnection) }, ReturnType=typeof(System.Boolean), Selector="connection:shouldMakeNewConnection:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="HandleRequest", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(Foundation.NSConnection), typeof(Foundation.NSDistantObjectRequest) }, ReturnType=typeof(System.Boolean), Selector="connection:handleRequest:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="CreateConversation", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(Foundation.NSConnection) }, ReturnType=typeof(Foundation.NSObject), Selector="createConversationForConnection:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="AllowNewConnection", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(Foundation.NSConnection), typeof(Foundation.NSConnection) }, ReturnType=typeof(System.Boolean), Selector="makeNewConnection:sender:")]
public interface INSConnectionDelegate : IDisposable, ObjCRuntime.INativeObject
[<Foundation.Protocol(Name="NSConnectionDelegate", WrapperType=typeof(Foundation.NSConnectionDelegateWrapper))>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="AuthenticateComponents", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(Foundation.NSArray), typeof(Foundation.NSData) }, ReturnType=typeof(System.Boolean), Selector="authenticateComponents:withData:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="GetAuthenticationData", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(Foundation.NSArray) }, ReturnType=typeof(Foundation.NSData), Selector="authenticationDataForComponents:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="ShouldMakeNewConnection", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(Foundation.NSConnection), typeof(Foundation.NSConnection) }, ReturnType=typeof(System.Boolean), Selector="connection:shouldMakeNewConnection:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="HandleRequest", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(Foundation.NSConnection), typeof(Foundation.NSDistantObjectRequest) }, ReturnType=typeof(System.Boolean), Selector="connection:handleRequest:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="CreateConversation", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(Foundation.NSConnection) }, ReturnType=typeof(Foundation.NSObject), Selector="createConversationForConnection:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="AllowNewConnection", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(Foundation.NSConnection), typeof(Foundation.NSConnection) }, ReturnType=typeof(System.Boolean), Selector="makeNewConnection:sender:")>]
type INSConnectionDelegate = 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