public void RemoveGlobalAttribute()

in src/Event/CustomEvent.cs [485:504]


        public void RemoveGlobalAttribute(string eventType, string attributeName)
        {
            if(string.IsNullOrEmpty(eventType))
            {
                throw new ArgumentNullException("eventType");
            }
            
            if(string.IsNullOrEmpty(attributeName))
            {
                throw new ArgumentNullException("attributeName");
            }
            
            lock(_globalLock)
            {
                if(_eventTypeGlobalAttributes.ContainsKey(eventType) && _eventTypeGlobalAttributes[eventType].ContainsKey(attributeName))
                {
                    _eventTypeGlobalAttributes[eventType].Remove(attributeName);
                }
            }
        }