> For the complete documentation index, see [llms.txt](https://xplat.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://xplat.gitbook.io/docs/xplat.applicationmodel/ipackageid.md).

# IPackageId

> Namespace: XPlat.ApplicationModel

Provides package identification info, such as name, version, and publisher.

```csharp
public interface IPackageId
```

## Supported platforms

| Platform        | Version    |
| --------------- | ---------- |
| .NET Standard   | 2.0        |
| Xamarin.Android | 9.0        |
| Xamarin.iOS     | 1.0        |
| UWP             | 10.0.16299 |

## Properties

### Name

Gets the name of the package.

```csharp
string Name { get; }
```

### Version

Gets the package version info.

```csharp
PackageVersion Version { get; }
```

### FullName

Gets the full name of the package.

```csharp
string FullName { get; }
```

## Related information

### References

[PackageId - Microsoft Docs](https://docs.microsoft.com/en-us/uwp/api/windows.applicationmodel.packageid)
