ArcStache.VectorCache.EmptyVectorTileHandler C# (CSharp) Метод

EmptyVectorTileHandler() приватный Метод

Empty tile handler to support ArcGIS Flex API's TiledMapServiceLayer implementation which executes this call using a URL obtained from getTileUrl() method in the Flex layer implementation.
private EmptyVectorTileHandler ( NameValueCollection boundVariables, JsonObject operationInput, string outputFormat, string requestProperties, string &responseProperties ) : byte[]
boundVariables System.Collections.Specialized.NameValueCollection The bound variables.
operationInput JsonObject The operation input.
outputFormat string The output format.
requestProperties string The request properties.
responseProperties string The response properties.
Результат byte[]
        private byte[] EmptyVectorTileHandler(NameValueCollection boundVariables,
                                                  JsonObject operationInput,
                                                      string outputFormat,
                                                      string requestProperties,
                                                  out string responseProperties)
        {
            responseProperties = null;// "Content-Type:application/json";

            return StrToByteArray("{}");
        }