AjaxControlToolkit.Design.ComboBoxDesigner.PerformWebResourceSubstitution C# (CSharp) Method

PerformWebResourceSubstitution() protected method

protected PerformWebResourceSubstitution ( Match match ) : string
match System.Text.RegularExpressions.Match
return string
        protected virtual string PerformWebResourceSubstitution(Match match)
        {
            var replacedString = match.ToString();
            replacedString = replacedString.Replace(match.Value, ViewControl.Page.ClientScript.GetWebResourceUrl(
                this.GetType(), match.Groups["resourceName"].Value));
            return replacedString;
        }