SharpVectors.Dom.Events.EventTarget.RemoveEventListener C# (CSharp) Method

RemoveEventListener() public method

public RemoveEventListener ( string type, EventListener listener, bool useCapture ) : void
type string
listener EventListener
useCapture bool
return void
        public void RemoveEventListener(
			string type,
			EventListener listener,
			bool useCapture)
        {
            if (useCapture)
            {
                captureMap.RemoveEventListener(null, type, listener);
            }
            else
            {
                bubbleMap.RemoveEventListener(null, type, listener);
            }
        }