1 write to xamlStack
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Xaml\ErrorTolerantObjectWriter.cs (1)
69this.xamlStack = new WalkableStack<XamlFrame>();
29 references to xamlStack
System.Activities.Presentation (29)
System.Activities.Presentation\System\Activities\Presentation\Xaml\ErrorTolerantObjectWriter.cs (29)
133this.xamlStack.Pop(); 159Fx.Assert(this.xamlStack.Count > 0 && this.xamlStack.Current.Member == null, "Unexpected StartMember"); 160this.xamlStack.Current.Member = member; 171Fx.Assert(this.xamlStack.Count > 0 && this.xamlStack.Current.Member != null, "Unexpected EndMember"); 172this.xamlStack.Current.Member = null; 173this.xamlStack.Current.MemberIsSet = false; 400parentMember = this.xamlStack.Previous(1).Member; 407collectionType = this.xamlStack.Previous(1).Type; 411collectionType = this.xamlStack.Previous(2).Member.Type; 428Fx.Assert(this.xamlStack.Count > 0, "PushNewActivityFrameIfNeeded called without a StartObject"); 429if (this.xamlStack.Count == 1) 447CurrentFragment.Namespaces = this.xamlStack.Current.Namespaces; 458NamespaceStackNode currentNamespaces = this.xamlStack.Count > 0 ? this.xamlStack.Current.Namespaces : null; 459this.xamlStack.Push(new XamlFrame { Type = type }); 463this.xamlStack.Current.Namespaces = this.pendingNamespaces; 468this.xamlStack.Current.Namespaces = currentNamespaces; 475XamlType type = this.xamlStack.Current.Type; 498else if (this.xamlStack.Count > 1) 522if (type.IsNameScope && this.xamlStack.Count > 1) 531XamlType type = this.xamlStack.Previous(1).Member.Type; 542XamlFrame frame = this.xamlStack.Current; 564XamlFrame currentFrame = this.xamlStack.Current; 574ValidationError(SR.UnknownContent, this.xamlStack.Current.Type); 622XamlType type = this.xamlStack.Current.Type; 623XamlMember member = this.xamlStack.Current.Member; 668type = this.xamlStack.Previous(1).Member.Type;