This method should be implemented by NSConnection object delegates that want to intercept distant object requests.
Original signature is '- (BOOL)connection:(NSConnection *)conn handleRequest:(NSDistantObjectRequest *)doReq'
Available in Mac OS X v10.0 and later.

C# | Visual Basic | Visual C++ |
public bool ConnectionHandleRequestMessage( NSConnection conn, NSDistantObjectRequest doReq )
Public Function ConnectionHandleRequestMessage ( _ conn As NSConnection, _ doReq As NSDistantObjectRequest _ ) As Boolean
public: bool ConnectionHandleRequestMessage( NSConnection^ conn, NSDistantObjectRequest^ doReq )

- conn (NSConnection)
- The connection object for which the receiver is the delegate.
- doReq (NSDistantObjectRequest)
- The distant object request.

YES if the request was handled by the delegate, NO if the request should proceed as if the delegate did not intercept it.

- Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)