Hello,
while decompiling System.Web.Http.Owin.dll (Microsoft.Aspnet.WebApi.Owin Nuget package), I found SendAsync method of PassiveAuthenticationMessageHandler class where there is a call to:
HttpResponseMessage httpResponseMessage = await
this
.<>n__FabricatedMethod3(request, cancellationToken);
What does 'this.<>n__FabricatedMethod3' mean? I suppose it's calling base class method but just wanted to be sure.
Thanks!