<!--
{
  "availability" : [
    "iOS: 16.4.0 -",
    "iPadOS: 16.4.0 -",
    "macCatalyst: 16.4.0 -",
    "macOS: 13.0.0 -",
    "visionOS: 1.0.0 -",
    "watchOS: 9.4.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "ThreadNetwork",
  "identifier" : "/documentation/ThreadNetwork/THClient/retrieveAllActiveCredentials(_:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "ThreadNetwork"
    ],
    "preciseIdentifier" : "c:objc(cs)THClient(im)retrieveAllActiveCredentials:"
  },
  "title" : "retrieveAllActiveCredentials(_:)"
}
-->

# retrieveAllActiveCredentials(_:)

Returns a set of the active credentials.

```
func retrieveAllActiveCredentials(_ completion: @escaping @Sendable (Set<THCredentials>?, (any Error)?) -> Void)
```

```
func allActiveCredentials() async throws -> Set<THCredentials>
```

## Parameters

`completion`

The completion handler the framework calls when the active credentials become available.

## Discussion> Concurrency note: You can call this method from synchronous code using a completion handler, as shown on this page, or you can call it as an asynchronous method that has the following declaration:
> 
> ```swift
> func allActiveCredentials() async throws -> Set<THCredentials>
> ```
> 
> For information about concurrency and asynchronous code in Swift, see <doc://com.apple.documentation/documentation/Swift/calling-objective-c-apis-asynchronously>.

Call the method as follows:

```swift
func obtainAllActiveCredentials() async -> (Set<THCredentials>?, Error?) {
    let client = THClient()
    var credentials: Set<THCredentials>?
    var err:Error?
    do {
        credentials = try await client.allActiveCredentials()
    } catch {
        err = error
    }
    return (credentials, err)
}
```

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)