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