public static object GetContextKey(this ScenarioContext context, ContextKey key) { return(GetContextKey(context, key.ToString())); }
public static void SetContextKey(this ScenarioContext context, ContextKey key, object keyValue) { SetContextKey(context, key.ToString(), keyValue); }
public static bool ContainsKey(this ScenarioContext context, ContextKey key) { return(context.ContainsKey(key.ToString())); }