Airbrake.ExceptionHandler.ExceptionHandler C# (CSharp) Method

ExceptionHandler() public method

Initializes a new instance of the ExceptionHandler class.
public ExceptionHandler ( bool ssl, string host, string path, string apikey, string environment ) : System
ssl bool if set to true [SSL].
host string The host.
path string The path.
apikey string The API key.
environment string The environment.
return System
        public ExceptionHandler(bool ssl, string host, string path, string apikey, string environment)
        {
            this.SSL = ssl;
            this.Host = host;
            this.Path = path;
            this.Apikey = apikey;
            this.Environment = environment;
        }