Exemplo n.º 1
0
 public static WatchViewModel GenerateWatchViewModelForData(this IWatchHandler handler, dynamic value, ProtoCore.RuntimeCore runtimeCore, string tag, bool showRawData = true)
 {
     return(handler.Process(value, runtimeCore, tag, showRawData, new WatchHandlerCallback(handler.GenerateWatchViewModelForData)));
 }
Exemplo n.º 2
0
 //If no dispatch target is found, then invoke base watch handler.
 private WatchViewModel ProcessThing(object obj, string tag, bool showRawData, WatchHandlerCallback callback)
 {
     return(baseHandler.Process(obj, tag, showRawData, callback));
 }
Exemplo n.º 3
0
 public static WatchViewModel GenerateWatchViewModelForData(this IWatchHandler handler, dynamic value,
                                                            IEnumerable <string> preferredDictionaryOrdering, ProtoCore.RuntimeCore runtimeCore, string tag, bool showRawData = true)
 {
     return(handler.Process(value, preferredDictionaryOrdering, runtimeCore, tag, showRawData, new WatchHandlerCallback(handler.GenerateWatchViewModelForData)));
 }
Exemplo n.º 4
0
 //If no dispatch target is found, then invoke base watch handler.
 private WatchViewModel ProcessThing(object obj, List <string> preferredDictionaryOrdering, ProtoCore.RuntimeCore runtimeCore, string tag, bool showRawData, WatchHandlerCallback callback)
 {
     return(baseHandler.Process(obj, preferredDictionaryOrdering, runtimeCore, tag, showRawData, callback));
 }