public string GetGlobalAttribute()

in src/Event/CustomEvent.cs [535:555]


        public string GetGlobalAttribute(string eventType, string attributeName)
        {
            if(string.IsNullOrEmpty(eventType))
            {
                throw new ArgumentNullException("eventType");
            }
            if(string.IsNullOrEmpty(attributeName))
            {
                throw new ArgumentNullException("attributeName");
            }
            
            string ret = null;
            lock(_globalLock)
            {
                if(_eventTypeGlobalAttributes.ContainsKey(eventType) && _eventTypeGlobalAttributes[eventType].ContainsKey(attributeName))
                {
                    ret = _eventTypeGlobalAttributes[eventType][attributeName];
                }
            }
            return ret;
        }