Beispiel #1
0
        private void TrackSpecialState <TState>(TState state)
        {
            var telemetry = ManagedStateToTelemetry[typeof(TState)](state);

            telemetryClient.Track(telemetry);
        }
Beispiel #2
0
 private static bool IsSpecialState <TState>(TState state)
 {
     return(ManagedStateToTelemetry.ContainsKey(typeof(TState)));
 }