Table of Contents

Interface IUpdateableOptions<TOptions>

Namespace
Acuit.Pinpoint.Common.Options
Assembly
Acuit.Pinpoint.Common.dll

Used to register TOptions instances that can be updated via IOptionsUpdater<TOptions>.

public interface IUpdateableOptions<TOptions>

Type Parameters

TOptions

The options type being changed.

Properties

Name

The name of the option instance.

string? Name { get; }

Property Value

string

Methods

UpdateValue(TOptions)

Updates the options value.

void UpdateValue(TOptions value)

Parameters

value TOptions

The new options value.