8 writes to Value
Microsoft.NET.Sdk.StaticWebAssets.Tasks (8)
_generated\9\StaticWebAssetsJsonSerializerContext.StaticWebAssetEndpointProperty.g.cs (1)
79
Setter = static (obj, value) => global::System.Runtime.CompilerServices.Unsafe.Unbox<global::Microsoft.AspNetCore.StaticWebAssets.Tasks.StaticWebAssetEndpointProperty>(obj).
Value
= value!,
ApplyCompressionNegotiation.cs (1)
265
Value
= header.Value
ComputeEndpointsForReferenceStaticWebAssets.cs (1)
54
property.
Value
= StaticWebAsset.CombineNormalizedPaths("", asset.BasePath, property.Value, '/');
DefineStaticWebAssetEndpoints.cs (3)
210
properties[i++] = new StaticWebAssetEndpointProperty { Name = value.Key,
Value
= value.Value };
219
properties[i++] = new StaticWebAssetEndpointProperty { Name = "label",
Value
= label };
224
properties[i++] = new StaticWebAssetEndpointProperty { Name = "integrity",
Value
= $"sha256-{asset.Integrity}" };
UpdateStaticWebAssetEndpoints.cs (2)
239
(name, value) => new StaticWebAssetEndpointProperty { Name = name,
Value
= value },
341
Value
= operation.Value
25 references to Value
Microsoft.NET.Sdk.StaticWebAssets.Tasks (25)
_generated\9\StaticWebAssetsJsonSerializerContext.StaticWebAssetEndpointProperty.g.cs (2)
78
Getter = static obj => ((global::Microsoft.AspNetCore.StaticWebAssets.Tasks.StaticWebAssetEndpointProperty)obj).
Value
,
101
writer.WriteString(PropName_Value, ((global::Microsoft.AspNetCore.StaticWebAssets.Tasks.StaticWebAssetEndpointProperty)value).
Value
);
ApplyCompressionNegotiation.cs (2)
354
return string.Equals(compressedFingerprint.
Value
, relatedFingerprint.
Value
, StringComparison.Ordinal);
ComputeEndpointsForReferenceStaticWebAssets.cs (1)
54
property.Value = StaticWebAsset.CombineNormalizedPaths("", asset.BasePath, property.
Value
, '/');
Data\StaticWebAssetEndpoint.cs (2)
361
propertyComparison = EndpointProperties[i].
Value
.CompareTo(other.EndpointProperties[i].
Value
);
Data\StaticWebAssetEndpointProperty.cs (6)
31
0 => string.CompareOrdinal(
Value
, other.
Value
),
40
string.Equals(
Value
, other.
Value
, StringComparison.Ordinal);
50
return HashCode.Combine(Name,
Value
);
54
private string GetDebuggerDisplay() => $"Name: {Name}, Value: {
Value
}";
FilterStaticWebAssetEndpoints.cs (1)
88
if (MeetsCriteria(criteria, property.Name, property.
Value
))
OverrideHtmlAssetPlaceholders.cs (8)
183
resourceAsset.Label = property.
Value
;
187
resourceAsset.Integrity = property.
Value
;
191
resourceAsset.PreloadGroup = property.
Value
;
195
resourceAsset.PreloadRel = property.
Value
;
199
resourceAsset.PreloadAs = property.
Value
;
203
resourceAsset.PreloadPriority = property.
Value
;
207
resourceAsset.PreloadCrossorigin = property.
Value
;
211
if (!int.TryParse(property.
Value
, out int order))
UpdateStaticWebAssetEndpoints.cs (3)
140
var (properties, propertyRemoved) = RemoveAllIfFound(endpoint.EndpointProperties, p => p.Name, p => p.
Value
, operation.Name, operation.Value);
238
p => p.
Value
,
298
var (properties, propertyRemoved) = RemoveFirstIfFound(endpoint.EndpointProperties, p => p.Name, p => p.
Value
, operation.Name, operation.Value);