mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-13 05:50:36 +01:00
* Add TIOBE + include SonarAnalyzer.CSharp * . * cp * Copyright © WireMock.Net * more fixes * fix * xpath * if (Matchers == null || !Matchers.Any()) * if (Matchers != null) * ? * . * .
15 lines
412 B
C#
15 lines
412 B
C#
// Copyright © WireMock.Net
|
|
|
|
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}");
|
|
}
|
|
} |