SuperMap.Web.iServerJava6R.SetLayerStatusService.GetDictionaryParameters C# (CSharp) Method

GetDictionaryParameters() private method

private GetDictionaryParameters ( ) : Dictionary,System.Collections.Generic
return Dictionary,System.Collections.Generic
        private System.Collections.Generic.Dictionary<string, string> GetDictionaryParameters()
        {
            Dictionary<string, string> dictionary = new Dictionary<string, string>();

            dictionary.Add("type", "\"UGC\"");

            if (requestParameters.LayerStatusList != null && requestParameters.LayerStatusList.Count > 0)
            {
                dictionary.Add("subLayers", SetLayerStatusParameters.ToJson(requestParameters));
            }
            dictionary.Add("queryable", "false");
            dictionary.Add("name", "\"" + mapName + "\"");

            return dictionary;
        }