Opc.Ua.ServerTest.ServerTestClient.ReportProgressEventArgs.ReportProgressEventArgs C# (CSharp) 메소드

ReportProgressEventArgs() 공개 메소드

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
리턴 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