System.Web.Handlers.ScriptResourceHandler.AssemblyResourceLoader.PerformSubstitutionHelper.PerformSubstitutionReplace C# (CSharp) Method

PerformSubstitutionReplace() private method

private PerformSubstitutionReplace ( Match m ) : string
m System.Text.RegularExpressions.Match
return string
			string PerformSubstitutionReplace (Match m) {
				string resourceName = m.Groups [1].Value;
#if SYSTEM_WEB_EXTENSIONS
				return ScriptResourceHandler.GetResourceUrl (_assembly, resourceName, false);
#else
				return AssemblyResourceLoader.GetResourceUrl (_assembly, resourceName, false);
#endif
			}
		}
ScriptResourceHandler.AssemblyResourceLoader.PerformSubstitutionHelper