@@ -58,17 +58,17 @@ public async Task ResourceConstructionDemonstration()
5858 // Construct simple blob resources for data movement
5959 #region Snippet:ResourceConstruction_Blobs
6060 StorageResource container = blobs . FromContainer (
61- new Uri ( "http ://myaccount.blob.core.windows.net/container" ) ) ;
61+ new Uri ( "https ://myaccount.blob.core.windows.net/container" ) ) ;
6262
6363 // Block blobs are the default if no options are specified
6464 StorageResource blockBlob = blobs . FromBlob (
65- new Uri ( "http ://myaccount.blob.core.windows.net/container/sample-blob-block" ) ,
65+ new Uri ( "https ://myaccount.blob.core.windows.net/container/sample-blob-block" ) ,
6666 new BlockBlobStorageResourceOptions ( ) ) ;
6767 StorageResource pageBlob = blobs . FromBlob (
68- new Uri ( "http ://myaccount.blob.core.windows.net/container/sample-blob-page" ) ,
68+ new Uri ( "https ://myaccount.blob.core.windows.net/container/sample-blob-page" ) ,
6969 new PageBlobStorageResourceOptions ( ) ) ;
7070 StorageResource appendBlob = blobs . FromBlob (
71- new Uri ( "http ://myaccount.blob.core.windows.net/container/sample-blob-append" ) ,
71+ new Uri ( "https ://myaccount.blob.core.windows.net/container/sample-blob-append" ) ,
7272 new AppendBlobStorageResourceOptions ( ) ) ;
7373 #endregion
7474 }
@@ -866,8 +866,8 @@ public async Task PauseAndResumeAsync_ManagerId()
866866 // Get a temporary path on disk where we can download the file
867867 //@@ string downloadPath = "hello.jpg";
868868
869- // Download the public blob at https://aka.ms/bloburl
870- BlockBlobClient sourceBlob = new BlockBlobClient ( new Uri ( "https://aka.ms/bloburl " ) ) ;
869+ // Download the public MacBeth copy at https://www.gutenberg.org/cache/epub/1533/pg1533.txt
870+ BlockBlobClient sourceBlob = new BlockBlobClient ( new Uri ( "https://www.gutenberg.org/cache/epub/1533/pg1533.txt " ) ) ;
871871 await sourceBlob . DownloadToAsync ( downloadPath ) ;
872872
873873 // Create a token credential that can use our Azure Active
@@ -932,8 +932,8 @@ public async Task PauseAndResumeAsync_DataTransferPause()
932932 // Get a temporary path on disk where we can download the file
933933 //@@ string downloadPath = "hello.jpg";
934934
935- // Download the public blob at https://aka.ms/bloburl
936- BlockBlobClient sourceBlob = new BlockBlobClient ( new Uri ( "https://aka.ms/bloburl " ) ) ;
935+ // Download the public MacBeth copy at https://www.gutenberg.org/cache/epub/1533/pg1533.txt
936+ BlockBlobClient sourceBlob = new BlockBlobClient ( new Uri ( "https://www.gutenberg.org/cache/epub/1533/pg1533.txt " ) ) ;
937937 await sourceBlob . DownloadToAsync ( downloadPath ) ;
938938
939939 // Create transfer manager
0 commit comments