2 types derived from TemplateControl
System.Web (2)
UI\Page.cs (1)
192
public class Page:
TemplateControl
, IHttpHandler {
UI\UserControl.cs (1)
87
public class UserControl :
TemplateControl
, IAttributeAccessor, INonBindingContainer, IUserControlDesignerAccessor {
45 references to TemplateControl
System.Web (34)
Compilation\BaseTemplateCodeDomTreeGenerator.cs (1)
308
if (topLevelControlInTemplate && !typeof(
TemplateControl
).IsAssignableFrom(ctrlType)) {
Compilation\BuildResult.cs (5)
1012
TemplateControl
templateControl = (
TemplateControl
) HttpRuntime.FastCreatePublicInstance(_baseType);
1029
internal virtual void FrameworkInitialize(
TemplateControl
templateControl) {
1035
TemplateControl
savedTemplateControl = context.TemplateControl;
1107
internal override void FrameworkInitialize(
TemplateControl
templateControl) {
Compilation\ExpressionBuilderContext.cs (3)
17
private
TemplateControl
_templateControl;
28
public ExpressionBuilderContext(
TemplateControl
templateControl) {
32
public
TemplateControl
TemplateControl {
Compilation\ResourceExpressionBuilder.cs (1)
291
internal static IResourceProvider GetLocalResourceProvider(
TemplateControl
templateControl) {
HttpContext.cs (2)
122
private
TemplateControl
_templateControl;
1377
internal
TemplateControl
TemplateControl {
UI\Control.cs (8)
1043
/// <para>Gets the reference to the <see cref='System.Web.UI.
TemplateControl
'/>
1046
internal virtual
TemplateControl
GetTemplateControl() {
1049
TemplateControl
templateControl = Parent.GetTemplateControl();
1061
/// <para>Gets the reference to the <see cref='System.Web.UI.
TemplateControl
'/>
1070
public
TemplateControl
TemplateControl {
1177
TemplateControl
control = TemplateControl;
3347
if (!(control is
TemplateControl
)) {
3648
public
TemplateControl
TemplateControl;
UI\ControlBuilder.cs (2)
670
internal
TemplateControl
TemplateControl {
2501
TemplateControl
templateControl = TemplateControl;
UI\LiteralControl.cs (2)
133
private
TemplateControl
_tplControl;
138
internal ResourceBasedLiteralControl(
TemplateControl
tplControl, int offset, int size, bool fAsciiOnly) {
UI\MasterPage.cs (3)
70
internal
TemplateControl
_ownerControl;
164
internal static MasterPage CreateMaster(
TemplateControl
owner, HttpContext context,
254
TemplateControl
oldControl = context.TemplateControl;
UI\TemplateBuilder.cs (3)
173
TemplateControl
savedTemplateControl = null;
175
TemplateControl
templateControl = container as
TemplateControl
;
UI\TemplateControl.cs (2)
386
internal override
TemplateControl
GetTemplateControl() {
622
if (f.GetMethod().DeclaringType != typeof(
TemplateControl
)) {
UI\WebControls\Content.cs (1)
69
TemplateControl
templateControl = context.TemplateControl;
UI\WebControls\Substitution.cs (1)
104
TemplateControl
target = TemplateControl;
System.Web.Mobile (11)
UI\MobileControls\DeviceSpecific.cs (2)
186
private
TemplateControl
_closestTemplateControl = null;
187
internal
TemplateControl
ClosestTemplateControl
UI\MobileControls\DeviceSpecificChoice.cs (1)
333
TemplateControl
containingTemplateControl = Owner.ClosestTemplateControl;
UI\MobileControls\MobileControl.cs (5)
196
if (ctl is
TemplateControl
)
315
internal
TemplateControl
FindContainingTemplateControl()
318
while (!(control is
TemplateControl
) &&
330
return (
TemplateControl
)control;
380
TemplateControl
parentTemplateControl = FindContainingTemplateControl();
UI\MobileControls\Style.cs (1)
291
TemplateControl
nearestTemplatedControl =
UI\MobileControls\StyleSheet.cs (2)
244
TemplateControl
parent = (
TemplateControl
)Parent;