# TryGetManifestInfo(string, string, out PackageManifestInfo)

> Queries the package version database.

## Definition

* **Type:** Method
* **Namespace:** [Unity.ProjectAuditor.Editor.Modules](/engine/6000.7/script-reference/unity/projectauditor/editor/modules.md)
* **Assembly:** UnityEditor

## TryGetManifestInfo(string, string, PackageManifestInfo)

```csharp
public bool TryGetManifestInfo(string editorVersionPrefix, string packageName, out PackageManifestDatabase.PackageManifestInfo manifest)
```

### Parameters

**** (\[string]\(https\://learn.microsoft.com/dotnet/api/system.string)): The Unity version to query. Usually a future version, to detect what will change during an upgrade.**** (\[string]\(https\://learn.microsoft.com/dotnet/api/system.string)): The package to query.**** (\[PackageManifestInfo]\(/engine/6000.7/script-reference/unity/projectauditor/editor/modules/packagemanifestdatabase/packagemanifestinfo)): The information about the package in the desired version.

### Returns

| Type                                                          | Description                                                                   |
| ------------------------------------------------------------- | ----------------------------------------------------------------------------- |
| [bool](https://learn.microsoft.com/dotnet/api/system.boolean) | Returns true if the database contains information about the supplied package. |
