Mindscape.Raygun4Net.RaygunClient.SendAsync C# (CSharp) 메소드

SendAsync() 개인적인 메소드

private SendAsync ( Exception exception, IList tags, IDictionary userCustomData, HttpContext context ) : Task
exception Exception
tags IList
userCustomData IDictionary
context HttpContext
리턴 Task
    private async Task SendAsync(Exception exception, IList<string> tags, IDictionary userCustomData, HttpContext context)
    {
      if (CanSend(exception))
      {
        _currentHttpContext.Value = context;
        _currentRequestMessage.Value = await BuildRequestMessage();
        _currentResponseMessage.Value = BuildResponseMessage();

        await StripAndSend(exception, tags, userCustomData);
        FlagAsSent(exception);
      }
    }