Example #1
0
		internal void RaiseOnSetSecureLockIcon(object sender, DWebBrowserEvents2_SetSecureLockIconEvent e) 
		{
			if ((this.SetSecureLockIcon != null)) 
			{
				this.SetSecureLockIcon(sender, e);
			}
		}
Example #2
0
		public virtual void SetSecureLockIcon(int secureLockIcon) 
		{
			DWebBrowserEvents2_SetSecureLockIconEvent setsecurelockiconEvent = new DWebBrowserEvents2_SetSecureLockIconEvent(secureLockIcon);
			this.parent.RaiseOnSetSecureLockIcon(this.parent, setsecurelockiconEvent);
		}