2 instantiations of Scope
System.Data.Common (2)
System\Data\TypeLimiter.cs (2)
86Scope newScope = new Scope(s_activeScope, GetPreviouslyDeclaredDataTypes(dataSet)); 98Scope newScope = new Scope(s_activeScope, GetPreviouslyDeclaredDataTypes(dataTable));
10 references to Scope
System.Data.Common (10)
System\Data\TypeLimiter.cs (10)
17private static Scope? s_activeScope; 19private readonly Scope m_instanceScope; 23private TypeLimiter(Scope scope) 42Scope? activeScope = s_activeScope; 62Scope? capturedScope = capturedLimiter?.m_instanceScope ?? s_activeScope; 86Scope newScope = new Scope(s_activeScope, GetPreviouslyDeclaredDataTypes(dataSet)); 98Scope newScope = new Scope(s_activeScope, GetPreviouslyDeclaredDataTypes(dataTable)); 191private readonly Scope? m_previousScope; 198internal Scope(Scope? previousScope, IEnumerable<Type> allowedTypes) 235for (Scope? currentScope = this; currentScope != null; currentScope = currentScope.m_previousScope)