loadAllFromPreferences(completionHandler:)
Read all of the VPN configurations created by the calling app that have previously been saved to the Network Extension preferences.
Declaration
class func loadAllFromPreferences(completionHandler: @escaping @Sendable ([NETunnelProviderManager]?, (any Error)?) -> Void)class func loadAllFromPreferences() async throws -> [NETunnelProviderManager]Parameters
- completionHandler:
A block that takes an Nsarray of
NETunnelProviderManagerobjects, and an Nserror object. This block will be executed on the caller’s main thread after the load operation is complete. If no configurations exist for the calling app then themanagersparameter will be set to nil and the error parameter will be set to nil. If an error occurred while loading the configurations, the error parameter will be set to an NSError object containing details about the error. See Nevpnmanager for a list of possible errors.