ArcStache.VectorCache.RootResHandler C# (CSharp) 메소드

RootResHandler() 개인적인 메소드

private RootResHandler ( NameValueCollection boundVariables, string outputFormat, string requestProperties, string &responseProperties ) : byte[]
boundVariables System.Collections.Specialized.NameValueCollection
outputFormat string
requestProperties string
responseProperties string
리턴 byte[]
        private byte[] RootResHandler(NameValueCollection boundVariables, string outputFormat, string requestProperties, out string responseProperties)
        {
            responseProperties = null;
            JsonObject result = new JsonObject();
            return Encoding.UTF8.GetBytes(result.ToJson());
        }