3 writes to _templateUrl
System.Web (3)
Management\TemplatedMailWebEventProvider.cs (3)
65ProviderUtil.GetAndRemoveStringAttribute(config, "template", name, ref _templateUrl); 71_templateUrl = _templateUrl.Trim(); 82_templateUrl = UrlPath.Combine(HttpRuntime.AppDomainAppVirtualPathString, _templateUrl);
10 references to _templateUrl
System.Web (10)
Management\TemplatedMailWebEventProvider.cs (10)
67if (_templateUrl == null) { 71_templateUrl = _templateUrl.Trim(); 73if (_templateUrl.Length == 0) { 74throw new ConfigurationErrorsException(SR.GetString(SR.Invalid_provider_attribute, "template", name, _templateUrl)); 77if (!UrlPath.IsRelativeUrl(_templateUrl)) { 79"template", name, _templateUrl)); 82_templateUrl = UrlPath.Combine(HttpRuntime.AppDomainAppVirtualPathString, _templateUrl); 85if (!HttpRuntime.IsPathWithinAppRoot(_templateUrl)) { 87"template", name, _templateUrl)); 130HttpServerUtility.ExecuteLocalRequestAndCaptureResponse(_templateUrl, writer, gen);