кто-то сможет обьяснить работу подобного примера кода?
1. Будет ли иницироваться переменная runnerName при вызове Lambda?
2. Любая C# программа начинается с какого-либо класса - а как в данном случае мы знаем какой класс является первым? Только из-за нахождения в нем метода FunctionHandler?
3. Как работает эта assembly [assembly: LambdaSerializer(.... ?
using Amazon.Lambda.Core;
// Assembly attribute to enable the Lambda function's JSON input to be converted into a .NET class.
[assembly: LambdaSerializer(typeof(Amazon.Lambda.Serialization.SystemTextJson.DefaultLambdaJsonSerializer))]
namespace SimpleScheduling.Lambda;
public class Function
{
var runnerName = "Jim Wilson";
public void FunctionHandler(EventInfo input,
ILambdaContext context)
{
switch (input.ActionName)
{
case "PatreonMail":
context.Logger.LogInformation($"Received call for {input.ActionName}");
break;
case "VipPatreonMail":
context.Logger.LogInformation($"Received call for {input.ActionName}");
break;
default:
context.Logger.LogInformation($"Unknown action");
break;
}
}
}
public class EventInfo
{
public string ActionName { get; set; }
}