Now we are ready to create our Blob Trigger function. Let's perform the following steps to create it:
- In the Visual Studio project, right-click on the TextEvaluation project name, and then click on Add -> New Item -> Azure Function.
- In the Name field, type ScoreDocument.
- Fill in the required parameters as follows:
- Function Type: Select BlobTrigger in this field.
- FunctionName: This will be the new function name. Enter ScoreDocument.
- Connection: Enter blobStorageConnection. We will define the connection string in local.settings.json after the function is created.
- Path: This is the name of the Blob storage container that the function will be "watching" for new blob uploads. Enter documents/{name}, the name ...