...
Code Block | ||
---|---|---|
| ||
/* * Example CP */ using spring_mobile_wp7; /* * Generating SpringMobile entity with site id and application name */ SpringMobile spring = new SpringMobile("<site>", "myApplication1"); /* * Sending the start of the applicationCP to the measurement system */ Dictionary<String, String> target = new Dictionary<string, string>(); target.Add("cp", "Mainpage"); spring.commit(target); ... /* |
...