Esempio n. 1
0
 public static IObservable <string> FilterString(this IObservable <Pv2ParamValueAndTypePair> src,
                                                 Pv2StringParamType type)
 {
     return(src.Filter <Pv2StringParamType, Pv2StringParamValue, string>(type));
 }
Esempio n. 2
0
 public static string GetValueFromConfig(this Pv2StringParamType src, IConfiguration config,
                                         string configSuffix)
 {
     return(src.GetValue(src.ReadFromConfig(config, configSuffix)));
 }