2 writes to _state
Aspire.Hosting (2)
Publishing\Internal\DeploymentStateManagerBase.cs (2)
172
_state
= UnflattenJsonObject(flattenedState);
176
_state
= [];
7 references to _state
Aspire.Hosting (7)
Publishing\Internal\DeploymentStateManagerBase.cs (7)
155
if (_isStateLoaded &&
_state
is not null)
157
return
_state
;
180
return
_state
;
226
var sectionData =
_state
?.TryGetPropertyValue(sectionName, out var sectionNode) == true && sectionNode is JsonObject obj
243
if (
_state
is null)
275
_state
[section.SectionName] = section.Data.DeepClone().AsObject();
276
await SaveStateToStorageAsync(
_state
, cancellationToken).ConfigureAwait(false);