<!--
{
  "availability" : [
    "iOS: 26.0.0 -",
    "iPadOS: 26.0.0 -",
    "macCatalyst: 26.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "WiFiAware",
  "identifier" : "/documentation/WiFiAware/WACapabilities/supportedFeatures",
  "metadataVersion" : "0.1.0",
  "role" : "Type Property",
  "symbol" : {
    "kind" : "Type Property",
    "modules" : [
      "Wi-Fi Aware"
    ],
    "preciseIdentifier" : "s:9WiFiAware14WACapabilitiesV17supportedFeaturesShyAC7FeatureOGvpZ"
  },
  "title" : "supportedFeatures"
}
-->

# supportedFeatures

A property that returns a set of supported features, or an empty set if the current platform doesn’t support Wi-Fi Aware.

```
static var supportedFeatures: Set<WACapabilities.Feature> { get }
```

## Discussion

If the host device doesn’t support Wi-Fi Aware, the system returns an empty set. If a
feature is present in the set, it’s supported, which you can test by using the code below:

```swift
let isSupported = WACapabilities.supportedFeatures.contains(feature)
```

---

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)