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