mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-05-26 01:39:23 +02:00
0972d2cb8f
* Add option to ProxySettings to append guid to mapping file * . * . * .
13 lines
382 B
C#
13 lines
382 B
C#
using Microsoft.Azure.WebJobs;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace WireMockAzureQueueExample;
|
|
|
|
public class Function1
|
|
{
|
|
[FunctionName("Function1")]
|
|
public void Run([QueueTrigger("myqueue-items", Connection = "ConnectionStringToWireMock")]string myQueueItem, ILogger log)
|
|
{
|
|
log.LogWarning($"C# Queue trigger function processed: {myQueueItem}");
|
|
}
|
|
} |