Mindscape.Raygun4Net.RaygunClient.RaygunClient C# (CSharp) Method

RaygunClient() public method

Initializes a new instance of the RaygunClient class.
public RaygunClient ( string apiKey ) : System
apiKey string The API key.
return System
        public RaygunClient(string apiKey)
        {
            _apiKey = apiKey;

              _wrapperExceptions.Add(typeof(TargetInvocationException));
              _wrapperExceptions.Add(typeof(System.AggregateException));

              SendingMessage += RaygunClient_SendingMessage;

              ThreadPool.QueueUserWorkItem(state => { SendStoredMessages(); });
        }

Same methods

RaygunClient::RaygunClient ( string apiKey ) : Foundation
RaygunClient::RaygunClient ( ) : System
RaygunClient::RaygunClient ( RaygunSettings settings, HttpContext context = null ) : System