System.Web.UI.Control.IsLiteralContent C# (CSharp) 메소드

IsLiteralContent() 보호된 메소드

protected IsLiteralContent ( ) : bool
리턴 bool
		protected bool IsLiteralContent ()
		{
			if (_controls != null && _controls.Count == 1 && _controls [0] is LiteralControl)
				return true;

			return false;
		}