Show / Hide Table of Contents

Class DiffItem<T>

Generic class representing the diff of an item when generating a diff between BOMs.

Inheritance
object
DiffItem<T>
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: CycloneDX.Utils
Assembly: CycloneDX.Utils.dll
Syntax
public class DiffItem<T>
Type Parameters
Name Description
T

Properties

| Edit this page View Source

Added

Declaration
public List<T> Added { get; set; }
Property Value
Type Description
List<T>
| Edit this page View Source

Removed

Declaration
public List<T> Removed { get; set; }
Property Value
Type Description
List<T>
| Edit this page View Source

Unchanged

Declaration
public List<T> Unchanged { get; set; }
Property Value
Type Description
List<T>
  • Edit this page
  • View Source
In this article
Back to top Generated by DocFX