Opc.Ua.ServerTest.ServerTestClient.ReportProgressEventArgs.ReportProgressEventArgs C# (CSharp) Method

ReportProgressEventArgs() public method

Constructs the object.
public ReportProgressEventArgs ( ConfiguredEndpoint endpoint, ServerTestCase testcase, int testCount, int failedTestCount, int endpointCount, int totalEndpointCount, int iterationCount, int totalIterationCount, double currentProgress, double finalProgress, bool breakpoint ) : System
endpoint ConfiguredEndpoint
testcase ServerTestCase
testCount int
failedTestCount int
endpointCount int
totalEndpointCount int
iterationCount int
totalIterationCount int
currentProgress double
finalProgress double
breakpoint bool
return System
            public ReportProgressEventArgs(
                ConfiguredEndpoint endpoint,
                ServerTestCase testcase,
                int testCount,
                int failedTestCount,
                int endpointCount,
                int totalEndpointCount,
                int iterationCount,
                int totalIterationCount,
                double currentProgress,
                double finalProgress,
                bool breakpoint)
            {
                m_endpoint = endpoint;
                m_testcase = testcase;
                m_testCount = testCount;
                m_failedTestCount = failedTestCount;
                m_endpointCount = endpointCount;
                m_totalEndpointCount = totalEndpointCount;
                m_iterationCount = iterationCount;
                m_totalIterationCount = totalIterationCount;
                m_currentProgress = currentProgress;
                m_finalProgress = finalProgress;
                m_breakpoint = breakpoint;
                m_stop = false;
            }
            #endregion
ServerTestClient.ReportProgressEventArgs