コード例 #1
0
        private void OnNewARP(ArpEventArgs e)
        {
            EventHandler <ArpEventArgs> handler = NewARP;

            if (handler != null)
            {
                handler(this, e);
            }
        }
コード例 #2
0
ファイル: PasiveScan.cs プロジェクト: ignaciots/EvilFOCA
        private void OnNewARP(ArpEventArgs e)
        {
            EventHandler<ArpEventArgs> handler = NewARP;

            if (handler != null)
            {
                handler(this, e);
            }
        }