示例#1
0
        protected virtual void OnSentWebRequest(SentWebRequestEventArgs e)
        {
            EventHandler <SentWebRequestEventArgs> handler = SentWebRequest;

            if (handler != null)
            {
                handler(this, e);
            }
        }
示例#2
0
 private void osmLayer_SentWebRequest(object sender, SentWebRequestEventArgs e)
 {
     OnSentWebRequest(e);
 }