Class DiffCompletedEventArgs
Additional information for difference completed events.
Inheritance
System.Object
DiffCompletedEventArgs
Namespace: FhirCodeGenBlazor.Models
Assembly: FhirCodeGenBlazor.dll
Syntax
public class DiffCompletedEventArgs : EventArgs
Constructors
| Improve this Doc View SourceDiffCompletedEventArgs(String, String, DiffResults)
Initializes a new instance of the DiffCompletedEventArgs class.
Declaration
public DiffCompletedEventArgs(string packageKeyA, string packageKeyB, DiffResults results)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | packageKeyA | The package key a. |
| System.String | packageKeyB | The package key b. |
| DiffResults | results | The results. |
Properties
| Improve this Doc View SourcePackageKeyA
Gets or sets the package key a.
Declaration
public string PackageKeyA { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
PackageKeyB
Gets or sets the package key b.
Declaration
public string PackageKeyB { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Results
Gets or sets the difference results.
Declaration
public DiffResults Results { get; set; }
Property Value
| Type | Description |
|---|---|
| DiffResults |