Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. var telemetry = new TelemetryClient();
  2. telemetry.TrackMetric("Test Metric: 1", 50); // <<< BAD with colon
  3. telemetry.TrackMetric("Test Metric 1", 50); // <<< WORKS with spaces
  4. telemetry.TrackMetric("TestMetric1", 50); // <<< WORKS
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement