28 lines
698 B
C#
28 lines
698 B
C#
using Newtonsoft.Json.Linq;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ssgrestserver
|
|
{
|
|
class 조회씬이름 : ARequestObject
|
|
{
|
|
protected override string startUpdateWork()
|
|
{
|
|
|
|
JObject retObj = new JObject();
|
|
|
|
foreach (var item in DataCenter.getInstance().getData(DataCenter.관리중인데이터들배열.씬이름)[m채널이름])
|
|
{
|
|
retObj.Add(item.Key, item.Value);
|
|
}
|
|
|
|
retObj.Add("status", "200");
|
|
|
|
return retObj.ToString(Newtonsoft.Json.Formatting.None);
|
|
}
|
|
}
|
|
}
|