Table of Contents

Method CurrentSitePinResultsFilling<T>

Namespace
NationalInstruments.SemiconductorTestLibrary.Common
Assembly
NationalInstruments.SemiconductorTestLibrary.Abstractions.dll

CurrentSitePinResultsFilling<T>(SitePinInfo, Dictionary<int, IDictionary<string, T>>, T)

Associates a site pin result with a pin name or pin group name in the provided site pin results dictionary. Current result of the primary pin is returned with the pin group name in case of merging. Current result of individual pins are accumulated and returned with the pin group name in case of ganging.

public static void CurrentSitePinResultsFilling<T>(SitePinInfo sitePinInfo, Dictionary<int, IDictionary<string, T>> sitePinResults, T result)

Parameters

sitePinInfo SitePinInfo

The NationalInstruments.SemiconductorTestLibrary.Common.SitePinInfo object containing pin and site information.

sitePinResults Dictionary<int, IDictionary<string, T>>

The dictionary to update with the result. In this dictionary, the key is the site number and the value is a dictionary that maps pin names or pin group names to results.

result T

The result to associate with the site pin.

Type Parameters

T

The type of the result to associate.