2 instantiations of Cve
Microsoft.Deployment.DotNet.Releases (2)
Cve.cs (1)
81
new
(id, new Uri(address));
ProductRelease.cs (1)
153
cves.Add(
new
(enumerator.Current));
13 references to Cve
dotnet (1)
SdkVulnerability\SdkVulnerabilityChecker.cs (1)
84
foreach (
var
cve in releaseList[i].Cves)
Microsoft.Deployment.DotNet.Releases (12)
Cve.cs (9)
12
public 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>
58
public bool Equals(
Cve
other)
71
return Equals(obj as
Cve
);
80
internal static
Cve
Create(string id, string address) =>
ProductRelease.cs (3)
42
public ReadOnlyCollection<
Cve
> Cves
145
var cves = new List<
Cve
>();
157
Cves = new ReadOnlyCollection<
Cve
>(cves);