AZ-204 Quiz

← Back to Topics

Functions (1 / 54):

Write an Azure function that uses HTTP trigger and takes id from the url and text from request body, then appends the text to existing blob with id id and logs its new content. Use Steam for the blob.

[FunctionName("BlobAppend")]
public static void Run(
    /* Triggers and Bindings here */

    ILogger log)
{
    // Code here
}


Exam revision: April 11, 2025