13 references to SectionName
Aspire.Hosting (5)
Pipelines\Internal\DeploymentStateManagerBase.cs (5)
213
SetNestedPropertyValue(_state, section.
SectionName
, section.Data.DeepClone().AsObject());
233
SetNestedPropertyValue(_state, section.
SectionName
, null);
254
if (_sections.TryGetValue(section.
SectionName
, out var metadata))
259
$"Concurrency conflict detected in section '{section.
SectionName
}'. " +
267
_sections[section.
SectionName
] = new SectionMetadata(section.Version + 1);
Aspire.Hosting.Azure.Tests (1)
ProvisioningTestHelpers.cs (1)
629
_state[section.
SectionName
] = section.Data;
Aspire.Hosting.Tests (7)
Orchestrator\ParameterProcessorTests.cs (2)
1614
_unflattenedState[section.
SectionName
] = section.Data.DeepClone().AsObject();
1628
_unflattenedState.Remove(section.
SectionName
);
Publishing\DeploymentStateManagerTests.cs (5)
28
Assert.Equal("Parameters", section.
SectionName
);
64
oldSection = new DeploymentStateSection(section1.
SectionName
, section1.Data, oldVersion);
233
Assert.Equal("TestParent:TestChild:TestGrandchild", retrievedSection.
SectionName
);
303
var oldSection = new DeploymentStateSection(section1.
SectionName
, section1.Data, oldVersion);
325
Assert.Equal("Nonexistent:Path:Here", section.
SectionName
);