Beispiel #1
0
            public async Task TestModel(ISharedStorage sharedStorage, StringResult body)
            {
                sharedStorage.Items["body"] = body;

                await Task.Delay(1);
            }
Beispiel #2
0
 public Filter(ISharedStorage sharedStorage)
 {
     _sharedStorage = sharedStorage;
 }
Beispiel #3
0
            public async Task TestString(ISharedStorage sharedStorage, string pathValue, string id, string id2)
            {
                sharedStorage.Items["id"] = pathValue + id + id2;

                await Task.Delay(1);
            }