---
title: "saveToPreferences(completionHandler:)"
framework: networkextension
role: symbol
role_heading: Instance Method
path: "networkextension/nefiltermanager/savetopreferences(completionhandler:)"
---

# saveToPreferences(completionHandler:)

Save the filter configuration in the Network Extension preferences.

## Declaration

```swift
func saveToPreferences(completionHandler: @escaping @Sendable ((any Error)?) -> Void)
```

```swift
func saveToPreferences() async throws
```

## Parameters

- `completionHandler`: A block that takes an doc://com.apple.documentation/documentation/Foundation/NSError object. 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 NEFilterManagerError for a list of possible errors. If the configuration is saved successfully then the error parameter will be set to nil.

## Discussion

Discussion You must call loadFromPreferencesWithCompletionHandler: at least once before calling this method the first time after your app launches.

## See Also

### Managing the filter configuration

- [shared()](networkextension/nefiltermanager/shared().md)
- [loadFromPreferences(completionHandler:)](networkextension/nefiltermanager/loadfrompreferences(completionhandler:).md)
- [removeFromPreferences(completionHandler:)](networkextension/nefiltermanager/removefrompreferences(completionhandler:).md)
