Skip to content

Release v1.2.0

Compare
Choose a tag to compare
@mikeproeng37 mikeproeng37 released this 04 Oct 18:17
· 234 commits to master since this release

October 4, 2017

New Features

  • Introduce Numeric Metrics - This allows you to include a floating point value that is used to track numeric values in your experiments.
var eventTags = new EventTags()
    {
        { "value", 10.00 },
    };

OptimizelyClient.Track(eventKey, userId, attributes, eventTags);
  • Introduce Forced Variation - This allows you to force users into variations programmatically in real time for QA purposes without requiring datafile downloads from the network.
var result = OptimizelyClient.setForcedVariation(experimentKey, userId, forcedVariationKey);