Ejemplo n.º 1
0
        public InLineStatement(int rawStartIndex, string rawValue, Global.ArgumentInfoCollection contentArguments) :
            base(rawStartIndex, rawValue, DirectiveTypes.InLineStatement, contentArguments)
        {
            this.ControlID      = DirectiveHelper.CaptureControlID(this.Value);
            this.BoundControlID = DirectiveHelper.CaptureBoundControlID(this.Value);

            this._Cache = true;
            this._ParametersDefinition = null;
        }
Ejemplo n.º 2
0
 public Execution(int rawStartIndex, string rawValue, Global.ArgumentInfoCollection contentArguments) :
     base(rawStartIndex, rawValue, DirectiveTypes.Execution, contentArguments)
 {
     this.Leveling       = LevelingInfo.Create(this.Value);
     this.BoundControlID = DirectiveHelper.CaptureBoundControlID(this.Value);
 }
Ejemplo n.º 3
0
 public Template(int rawStartIndex, string rawValue, ArgumentInfoCollection contentArguments) :
     base(rawStartIndex, rawValue, DirectiveTypes.Template, contentArguments)
 {
     this.ControlID = DirectiveHelper.CaptureControlID(this.Value);
 }