IOptionsMonitorCache<TOptions>.GetOrAdd Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Ruft eine benannte Optionsinstanz ab oder fügt eine neue Instanz hinzu, die mit createOptions
erstellt wurde.
public:
TOptions GetOrAdd(System::String ^ name, Func<TOptions> ^ createOptions);
public TOptions GetOrAdd (string name, Func<TOptions> createOptions);
public TOptions GetOrAdd (string? name, Func<TOptions> createOptions);
abstract member GetOrAdd : string * Func<'Options (requires 'Options : null)> -> 'Options
Public Function GetOrAdd (name As String, createOptions As Func(Of TOptions)) As TOptions
Parameter
- name
- String
Der Name der Optionsinstanz.
- createOptions
- Func<TOptions>
Die Funktion, die zum Erstellen der neuen Instanz verwendet wird.
Gibt zurück
- TOptions
Die Optionsinstanz.