16 types derived from ContainerAction
System.Data.SqlXml (16)
System\Xml\Xsl\XsltOld\ApplyTemplatesAction.cs (1)
16
internal class ApplyTemplatesAction :
ContainerAction
{
System\Xml\Xsl\XsltOld\AttributeAction.cs (1)
15
internal class AttributeAction :
ContainerAction
{
System\Xml\Xsl\XsltOld\AttributeSetAction.cs (1)
16
internal class AttributeSetAction :
ContainerAction
{
System\Xml\Xsl\XsltOld\CallTemplateAction.cs (1)
15
internal class CallTemplateAction :
ContainerAction
{
System\Xml\Xsl\XsltOld\ChooseAction.cs (1)
15
internal class ChooseAction :
ContainerAction
{
System\Xml\Xsl\XsltOld\CommentAction.cs (1)
15
internal class CommentAction :
ContainerAction
{
System\Xml\Xsl\XsltOld\CopyAction.cs (1)
16
internal class CopyAction :
ContainerAction
{
System\Xml\Xsl\XsltOld\ElementAction.cs (1)
15
internal class ElementAction :
ContainerAction
{
System\Xml\Xsl\XsltOld\ForeachAction.cs (1)
16
internal class ForEachAction :
ContainerAction
{
System\Xml\Xsl\XsltOld\IfAction.cs (1)
15
internal class IfAction :
ContainerAction
{
System\Xml\Xsl\XsltOld\MessageAction.cs (1)
17
internal class MessageAction :
ContainerAction
{
System\Xml\Xsl\XsltOld\NewInstructionAction.cs (1)
15
internal class NewInstructionAction :
ContainerAction
{
System\Xml\Xsl\XsltOld\NumberAction.cs (1)
18
internal class NumberAction :
ContainerAction
{
System\Xml\Xsl\XsltOld\ProcessingInstructionAction.cs (1)
15
internal class ProcessingInstructionAction :
ContainerAction
{
System\Xml\Xsl\XsltOld\TemplateBaseAction.cs (1)
20
internal abstract class TemplateBaseAction :
ContainerAction
{
System\Xml\Xsl\XsltOld\VariableAction.cs (1)
22
internal class VariableAction :
ContainerAction
, IXsltContextVariable {
1 instantiation of ContainerAction
System.Data.SqlXml (1)
System\Xml\Xsl\XsltOld\ForeachAction.cs (1)
103
sortContainer = new
ContainerAction
();
6 references to ContainerAction
System.Data.SqlXml (6)
System\Xml\Xsl\XsltOld\ActionFrame.cs (2)
196
Debug.Assert(this.action is
ContainerAction
);
197
return((
ContainerAction
) this.action).GetAction(actionIndex);
System\Xml\Xsl\XsltOld\ForeachAction.cs (1)
23
private
ContainerAction
sortContainer;
System\Xml\Xsl\XsltOld\RootAction.cs (3)
182
private void CheckAttributeSets_RecurceInContainer(Hashtable markTable,
ContainerAction
container) {
189
} else if(action is
ContainerAction
) {
190
CheckAttributeSets_RecurceInContainer(markTable, (
ContainerAction
)action);