コード例 #1
0
        public OpcActionConfigurationModel(string endpointUrl, bool useSecurity, TestActionModel testAction)
        {
            EndpointUrl = new Uri(endpointUrl);
            UseSecurity = useSecurity;

            Test = new List <TestActionModel>();
            Test.Add(new TestActionModel(testAction));
        }
コード例 #2
0
 public TestActionModel(TestActionModel action)
 {
     Id       = action.Id;
     Interval = action.Interval;
 }