2 instantiations of Cve
Microsoft.Deployment.DotNet.Releases (2)
Cve.cs (1)
81new(id, new Uri(address));
ProductRelease.cs (1)
153cves.Add(new(enumerator.Current));
13 references to Cve
dotnet (1)
SdkVulnerability\SdkVulnerabilityChecker.cs (1)
84foreach (var cve in releaseList[i].Cves)
Microsoft.Deployment.DotNet.Releases (12)
Cve.cs (9)
12public class Cve : IEquatable<Cve> 33/// Creates a new <see cref="Cve"/> instance from a <see cref="JsonElement"/>. 43/// Creates a new <see cref="Cve"/> instance. 54/// Determines whether the specified <see cref="Cve"/> is equal to this instance. 56/// <param name="other">The <see cref="Cve"/> to this instance.</param> 57/// <returns><see langword="true"/> if the specified <see cref="Cve"/> is equal to this instance; <see langword="false"/> otherwise.</returns> 58public bool Equals(Cve other) 71return Equals(obj as Cve); 80internal static Cve Create(string id, string address) =>
ProductRelease.cs (3)
42public ReadOnlyCollection<Cve> Cves 145var cves = new List<Cve>(); 157Cves = new ReadOnlyCollection<Cve>(cves);