---
title: "subscript(_:as:)"
framework: xpc
role: symbol
role_heading: Instance Subscript
path: "xpc/xpcdictionary/subscript(_:as:)-58a41"
---

# subscript(_:as:)

Get a value in this dictionary as an XPCArray.

## Declaration

```swift
subscript(key: String, as type: XPCArray.Type = XPCArray.self) -> XPCArray? { get }
```

## Parameters

- `key`: The key under which to get the XPCArray.
- `type`: The expected type of the resulting value.

## Return Value

Return Value An XPCArray value or nil if no such value was found.
