1 type derived from AttributeSetAction
System.Data.SqlXml (1)
System\Xml\Xsl\XsltOld\DbgCompiler.cs (1)
331private class AttributeSetActionDbg : AttributeSetAction {
2 instantiations of AttributeSetAction
System.Data.SqlXml (2)
System\Xml\Xsl\XsltOld\Compiler.cs (1)
996AttributeSetAction action = new AttributeSetAction();
System\Xml\Xsl\XsltOld\RootAction.cs (1)
139dstAttSet = new AttributeSetAction(); {
16 references to AttributeSetAction
System.Data.SqlXml (16)
System\Xml\Xsl\XsltOld\AttributeSetAction.cs (1)
86internal void Merge(AttributeSetAction attributeAction) {
System\Xml\Xsl\XsltOld\Compiler.cs (3)
597internal void AddAttributeSet(AttributeSetAction attributeSet) { 995public virtual AttributeSetAction CreateAttributeSetAction() { 996AttributeSetAction action = new AttributeSetAction();
System\Xml\Xsl\XsltOld\DbgCompiler.cs (2)
137public override AttributeSetAction CreateAttributeSetAction() { 138AttributeSetAction action = new AttributeSetActionDbg();
System\Xml\Xsl\XsltOld\RootAction.cs (7)
108internal AttributeSetAction GetAttributeSet(XmlQualifiedName name) { 109AttributeSetAction action = (AttributeSetAction) this.attributeSetTable[name]; 121foreach (AttributeSetAction attSet in this.attributeSetTable.Values) { 135foreach (AttributeSetAction srcAttSet in stylesheet.AttributeSetTable.Values) { 137AttributeSetAction dstAttSet = (AttributeSetAction) this.attributeSetTable[srcAttSet.Name];
System\Xml\Xsl\XsltOld\Stylesheet.cs (2)
127internal void AddAttributeSet(AttributeSetAction attributeSet) { 139((AttributeSetAction)this.attributeSetTable[attributeSet.Name]).Merge(attributeSet);
System\Xml\Xsl\XsltOld\UseAttributesetsAction.cs (1)
66AttributeSetAction action = processor.RootAction.GetAttributeSet(this.useAttributeSets[frame.Counter]);