removeFromPreferences(completionHandler:)
Remove the VPN configuration from the Network Extension preferences.
Declaration
func removeFromPreferences(completionHandler: (@Sendable ((any Error)?) -> Void)? = nil)func removeFromPreferences() async throwsParameters
- completionHandler:
An optional block that takes an Nserror object. If specified, this block will be executed on the caller’s main thread after the removal operation is complete. If the configuration does not exist or an error occurs while removing it, the error parameter will be set to an
NSErrorobject containing details about the error. SeeNEVPN Errorsfor a list of possible errors. If the configuration is removed successfully then the error parameter will be set to nil.
Discussion
After the configuration is removed from the preferences the NEVPNManager object will still contain the configuration parameters. Calling loadFromPreferences(completionHandler:): will clear out the configuration parameters from the NEVPNManager object.