1 write to compiledDataContexts
System.Activities (1)
System\Activities\XamlIntegration\TextExpressionCompiler.cs (1)
103this.compiledDataContexts = new Stack<CompiledDataContextDescriptor>();
26 references to compiledDataContexts
System.Activities (26)
System\Activities\XamlIntegration\TextExpressionCompiler.cs (26)
349AddMember(delegateArgument.BoundArgument.Name, delegateArgument.BoundArgument.Type, this.compiledDataContexts.Peek()); 370Fx.Assert(this.compiledDataContexts.Count == 2, "The stack of data contexts should contain the root argument default expression and accessor contexts"); 372rootArgumentAccessorContext = this.compiledDataContexts.Pop(); 387this.compiledDataContexts.Push(rootArgumentAccessorContext); 608if (this.compiledDataContexts == null) 613foreach (CompiledDataContextDescriptor contextDescriptor in this.compiledDataContexts) 656CompiledDataContextDescriptor currentContextDescriptor = this.compiledDataContexts.Peek(); 663this.compiledDataContexts.Pop(); 682this.compiledDataContexts.Push(currentContextDescriptor); 1753if (this.compiledDataContexts != null && this.compiledDataContexts.Count > 0) 1758baseTypeName = this.compiledDataContexts.Peek().CodeTypeDeclarationForReadOnly.Name; 1762baseTypeName = this.compiledDataContexts.Peek().CodeTypeDeclaration.Name; 1819if (this.compiledDataContexts != null && this.compiledDataContexts.Count > 0) 1855if (this.compiledDataContexts.Count > 0) 1881if (this.compiledDataContexts != null && this.compiledDataContexts.Count > 0) 2136this.compiledDataContexts.Push(contextDescriptor); 2144CompiledDataContextDescriptor descriptor = this.compiledDataContexts.Pop(); 2155if (this.compiledDataContexts == null || this.compiledDataContexts.Count == 0) 2161return this.compiledDataContexts.Peek().NextMemberIndex; 2190if (this.compiledDataContexts.Count > 0) 2268if (this.compiledDataContexts.Count >= 1) 2270CompiledDataContextDescriptor baseDescriptor = this.compiledDataContexts.Peek();