Ejemplo n.º 1
0
 internal SearchResult(SearchResult searchResult, ConversionPath relativeConversion)
     : this(searchResult.Feature, relativeConversion + searchResult.ConverterPath)
 {
     Tracer.Assert(searchResult.Source == relativeConversion.Destination);
 }
Ejemplo n.º 2
0
 internal bool HasHigherPriority(SearchResult other)
     => (Feature is AccessFeature) == (other.Feature is AccessFeature)
         ? ConverterPath.HasHigherPriority(other.ConverterPath)
         : Feature is AccessFeature;
Ejemplo n.º 3
0
 internal SearchResultWithConversion(SearchResult parent, IProxyType proxyType)
 {
     _parent = parent;
     _proxyType = proxyType;
 }