1 write to _rangeStart
Aspire.Hosting (1)
Dcp\ProxylessEndpointPortAllocator.cs (1)
63
_rangeStart
= rangeStart;
4 references to _rangeStart
Aspire.Hosting (4)
Dcp\ProxylessEndpointPortAllocator.cs (4)
135
var port =
_rangeStart
+ candidate;
195
return new InvalidOperationException($"No available ports were found in the configured proxyless endpoint port range {
_rangeStart
}-{_rangeEnd}.");
211
if (port <
_rangeStart
|| port > _rangeEnd)
217
index = port -
_rangeStart
;