私はDNN6を使用しており、2つのモジュールを作成し、モジュールコミュニケーターを使用してそれらの間を接続しようとしました。これが私のコードです:
#region IntermoduleCommunication
ModuleCommunicationEventArgs oArgs = new ModuleCommunicationEventArgs();
oArgs.Value = Session["ShoppingCart"];
if (ModuleCommunication != null)
ModuleCommunication(this, oArgs);
#endregion
しかし、ModuleCommunication 変数で「null」を取得していますか?