-2

バンドル内にバンドルを持つ C#.Net Mirror API を使用してタイム ライン カードを挿入する方法は?

以下のコードでは、単一のバンドルを作成しています。私が欲しいのは、item1 と item2 を異なるバンドルにすることです。可能ですか?解決策はありますか?

           TimelineItem item = new TimelineItem()
            {
                Text = controller.Request.Form.Get("message"),
                BundleId = "112",
                IsBundleCover=true,
                Notification = new NotificationConfig() { Level = "DEFAULT" }
            };

            TimelineItem item1 = new TimelineItem()
            {
                Text = "Amalan",
                BundleId = "112",
                Notification = new NotificationConfig() { Level = "DEFAULT" }
            };

            TimelineItem item2 = new TimelineItem()
            {
                Text = "Sanath",
                BundleId = "112",
                Notification = new NotificationConfig() { Level = "DEFAULT" }
            };
4

1 に答える 1