ITest
|
| Name | Description | |
|---|---|---|
|
|
New(String, String) |
Generate data class object and can be set to the cache
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
C# var testApi = ctx.Use<ITestApi>(); testApi.New<int>("TestSampleData"); |