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