Beispiel #1
0
 void TestMe(BlobStoreClient c, bool behave)
 {
     {
         CancellationToken token = new CancellationToken();
         var z = c.BlobExists(5, token);
         if (!behave)
         {
             c.BlobExists(0, token);
         }
     }
 }
Beispiel #2
0
        void Test()
        {
            var g = new BlobStoreClient();

            TestMe(g, behave);
        }