Skip to content

Commit 30c2fb2

Browse files
authored
Merge pull request #84170 from MicahMcKittrick-MSFT/patch-200
microsoftdocs/azure-docs#35877
2 parents d67d096 + cea0819 commit 30c2fb2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/batch/tutorial-parallel-dotnet.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ Then, files are uploaded to the input container from the local `InputFiles` fold
171171

172172
Two methods in `Program.cs` are involved in uploading the files:
173173

174-
* `UploadResourceFilesToContainerAsync`: Returns a collection of ResourceFile objects and internally calls `UploadResourceFileToContainerAsync` to upload each file that is passed in the `inputFilePaths` parameter.
174+
* `UploadFilesToContainerAsync`: Returns a collection of ResourceFile objects and internally calls `UploadResourceFileToContainerAsync` to upload each file that is passed in the `inputFilePaths` parameter.
175175
* `UploadResourceFileToContainerAsync`: Uploads each file as a blob to the input container. After uploading the file, it obtains a shared access signature (SAS) for the blob and returns a ResourceFile object to represent it.
176176

177177
```csharp
@@ -180,7 +180,7 @@ string inputPath = Path.Combine(Environment.CurrentDirectory, "InputFiles");
180180
List<string> inputFilePaths = new List<string>(Directory.GetFileSystemEntries(inputPath, "*.mp4",
181181
SearchOption.TopDirectoryOnly));
182182

183-
List<ResourceFile> inputFiles = await UploadResourceFilesToContainerAsync(
183+
List<ResourceFile> inputFiles = await UploadFilesToContainerAsync(
184184
blobClient,
185185
inputContainerName,
186186
inputFilePaths);

0 commit comments

Comments
 (0)