public static void TestBlobStorage6()
 {
     BlobUtilities BlobUtilities = new
     BlobUtilities("DefaultEndpointsProtocol=http;AccountName=" + YOURSTORAGEACCOUNT + ";AccountKey=" + YOURKEY + "");
     try
     {
         SortedList<string, string> properties = new SortedList<string, string>();
         properties.Add("ContentType", "text/html");
         Console.Write("Set blob properties ");
         if (BlobUtilities.SetBlobProperties("samplecontainer1", "blob1.txt", properties))
             Console.WriteLine("true");
         else
             Console.WriteLine("false");
         Separator();
         Console.Write("Get blob properties ");
         if (BlobUtilities.GetBlobProperties("samplecontainer1", "blob1.txt", out properties))
         {
             Console.WriteLine("true");
             foreach (KeyValuePair<string, string> item in properties)
             {
                 Console.WriteLine(item.Key + ": " + item.Value);
             }
         }
         else
             Console.WriteLine("false");
         Separator();
     }
     catch (Exception ex) { Console.WriteLine("EXCEPTION " + ex.ToString()); }
 }