Class RegistryPackageManifest
Information about the package version.
Inheritance
System.Object
RegistryPackageManifest
Namespace: Microsoft.Health.Fhir.SpecManager.PackageManager
Assembly: Microsoft.Health.Fhir.SpecManager.dll
Syntax
public class RegistryPackageManifest : object
Properties
| Improve this Doc View SourceDescription
Gets or sets the description.
Declaration
public string Description { get; set; }
Property Value
Type | Description |
---|---|
System. |
DistributionTags
Gets or sets the distribution tags.
Declaration
public Dictionary<string, string> DistributionTags { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<System. |
Id
Gets or sets the identifier.
Declaration
public string Id { get; set; }
Property Value
Type | Description |
---|---|
System. |
Name
Gets or sets the name.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System. |
Versions
Gets or sets the versions.
Declaration
public Dictionary<string, RegistryPackageManifest.VersionInfo> Versions { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<System. |
Methods
| Improve this Doc View SourceHighestVersion()
Gets the highest version.
Declaration
public string HighestVersion()
Returns
Type | Description |
---|---|
System. |
The highest version for this package. |
IsFirstHigherVersion(String, String)
Query if 'first' is first higher version.
Declaration
public static bool IsFirstHigherVersion(string first, string second)
Parameters
Type | Name | Description |
---|---|---|
System. |
first | The first. |
System. |
second | The second. |
Returns
Type | Description |
---|---|
System. |
True if first higher version, false if not. |
Parse(String)
Parses.
Declaration
public static RegistryPackageManifest Parse(string json)
Parameters
Type | Name | Description |
---|---|---|
System. |
json | The JSON. |
Returns
Type | Description |
---|---|
Registry |
A RegistryPackageInfo. |