1 write to objectStack
System.Activities (1)
System\Activities\XamlIntegration\ActivityBuilderXamlWriter.cs (1)
1048this.objectStack = new Stack<ObjectFrame>();
8 references to objectStack
System.Activities (8)
System\Activities\XamlIntegration\ActivityBuilderXamlWriter.cs (8)
1053ObjectFrame currentFrame = this.objectStack.Peek(); 1064ObjectFrame currentFrame = this.objectStack.Peek(); 1071ObjectFrame currentFrame = this.objectStack.Peek(); 1089this.objectStack.Push(new ObjectFrame { Type = xamlType }); 1095this.objectStack.Push(new ObjectFrame()); 1101ObjectFrame frame = this.objectStack.Pop(); 1109ObjectFrame currentFrame = this.objectStack.Count > 0 ? this.objectStack.Peek() : null;