Table of Contents

Class Patch

Namespace
Homa.Sdk.Configuration
Assembly
Homa.Sdk.Configuration.dll

Define operations to apply to config(s).

public class Patch
Inheritance
Patch
Inherited Members

Constructors

Patch(Guid, IEnumerable<IPatchOperation>)

Instantiate a new patch.

public Patch(Guid guid, IEnumerable<IPatchOperation> operations)

Parameters

guid Guid

Unique identifier of the patch. Used for patch comparison.

operations IEnumerable<IPatchOperation>

Ordered collection of operations to apply to config(s).

Properties

Guid

Unique identifier of the patch. Used for patch comparison.

public Guid Guid { get; }

Property Value

Guid

Operations

Ordered collection of operations to apply to config(s).

public IReadOnlyList<IPatchOperation> Operations { get; }

Property Value

IReadOnlyList<IPatchOperation>

See Also