BlogEngine.Core.Web.HttpModules.UrlRewrite.GetQueryString C# (CSharp) 메소드

GetQueryString() 개인적인 정적인 메소드

Gets the query string from the requested URL.
private static GetQueryString ( HttpContext context ) : string
context System.Web.HttpContext /// The context. ///
리턴 string
        private static string GetQueryString(HttpContext context)
        {
            var query = context.Request.QueryString.ToString();
            return !string.IsNullOrEmpty(query) ? string.Format("&{0}", query) : string.Empty;
        }