internal EventBridge GetEventBridge(string strType)
{
if (_dic == null)
_dic = new Dictionary<string, EventBridge>();
EventBridge bridge = null;
if (!_dic.TryGetValue(strType, out bridge))
{
bridge = new EventBridge(this);
_dic[strType] = bridge;
}
return bridge;
}