public XsltCompiledContext (XslTransformProcessor p) : base (new NameTable ()) { this.p = p; scopes = new XsltContextInfo [10]; for (int i = 0; i < 10; i++) scopes [i] = new XsltContextInfo (); }
public XsltCompiledContext(XslTransformProcessor p) : base(new NameTable()) { this.p = p; scopes = new XsltContextInfo [10]; for (int i = 0; i < 10; i++) { scopes [i] = new XsltContextInfo(); } }
public override void PushScope() { base.PushScope(); scopeAt++; if (scopeAt == scopes.Length) { ExtendScope(); } if (scopes [scopeAt] == null) { scopes [scopeAt] = new XsltContextInfo(); } else { scopes [scopeAt].Clear(); } }
public override void PushScope () { base.PushScope (); scopeAt++; if (scopeAt == scopes.Length) ExtendScope (); if (scopes [scopeAt] == null) scopes [scopeAt] = new XsltContextInfo (); else scopes [scopeAt].Clear (); }