MonobjcMonobjc Documented Class Library
NSConnection..::..MakeNewConnectionSenderEventHandler Delegate
NamespacesMonobjc.FoundationNSConnectionNSConnection..::..MakeNewConnectionSenderEventHandler

Returns a Boolean value that indicates whether the parent should allow a given new connection to be created and configured.

Original signature is '- (BOOL)makeNewConnection:(NSConnection *)newConnection sender:(NSConnection *)parentConnection'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public delegate bool MakeNewConnectionSenderEventHandler(
	NSConnection newConnection,
	NSConnection parentConnection
)
Public Delegate Function MakeNewConnectionSenderEventHandler ( _
	newConnection As NSConnection, _
	parentConnection As NSConnection _
) As Boolean
public delegate bool MakeNewConnectionSenderEventHandler(
	NSConnection^ newConnection, 
	NSConnection^ parentConnection
)
Parameters
newConnection (NSConnection)
The new connection.
parentConnection (NSConnection)
The parent connection.
Return Value
YES if parentConnection should allow newConnnection to be created and configured, NO if parentConnection should refuse and immediately release newConnection.
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)