1 write to Url
NuGet.Protocol (1)
Model\PackageVulnerabilityInfo.cs (1)
34
Url
= url ?? throw new ArgumentNullException(paramName: nameof(url));
16 references to Url
NuGet.CommandLine.XPlat (1)
Commands\PackageReferenceCommands\ListPackage\ListPackageCommandRunner.cs (1)
340
.Select(v => new PackageVulnerabilityMetadata(v.
Url
, (int)v.Severity))
NuGet.Commands (6)
RestoreCommand\Utility\AuditUtility.cs (6)
148
if (SuppressedAdvisories?.TryGetValue(knownVulnerability.
Url
.OriginalString, out bool advisoryUsed) == true)
154
SuppressedAdvisories[knownVulnerability.
Url
.OriginalString] = true;
277
foreach (var kvp2 in auditInfo.GraphsPerVulnerability.OrderBy(v => v.Key.
Url
.OriginalString))
286
vulnerability.
Url
);
398
if (SuppressedAdvisories?.TryGetValue(knownVulnerability.
Url
.OriginalString, out bool advisoryUsed) == true)
404
SuppressedAdvisories[knownVulnerability.
Url
.OriginalString] = true;
NuGet.PackageManagement (2)
Audit\AuditChecker.cs (2)
262
vulnerability.
Url
);
272
if (CheckIfAdvisoryHasBeenSuppressed(auditSetting?.SuppressedAdvisories, vulnerability.
Url
.OriginalString, ref TotalWarningsSuppressedCount, ref DistinctAdvisoriesSuppressedCount))
NuGet.Protocol (7)
_generated\4\JsonContext.PackageVulnerabilityInfo.g.cs (2)
58
Getter = static obj => ((global::NuGet.Protocol.Model.PackageVulnerabilityInfo)obj).
Url
,
129
global::System.Text.Json.JsonSerializer.Serialize(writer, ((global::NuGet.Protocol.Model.PackageVulnerabilityInfo)value).
Url
, Uri);
Converters\PackageVulnerabilityInfoConverter.cs (1)
67
serializer.Serialize(writer, value.
Url
);
Model\PackageVulnerabilityInfo.cs (4)
27
/// <param name="url">The value for <see cref="
Url
"/></param>
48
Url
== other.
Url
&&
61
hashCode.AddObject(
Url
.OriginalString);