ITestApiNew Method

Overload List

New(String, String) Generate data class object and can be set to the cache

Example

C#
var testApi = ctx.Use<ITestApi>();
var data = testApi.New("TestSampleData");
NewT(String) Generate value primitive data types and can be set to the cache

Example

C#
var testApi = ctx.Use<ITestApi>();
testApi.New<int>("TestSampleData");

See Also