Mindscape.Raygun4Net.RaygunClient.StripAndSend C# (CSharp) Méthode

StripAndSend() private méthode

private StripAndSend ( Exception exception, IList tags, IDictionary userCustomData ) : Task
exception Exception
tags IList
userCustomData IDictionary
Résultat Task
    private async Task StripAndSend(Exception exception, IList<string> tags, IDictionary userCustomData)
    {
      foreach (Exception e in StripWrapperExceptions(exception))
      {
        await Send(await BuildMessage(e, tags, userCustomData));
      }
    }

Same methods

RaygunClient::StripAndSend ( Exception exception, IList tags, IDictionary userCustomData ) : void
RaygunClient::StripAndSend ( Exception exception, IList tags, IDictionary userCustomData, RaygunIdentifierMessage userInfo, DateTime currentTime ) : void
RaygunClient::StripAndSend ( Exception exception, IList tags, IDictionary userCustomData, int timeout ) : void