# List

> Lists the packages the project depends on.

## Definition

* **Type:** Method
* **Namespace:** [UnityEditor.PackageManager](/engine/6000.3/script-reference/unityeditor/packagemanager.md)
* **Assembly:** UnityEditor

## List(bool, bool)

Lists the packages the project depends on.

```csharp
public static ListRequest List(bool offlineMode, bool includeIndirectDependencies)
```

### Parameters

**** (\[bool]\(https\://learn.microsoft.com/dotnet/api/system.boolean)): Specifies whether or not the Package Manager requests the latest information about the project's packages from the remote Unity package registry. When `offlineMode` is `true`, the [PackageInfo](/engine/6000.3/script-reference/unityeditor/packagemanager/packageinfo.md) objects in the [PackageCollection](/engine/6000.3/script-reference/unityeditor/packagemanager/packagecollection.md) returned by the Package Manager contain information obtained from the local package cache, which could be out of date.**** (\[bool]\(https\://learn.microsoft.com/dotnet/api/system.boolean)): Set to `true` to include indirect dependencies in the [PackageCollection](/engine/6000.3/script-reference/unityeditor/packagemanager/packagecollection.md) returned by the Package Manager. Indirect dependencies include packages referenced in the manifests of project packages or in the manifests of other indirect dependencies. Set to `false` to include only the packages listed directly in the project manifest. **Note:** The version reported might not match the version requested in the project manifest. For more information, see [Dependency and resolution](/engine/6000.3/manual/packages-list/dependencies-lp/upm-dependencies.md).

### Returns

| Type                                                                                              | Description                                                                                                                                                                                                                                                                                                                           |
| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [ListRequest](/engine/6000.3/script-reference/unityeditor/packagemanager/requests/listrequest.md) | A [ListRequest](/engine/6000.3/script-reference/unityeditor/packagemanager/requests/listrequest.md) instance, which you can use to get the [PackageCollection](/engine/6000.3/script-reference/unityeditor/packagemanager/packagecollection.md) representing the packages used in the project from the `ListRequest.Result` property. |

### Remarks

Computes and returns the set of all packages that the project depends on (the resolved dependency graph) without physically downloading or installing any packages. The operation result contains only the resolved dependency graph as a [PackageCollection](/engine/6000.3/script-reference/unityeditor/packagemanager/packagecollection.md).

`List()` is an asynchronous operation. Before the operation is complete, you can use the `ListRequest` instance to monitor the asynchronous operation.

**Note:** Make sure any other Client operations have completed before calling this method. For more information, see the note on the [Client](/engine/6000.3/script-reference/unityeditor/packagemanager/client.md) class reference page. Additional Resources: [PackageInfo.GetAllRegisteredPackages](/engine/6000.3/script-reference/unityeditor/packagemanager/packageinfo/getallregisteredpackages.md)

## List(bool)

Lists the packages the project depends on.

```csharp
public static ListRequest List(bool offlineMode)
```

### Parameters

**** (\[bool]\(https\://learn.microsoft.com/dotnet/api/system.boolean)): Specifies whether or not the Package Manager requests the latest information about the project's packages from the remote Unity package registry. When `offlineMode` is `true`, the [PackageInfo](/engine/6000.3/script-reference/unityeditor/packagemanager/packageinfo.md) objects in the [PackageCollection](/engine/6000.3/script-reference/unityeditor/packagemanager/packagecollection.md) returned by the Package Manager contain information obtained from the local package cache, which could be out of date.

### Returns

| Type                                                                                              | Description                                                                                                                                                                                                                                                                                                                           |
| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [ListRequest](/engine/6000.3/script-reference/unityeditor/packagemanager/requests/listrequest.md) | A [ListRequest](/engine/6000.3/script-reference/unityeditor/packagemanager/requests/listrequest.md) instance, which you can use to get the [PackageCollection](/engine/6000.3/script-reference/unityeditor/packagemanager/packagecollection.md) representing the packages used in the project from the `ListRequest.Result` property. |

### Remarks

Computes and returns the set of all packages that the project depends on (the resolved dependency graph) without physically downloading or installing any packages. The operation result contains only the resolved dependency graph as a [PackageCollection](/engine/6000.3/script-reference/unityeditor/packagemanager/packagecollection.md).

`List()` is an asynchronous operation. Before the operation is complete, you can use the `ListRequest` instance to monitor the asynchronous operation.

**Note:** Make sure any other Client operations have completed before calling this method. For more information, see the note on the [Client](/engine/6000.3/script-reference/unityeditor/packagemanager/client.md) class reference page. Additional Resources: [PackageInfo.GetAllRegisteredPackages](/engine/6000.3/script-reference/unityeditor/packagemanager/packageinfo/getallregisteredpackages.md)

## List()

Lists the packages the project depends on.

```csharp
public static ListRequest List()
```

### Returns

| Type                                                                                              | Description                                                                                                                                                                                                                                                                                                                           |
| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [ListRequest](/engine/6000.3/script-reference/unityeditor/packagemanager/requests/listrequest.md) | A [ListRequest](/engine/6000.3/script-reference/unityeditor/packagemanager/requests/listrequest.md) instance, which you can use to get the [PackageCollection](/engine/6000.3/script-reference/unityeditor/packagemanager/packagecollection.md) representing the packages used in the project from the `ListRequest.Result` property. |

### Remarks

Computes and returns the set of all packages that the project depends on (the resolved dependency graph) without physically downloading or installing any packages. The operation result contains only the resolved dependency graph as a [PackageCollection](/engine/6000.3/script-reference/unityeditor/packagemanager/packagecollection.md).

`List()` is an asynchronous operation. Before the operation is complete, you can use the `ListRequest` instance to monitor the asynchronous operation.

**Note:** Make sure any other Client operations have completed before calling this method. For more information, see the note on the [Client](/engine/6000.3/script-reference/unityeditor/packagemanager/client.md) class reference page. Additional Resources: [PackageInfo.GetAllRegisteredPackages](/engine/6000.3/script-reference/unityeditor/packagemanager/packageinfo/getallregisteredpackages.md)
