4 writes to Name
Microsoft.NET.Sdk.StaticWebAssets.Tasks (4)
_generated\13\StaticWebAssetsJsonSerializerContext.StaticWebAssetEndpointSelector.g.cs (1)
59
Setter = static (obj, value) => global::System.Runtime.CompilerServices.Unsafe.Unbox<global::Microsoft.AspNetCore.StaticWebAssets.Tasks.StaticWebAssetEndpointSelector>(obj).
Name
= value!,
ApplyCompressionNegotiation.cs (1)
246
Name
= "Content-Encoding",
UpdateStaticWebAssetEndpoints.cs (2)
209
(name, value) => new StaticWebAssetEndpointSelector {
Name
= name, Value = value, Quality = operation.Quality },
321
Name
= operation.Name,
15 references to Name
Microsoft.NET.Sdk.StaticWebAssets.Tasks (15)
_generated\13\StaticWebAssetsJsonSerializerContext.StaticWebAssetEndpointSelector.g.cs (2)
58
Getter = static obj => ((global::Microsoft.AspNetCore.StaticWebAssets.Tasks.StaticWebAssetEndpointSelector)obj).
Name
,
120
writer.WriteString(PropName_Name, ((global::Microsoft.AspNetCore.StaticWebAssets.Tasks.StaticWebAssetEndpointSelector)value).
Name
);
ApplyCompressionNegotiation.cs (1)
312
if (string.Equals(selector.
Name
, "Content-Encoding", StringComparison.Ordinal))
Data\StaticWebAssetEndpoint.cs (2)
331
var selectorComparison = Selectors[i].
Name
.CompareTo(other.Selectors[i].
Name
);
Data\StaticWebAssetEndpointSelector.cs (6)
33
var nameComparison = string.CompareOrdinal(
Name
, other.
Name
);
52
string.Equals(
Name
, other.
Name
, StringComparison.Ordinal) &&
64
return HashCode.Combine(
Name
, Value, Quality);
68
private string GetDebuggerDisplay() => $"Name: {
Name
}, Value: {Value}, Quality: {Quality}";
FilterStaticWebAssetEndpoints.cs (1)
105
if (MeetsCriteria(criteria, selector.
Name
, selector.Value))
UpdateStaticWebAssetEndpoints.cs (3)
124
var (selectors, selectorRemoved) = RemoveAllIfFound(endpoint.Selectors, s => s.
Name
, s => s.Value, operation.Name, operation.Value);
207
s => s.
Name
,
282
var (selectors, selectorRemoved) = RemoveFirstIfFound(endpoint.Selectors, s => s.
Name
, s => s.Value, operation.Name, operation.Value);