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