API Reference
Class
TrustExplorerFilter
Filters/summarizes trust assessments produced by TrustExplorer.
Inheritance
- Object
- TrustExplorerFilter
Methods
public static IReadOnlyList<Assessment> Get(Options o) #Returns:
IReadOnlyList<Assessment>Returns trust assessments filtered according to the provided o options.
Parameters
- o ADPlayground.Trusts.TrustExplorerFilter.Options
- Filter options.
Returns
Filtered list of trust assessments.
public static IReadOnlyList<TrustSummaryRow> GetSummaryBy(IEnumerable<Assessment> src, String by) #Returns:
IReadOnlyList<TrustSummaryRow>Produces a simple count grouped by trust type or direction.
Parameters
- src System.Collections.Generic.IEnumerable{ADPlayground.Trusts.TrustExplorer.Assessment}
- Source trust assessments.
- by System.String
- Either "Type" or "Direction" (case‑insensitive).
Returns
Summary rows with group key and count.
public static IReadOnlyList<TrustSummaryMatrixRow> GetSummaryMatrix(IEnumerable<Assessment> src) #Returns:
IReadOnlyList<TrustSummaryMatrixRow>Builds a 2‑D matrix summary combining type and direction counts.
Parameters
- src System.Collections.Generic.IEnumerable{ADPlayground.Trusts.TrustExplorer.Assessment}
- Source trust assessments.
Returns
Matrix rows with Type, Direction, and Count.