System.Xml.Xsl.XsltOld.Compiler.CreateUseAttributeSetsAction C# (CSharp) Method

CreateUseAttributeSetsAction() public method

public CreateUseAttributeSetsAction ( ) : UseAttributeSetsAction
return UseAttributeSetsAction
        public virtual UseAttributeSetsAction CreateUseAttributeSetsAction()
        {
            UseAttributeSetsAction action = new UseAttributeSetsAction();
            action.Compile(this);
            return action;
        }

Usage Example

Ejemplo n.º 1
0
 internal override bool CompileAttribute(Compiler compiler) {
     string name   = compiler.Input.LocalName;
     string value  = compiler.Input.Value;
     if (Ref.Equal(name, compiler.Atoms.UseAttributeSets)) {
         this.useAttributeSets = value;
         AddAction(compiler.CreateUseAttributeSetsAction());
     }
     else {
         return false;
     }
     return true;
 }
All Usage Examples Of System.Xml.Xsl.XsltOld.Compiler::CreateUseAttributeSetsAction