Exemplo n.º 1
0
        protected virtual void OnSignalAnalysisPerformed(FileInfo fileinfo, byte[] content)
        {
            AtmlFileOpenDelegate handler = SignalAnalysisPerformed;

            if (handler != null)
            {
                handler(fileinfo, content);
            }
        }
Exemplo n.º 2
0
        protected virtual void OnAtmlFileOpened(FileInfo fi, byte[] content)
        {
            AtmlFileOpenDelegate handler = AtmlFileOpened;

            if (handler != null)
            {
                handler(fi, content);
            }
        }
Exemplo n.º 3
0
        protected virtual void OnTestConfigurationOpened(FileInfo fileinfo, byte[] content)
        {
            AtmlFileOpenDelegate handler = TestConfigurationLoaded;

            if (handler != null)
            {
                handler(fileinfo, content);
            }
        }