コード例 #1
0
 public void PushScope(BamlElement element)
 {
     CurrentScope = new XmlnsScope(CurrentScope, element);
 }
コード例 #2
0
 public void PopScope()
 {
     CurrentScope = CurrentScope.PreviousScope;
 }
コード例 #3
0
 public XmlnsScope(XmlnsScope prev, BamlElement elem)
 {
     PreviousScope = prev;
     Element       = elem;
 }