public void SetGet() { var server = new ParameterServer(new Uri("http://localhost")); server.HasParam("test", "test_param")[2].Is(false); server.SetParam("test", "test_param", 1234); server.HasParam("test", "test_param")[2].Is(true); server.GetParam("test", "test_param")[2].Is(1234); }
public object[] HasParam(string callerId, string key) { return(_parameterServer.HasParam(callerId, key)); }