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());
        }