我正在使用 DNN6,我创建了两个模块并尝试使用模块通信器在它们之间进行连接,这是我的代码:
#region IntermoduleCommunication
ModuleCommunicationEventArgs oArgs = new ModuleCommunicationEventArgs();
oArgs.Value = Session["ShoppingCart"];
if (ModuleCommunication != null)
ModuleCommunication(this, oArgs);
#endregion
但我在 ModuleCommunication 变量中得到“空”?