ControlBuilder.HasAspCode Özellik

Tanım

Denetimin kod blokları içerip içermediğini belirten bir değer alır.

C#
public bool HasAspCode { get; }
C#
public virtual bool HasAspCode { get; }

Özellik Değeri

Boolean

true denetim en az bir kod bloğu içeriyorsa; aksi takdirde , false.

Örnekler

Bu örnek, bu oluşturucunun OnAppendToParentBuilder hangi denetim türüne uygulandığını ControlType belirlemek için özelliğini denetlemek için yöntemini geçersiz kılar. Bu bir CustomTextBoxise, oluşturucu özelliğin değerinin denetime HasAspCode eklenip eklenmediğini denetler. Bu durumda, yöntem çağrılmazsa HasBody bir özel durum oluşturulur.

C#
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();
            }
        }
    }
}

Şunlara uygulanır

Ürün Sürümler
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8