ControlBuilder.HasAspCode 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
컨트롤에 코드 블록이 포함되어 있는지 여부를 나타내는 값을 가져옵니다.
public:
property bool HasAspCode { bool get(); };
public:
virtual property bool HasAspCode { bool get(); };
public bool HasAspCode { get; }
public virtual bool HasAspCode { get; }
member this.HasAspCode : bool
Public ReadOnly Property HasAspCode As Boolean
Public Overridable ReadOnly Property HasAspCode As Boolean
속성 값
컨트롤에 적어도 하나 이상의 코드 블록이 포함되어 있으면 true
이고, 그렇지 않으면 false
입니다.
예제
이 예제에서는 속성을 확인 ControlType 하려면이 작성기가 적용 되는 컨트롤의 형식을 확인 하는 메서드를 재정 OnAppendToParentBuilder 의 합니다. 이 속성이 CustomTextBox
있으면 작성기는 속성 값이 컨트롤에 HasAspCode 포함되어 있는지 여부를 확인합니다. 이 경우 메서드가 호출되지 않으면 예외가 HasBody throw됩니다.
using System;
using System.Web.UI;
using System.Web;
using System.Security.Permissions;
namespace ASPNET.Samples
{
[
AspNetHostingPermission(SecurityAction.Demand,
Level=AspNetHostingPermissionLevel.Minimal)
]
public class AppendControlBuilder : ControlBuilder
{
// Override the OnAppendToParentBuilder method.
public override void OnAppendToParentBuilder(ControlBuilder parentBuilder)
{
// Check whether the type of the control this builder
// is applied to is CustomTextBox. If so, check whether
// ASP code blocks exist in the control. If so, call
// throw an Exception, if not, call the HasBody method.
if (ControlType == Type.GetType("CustomTextBox"))
{
if (HasAspCode)
throw new Exception("This control cannot contain code blocks.");
else
HasBody();
}
}
}
}
Imports System.Web.UI
Imports System.Web
Imports System.Security.Permissions
Namespace ASPNET.Samples
<AspNetHostingPermission(SecurityAction.Demand, Level:=AspNetHostingPermissionLevel.Minimal)> _
Public NotInheritable Class AppendControlBuilder
Inherits ControlBuilder
' Override the OnAppendToParentBuilder method.
Overrides Public Sub OnAppendToParentBuilder( _
ByVal parentBuilder As ControlBuilder _
)
' Check whether the type of the control this builder
' is applied to is CustomTextBox. If so, check whether
' ASP code blocks exist in the control. If so, call
' throw an Exception, if not, call the HasBody method.
If ControlType Is Type.GetType("CustomTextBox") Then
If HasAspCode = True Then
Throw New Exception("This control cannot contain code blocks.")
Else
HasBody()
End If
End If
End Sub
End Class
End Namespace