本文整理汇总了C#中System.Web.UI.ControlBuilder.GetChildControlType方法的典型用法代码示例。如果您正苦于以下问题:C# ControlBuilder.GetChildControlType方法的具体用法?C# ControlBuilder.GetChildControlType怎么用?C# ControlBuilder.GetChildControlType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Web.UI.ControlBuilder
的用法示例。
在下文中一共展示了ControlBuilder.GetChildControlType方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Deny_Unrestricted
public void Deny_Unrestricted ()
{
ControlBuilder cb = new ControlBuilder ();
Assert.IsNull (cb.ControlType, "ControlType");
Assert.IsFalse (cb.HasAspCode, "HasAspCode");
cb.ID = "mono";
Assert.AreEqual ("mono", cb.ID, "ID");
Assert.AreEqual (typeof (Control), cb.NamingContainerType, "NamingContainerType");
Assert.IsNull (cb.TagName, "TagName");
Assert.IsTrue (cb.AllowWhitespaceLiterals (), "AllowWhitespaceLiterals");
cb.AppendLiteralString ("mono");
cb.AppendSubBuilder (cb);
cb.CloseControl ();
Assert.IsNull (cb.GetChildControlType (null, null), "GetChildControlType");
Assert.IsTrue (cb.HasBody (), "HasBody");
Assert.IsFalse (cb.HtmlDecodeLiterals (), "HtmlDecodeLiterals");
cb.Init (null, cb, typeof (TemplateBuilder), "span", "mono", null);
Assert.IsFalse (cb.NeedsTagInnerText (), "NeedsTagInnerText");
//cb.OnAppendToParentBuilder (null);
cb.SetTagInnerText ("mono");
cb = ControlBuilder.CreateBuilderFromType (null, cb, typeof (TemplateBuilder), "span", "mono", null, 0, String.Empty);
Assert.IsNotNull (cb, "CreateBuilderFromType");
}