Backstop.Samples.RestReports.BackstopRestReportUri.BackstopRestReportUri C# (CSharp) Method

BackstopRestReportUri() public method

public BackstopRestReportUri ( string service, string method ) : System
service string
method string
return System
        public BackstopRestReportUri(string service, string method)
        {
            if (string.IsNullOrEmpty(service))
                throw new ArgumentNullException("service");
            if (string.IsNullOrEmpty(method))
                throw new ArgumentNullException("method");

            this.Service = service;
            this.Method = method;
        }