public GetMap(string url)
        {
            this.Format = new string[] { "image/png" };

            this.DCPType = new DcpType[] { DcpType.Create(url) };
        }
        public GetFeatureInfo(string url)
        {
            this.Format = new string[] { "text/plain" };

            this.DCPType = new DcpType[] { DcpType.Create(url) };
        }
        public GetCapabilities(string url)
        {
            this.Format = new string[] { "text/xml" };

            this.DCPType = new DcpType[] { DcpType.Create(url) };
        }