| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // System.Web.UI.CodeBuilder
- //
- // Authors:
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (C) 2003 Ximian, Inc. (http://www.ximian.com)
- //
- using System.Web.Compilation;
- namespace System.Web.UI
- {
- abstract class CodeBuilder : ControlBuilder
- {
- string code;
- bool isAssign;
-
- public CodeBuilder (string code, bool isAssign, ILocation location)
- {
- this.code = code;
- this.isAssign = isAssign;
- this.line = location.BeginLine;
- this.fileName = location.Filename;
- this.location = location;
- }
- internal override object CreateInstance ()
- {
- return null;
- }
- internal string Code {
- get { return code; }
- set { code = value; }
- }
- internal bool IsAssign {
- get { return isAssign; }
- }
- }
- }
|