SuperMap.WindowsPhone.REST.GetMapStatusService.CheckUrl C# (CSharp) Method

CheckUrl() private method

private CheckUrl ( ) : void
return void
        private void CheckUrl()
        {
            if (Url.EndsWith("/"))
            {
                Url.TrimEnd(new char[] { '/' });
            }
            if (this.wkid > 0)
            {
                this.Url = this.Url + ".json?prjCoordSys={\"epsgCode\":" + this.wkid + "}";
            }
            else
            {
                this.Url = this.Url + ".json";
            }
        }