Click or drag to resize

ITestApiNew Method

Overload List
  NameDescription
Public methodCode exampleNewT(String)
Generate value primitive data types and can be set to the cache
Examples
var testApi = ctx.Use<ITestApi>();
testApi.New<int>("TestSampleData");
Public methodCode exampleNew(String, String)
Generate data class object and can be set to the cache
Examples
var testApi = ctx.Use<ITestApi>();
var data = testApi.New("TestSampleData");
Top
See Also