Interface IPackageIdentity
Interface that represents the unique identity of a package (update) in the object model.
Inherited Members
System.IComparable.CompareTo(System.Object)
Namespace: Microsoft.PackageGraph.ObjectModel
Assembly: package-graph-microsoft-update.dll
Syntax
public interface IPackageIdentity : IComparable
Properties
| Improve this Doc View SourceOpenId
A unique ID for a package across all partitions. Implementations of this interface expose a partition specific ID as well.
Declaration
byte[] OpenId { get; }
Property Value
Type | Description |
---|---|
System.Byte[] |
OpenIdHex
HEX representation of the unique ID.
Declaration
string OpenIdHex { get; }
Property Value
Type | Description |
---|---|
System.String |
Partition
The partition to which the update belongs. Possible values are Linux, Microsoft, Nuget, etc.
Declaration
string Partition { get; }
Property Value
Type | Description |
---|---|
System.String |