TestimoX

API Reference

Class

TrustExplorerFilter

Namespace ADPlayground.Trusts
Assembly ADPlayground
Modifiers static

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 requiredposition: 0
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} requiredposition: 0
Source trust assessments.
by System.String requiredposition: 1
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} requiredposition: 0
Source trust assessments.

Returns

Matrix rows with Type, Direction, and Count.