20 references to ObjectTagScope
System.Web (20)
UI\ApplicationFileParser.cs (4)
39
internal override void CheckObjectTagScope(ref
ObjectTagScope
scope) {
42
if (scope ==
ObjectTagScope
.Default)
43
scope =
ObjectTagScope
.AppInstance;
46
if (scope ==
ObjectTagScope
.Page) {
UI\ObjectTag.cs (7)
42
private
ObjectTagScope
_scope;
69
_scope =
ObjectTagScope
.Default;
71
_scope =
ObjectTagScope
.Page;
73
_scope =
ObjectTagScope
.Session;
75
_scope =
ObjectTagScope
.Application;
77
_scope =
ObjectTagScope
.AppInstance;
179
internal
ObjectTagScope
Scope {
UI\TemplateParser.cs (9)
1389
internal virtual void CheckObjectTagScope(ref
ObjectTagScope
scope) {
1392
if (scope ==
ObjectTagScope
.Default)
1393
scope =
ObjectTagScope
.Page;
1396
if (scope !=
ObjectTagScope
.Page) {
1407
ObjectTagScope
scope = objectBuilder.Scope;
1411
if (scope ==
ObjectTagScope
.Page ||
1412
scope ==
ObjectTagScope
.AppInstance) {
1418
else if (scope ==
ObjectTagScope
.Session) {
1426
else if (scope ==
ObjectTagScope
.Application) {