Example #1
0
        public TestOutcome GetSingleMethod(string path)
        {
            TestOutcome outcome = new TestOutcome();

            outcome.moduleName = "OutlineMethods";
            outcome.methodName = "OutlineMethodFind";
            try
            {
                OutlineMethodsApi methodsApi = new OutlineMethodsApi(_url);
                OutlineMethod     method     = methodsApi.OutlineMethodFind(_session.SessionId, path);
                Console.WriteLine(method);
                outcome.outcome = "Success";
                return(outcome);
            }
            catch (Exception ex)
            {
                outcome.outcome = ex.Message;
                return(outcome);
            }
        }
Example #2
0
 public static extern int imaqEdgeFilter(IntPtr dest, IntPtr source, OutlineMethod method, IntPtr mask);