Contents

shouldProvideIdentity(for:)

Indicate that the delegate can provide an identity for the connection authentication.

Declaration

optional func shouldProvideIdentity(for connection: NWTCPConnection) -> Bool

Parameters

  • connection:

    The connection sending this message.

Return Value

Return true to provide the identity for this connection, in which case the delegate method provideIdentity(for:completionHandler:) will be called.

Discussion

The caller can implement this optional protocol method to decide whether it wants to provide the identity for this connection for authentication. If this delegate method is not implemented, the return value will default to YES if provideIdentity(for:completionHandler:) is implemented.

See Also

Delegate methods