Eigenverft.NetLib.Infrastructure
  • Guides
  • API
Show / Hide Table of Contents
  • Eigenverft.NetLib.Infrastructure.Hosting.Configuration.ConfigurationSets
    • ConfigurationSetApplyMode
    • ConfigurationSetBuilderBindingExtensions
    • ConfigurationSetCoordinatorExtensions
    • ConfigurationSetDefinition
    • ConfigurationSetEventArgs
    • ConfigurationSetEventKind
    • ConfigurationSetNotification
    • ConfigurationSetParticipantSwitchResult
    • ConfigurationSetPendingRestartChange
    • ConfigurationSetRegistration
    • ConfigurationSetStateApplyResult
    • ConfigurationSetStateApplyStatus
    • ConfigurationSetStateFailureKind
    • ConfigurationSetStateStatus
    • ConfigurationSetStateStoreEventArgs
    • ConfigurationSetStateStoreEventKind
    • ConfigurationSetStateStoreExtensions
    • ConfigurationSetStateStoreStatus
    • ConfigurationSetStatus
    • ConfigurationSetSwitchFailureKind
    • ConfigurationSetSwitchResult
    • ConfigurationSetSwitchStatus
    • ConfigurationSetSwitchableJsonExtensions
    • IConfigurationSetCoordinator
    • IConfigurationSetDesiredStateStore
    • IConfigurationSetEventHub
    • IConfigurationSetManager
    • IConfigurationSetStateStore
  • Eigenverft.NetLib.Infrastructure.Hosting.Configuration.Diagnostics
    • ConfigurationPrecedenceDiagnosticsExtensions
  • Eigenverft.NetLib.Infrastructure.Hosting.Configuration.Sources
    • HostApplicationBuilderConfigurationExtensions
  • Eigenverft.NetLib.Infrastructure.Hosting.Configuration.SwitchableJson
    • IJsonConfigurationSourcePreparation
    • ISwitchableJsonConfiguration
    • JsonConfigurationCandidatePreparation
    • JsonConfigurationCandidatePreparations
    • JsonConfigurationSourcePreparationContext
    • JsonConfigurationSourcePreparationException
    • JsonConfigurationValueProtection
    • SwitchableJsonConfigurationEventArgs
    • SwitchableJsonConfigurationEventKind
    • SwitchableJsonConfigurationExtensions
    • SwitchableJsonFailureKind
    • SwitchableJsonPreparationStatus
    • SwitchableJsonRegistrationOptions
    • SwitchableJsonRuntimeFailurePolicy
    • SwitchableJsonSwitchPreparation
    • SwitchableJsonSwitchResult
    • SwitchableJsonSwitchStatus
  • Eigenverft.NetLib.Infrastructure.Hosting.Configuration.Values
    • ConfigurationValueCodec
    • ConfigurationValueCodecs
    • ConfigurationValueKind
    • JsonConfigurationFileEncoder
  • Eigenverft.NetLib.Infrastructure.Hosting.DirectoryLayout
    • AppDirectoryLayout
    • AppDirectoryLayoutFactory
    • DefaultDirectory
    • DefaultDirectoryExtensions
    • DefaultDirectoryNameAttribute
    • HostApplicationBuilderDirectoryLayoutExtensions
    • HostApplicationBuilderFactory
    • IAppDirectoryLayout
  • Eigenverft.NetLib.Infrastructure.Hosting.Logging.BootstrapLogger
    • BootstrapLogger
    • BootstrapLogger<TCategoryName>
  • Eigenverft.NetLib.Infrastructure.Security.Certificates
    • CertificateKeyProfile
    • CertificatePurpose
    • CertificateRecoveryMode
    • CertificateSubject
    • ManagedCertificateAction
    • ManagedCertificateFile
    • ManagedCertificateFileOptions
    • ManagedCertificateResult
    • SelfSignedCertificateFactory
    • SelfSignedCertificateOptions
  • Eigenverft.NetLib.Infrastructure.Security.MachineBinding
    • PhysicalMachineBinding
  • Eigenverft.NetLib.Infrastructure.Text
    • Base92JsonSafeEncoder
  • Eigenverft.NetLib.Infrastructure.Transformations
    • ReversibleStringTransform
    • ReversibleStringTransform.TryReverseDelegate
    • ReversibleStringTransforms

Class ConfigurationSetStateStatus

Immutable state-store view of one configuration-set axis, including desired and active values.

Inheritance
object
ConfigurationSetStateStatus
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Eigenverft.NetLib.Infrastructure.Hosting.Configuration.ConfigurationSets
Assembly: Eigenverft.NetLib.Infrastructure.dll
Syntax
public sealed class ConfigurationSetStateStatus

Properties

| Edit this page View Source

ActiveValue

Gets the last fully coordinated active value; interpret it together with IsConsistent.

Declaration
public string ActiveValue { get; }
Property Value
Type Description
string
| Edit this page View Source

AllowedValues

Gets the authoritative allowed values.

Declaration
public IReadOnlyList<string> AllowedValues { get; }
Property Value
Type Description
IReadOnlyList<string>
| Edit this page View Source

ApplyMode

Gets the code-owned desired-state apply policy.

Declaration
public ConfigurationSetApplyMode ApplyMode { get; }
Property Value
Type Description
ConfigurationSetApplyMode
| Edit this page View Source

BoundParticipantNames

Gets the bound switchable JSON participant identities.

Declaration
public IReadOnlyList<string> BoundParticipantNames { get; }
Property Value
Type Description
IReadOnlyList<string>
| Edit this page View Source

DesiredValue

Gets the desired value owned by the state store.

Declaration
public string DesiredValue { get; }
Property Value
Type Description
string
| Edit this page View Source

HasDesiredStateDrift

Gets whether desired state differs from the last fully coordinated active value.

Declaration
public bool HasDesiredStateDrift { get; }
Property Value
Type Description
bool
| Edit this page View Source

HasPendingRestart

Gets whether the desired startup-only value differs from the active runtime value.

Declaration
public bool HasPendingRestart { get; }
Property Value
Type Description
bool
| Edit this page View Source

InitialValue

Gets the code-defined value used to initialize this set before optional desired state is applied.

Declaration
public string InitialValue { get; }
Property Value
Type Description
string
| Edit this page View Source

IsConsistent

Gets whether all bound participants are known to represent ActiveValue.

Declaration
public bool IsConsistent { get; }
Property Value
Type Description
bool
| Edit this page View Source

Name

Gets the configuration-set identity.

Declaration
public string Name { get; }
Property Value
Type Description
string
| Edit this page View Source

Runtime

Gets the coordinator runtime snapshot.

Declaration
public ConfigurationSetStatus Runtime { get; }
Property Value
Type Description
ConfigurationSetStatus
  • Edit this page
  • View Source
In this article
Back to top