Show / Hide Table of Contents

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 Source

Description

Gets or sets the description.

Declaration
public string Description { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

DistributionTags

Gets or sets the distribution tags.

Declaration
public Dictionary<string, string> DistributionTags { get; set; }
Property Value
Type Description
Dictionary<System.String, System.String>
| Improve this Doc View Source

Id

Gets or sets the identifier.

Declaration
public string Id { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Name

Gets or sets the name.

Declaration
public string Name { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Versions

Gets or sets the versions.

Declaration
public Dictionary<string, RegistryPackageManifest.VersionInfo> Versions { get; set; }
Property Value
Type Description
Dictionary<System.String, RegistryPackageManifest.VersionInfo>

Methods

| Improve this Doc View Source

HighestVersion()

Gets the highest version.

Declaration
public string HighestVersion()
Returns
Type Description
System.String

The highest version for this package.

| Improve this Doc View Source

IsFirstHigherVersion(String, String)

Query if 'first' is first higher version.

Declaration
public static bool IsFirstHigherVersion(string first, string second)
Parameters
Type Name Description
System.String first

The first.

System.String second

The second.

Returns
Type Description
System.Boolean

True if first higher version, false if not.

| Improve this Doc View Source

Parse(String)

Parses.

Declaration
public static RegistryPackageManifest Parse(string json)
Parameters
Type Name Description
System.String json

The JSON.

Returns
Type Description
RegistryPackageManifest

A RegistryPackageInfo.

  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX