Aurora.Voice.Whisper.MurmurPoster.ProcessGet C# (CSharp) 메소드

ProcessGet() 개인적인 메소드

private ProcessGet ( OSDMap request ) : byte[]
request OSDMap
리턴 byte[]
        private byte[] ProcessGet(OSDMap request)
        {
            string regionName = request["RegionName"];
            MurmurConfig config = m_service.GetConfiguration(regionName);
            OSDMap response = config.ToOSD();
            string resp = OSDParser.SerializeJsonString(response);
            if (resp == "")
                return new byte[0];
            return Util.UTF8.GetBytes(resp);
        }