Contents

shouldEvaluateTrust(for:)

Indicate that the delegate should override the default trust evaluation for the connection.

Declaration

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

Parameters

  • connection:

    The connection sending this message

Return Value

Return true to take over the default trust evaluation, in which case the delegate method evaluateTrustForConnection:peerCertificateChain:completionHandler: will be called.

Discussion

The caller can implement this optional protocol method to decide whether it wants to take over the default trust evaluation for this connection. If this delegate method is not implemented, the return value will default to YES if provideIdentityForConnection:completionHandler: is implemented.

See Also

Delegate methods