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