Contents

removeFromPreferences(completionHandler:)

Remove the filter configuration from the Network Extension preferences.

Declaration

func removeFromPreferences(completionHandler: @escaping  @Sendable ((any Error)?) -> Void)
func removeFromPreferences() async throws

Parameters

  • completionHandler:

    A block that takes an Nserror object. This block will be executed on the caller’s main thread after the removal operation is complete. If the configuration does not exist in the Network Extension preferences or an error occurs while removing it, the error parameter will be set to an NSError object containing details about the error. See NEFilterManagerError for a list of possible errors. If the configuration is removed successfully the error parameter will be set to nil.

Discussion

After the configuration is removed from the preferences the NEFilterManager object will still contain the configuration parameters. Calling loadFromPreferencesWithCompletionHandler: will clear out the configuration parameters from the NEFilterManager object.

See Also

Managing the filter configuration