SuperMap.Web.iServerJava6R.SetLayerStatusService.GetMapName C# (CSharp) 메소드

GetMapName() 개인적인 메소드

private GetMapName ( ) : void
리턴 void
        private void GetMapName()
        {
            if (mapUrl.EndsWith("/"))
            {
                this.mapUrl = mapUrl.TrimEnd(new char[] { '/' });
            }

            int index = this.mapUrl.LastIndexOf('/');
            mapName = this.mapUrl.Substring(index + 1);
        }