Contents

saveToPreferences(completionHandler:)

Save the VPN configuration in the Network Extension preferences.

Declaration

func saveToPreferences(completionHandler: (@Sendable ((any Error)?) -> Void)? = nil)
func saveToPreferences() async throws

Parameters

  • completionHandler:

    An optional block that takes an Nserror object. If specified, this block will be executed on the caller’s main thread after the save operation is complete. If the configuration could not be saved to the preferences, the error parameter will be set to an NSError object containing details about the error. See NEVPN Errors for a list of possible errors. If the configuration is saved successfully then the error parameter will be set to nil.

Discussion

You must call loadFromPreferences(completionHandler:): at least once before calling this method the first time after your app launches.

See Also

Related Documentation

Managing VPN configurations