StoreIDTopGateAPI.ApiWrapper.ApiWrapper C# (CSharp) 메소드

ApiWrapper() 공개 메소드

public ApiWrapper ( String baseUrl ) : System
baseUrl String
리턴 System
        public ApiWrapper(String baseUrl)
        {
            // make sure baseUrl does not end with a slash
            if (baseUrl.EndsWith("/"))
            {
                this.baseUrl = baseUrl.Substring(0, baseUrl.Length - 1);
            }
            else
            {
                this.baseUrl = baseUrl;
            }
        }