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

SendInBackground() public méthode

Asynchronously transmits a message to Raygun.
public SendInBackground ( Exception exception ) : Task
exception Exception The exception to deliver.
Résultat Task
    public Task SendInBackground(Exception exception)
    {
      return SendInBackground(exception, null, null);
    }

Same methods

RaygunClient::SendInBackground ( Exception exception, IList tags ) : Task
RaygunClient::SendInBackground ( Exception exception, IList tags, IDictionary userCustomData ) : Task
RaygunClient::SendInBackground ( RaygunMessage raygunMessage ) : Task
RaygunClient::SendInBackground ( Exception exception ) : void
RaygunClient::SendInBackground ( Exception exception, IList tags ) : void
RaygunClient::SendInBackground ( Exception exception, IList tags, IDictionary userCustomData ) : void
RaygunClient::SendInBackground ( Exception exception, IList tags, IDictionary userCustomData, RaygunIdentifierMessage userInfo ) : void
RaygunClient::SendInBackground ( RaygunMessage raygunMessage ) : void

Usage Example

 private void SendMessage(RaygunClient client, Exception exception)
 {
     if (!string.IsNullOrWhiteSpace(Tags))
     {
         var tags = Tags.Split(',');
         client.SendInBackground(exception, tags);
     }
     else
     {
         client.SendInBackground(exception);
     }
 }
All Usage Examples Of Mindscape.Raygun4Net.RaygunClient::SendInBackground