# SupportedResolutions

> A list of all the supported device resolutions for taking pictures.

## Definition

* **Type:** Property
* **Namespace:** [UnityEngine.Windows.WebCam](/engine/6000.6/script-reference/unityengine/windows/webcam.md)
* **Assembly:** UnityEngine.CoreModule

```csharp
public static IEnumerable<Resolution> SupportedResolutions { get; }
```

### Remarks

```csharp
using UnityEngine;
using System.Collections;
using UnityEngine.Windows.WebCam;

public class PhotoCaptureResolutionExample : MonoBehaviour
{
    // Use this for initialization
    void Start()
    {
        foreach (Resolution resolution in PhotoCapture.SupportedResolutions)
        {
            Debug.Log(resolution);
        }
    }
}
```

Prints out a list of all the supported device resolutions that can be used when taking pictures.
