ControlCollection(Control) Oluşturucu

Tanım

Belirtilen üst sunucu denetimi için sınıfının yeni bir örneğini ControlCollection başlatır.

C#
public ControlCollection (System.Web.UI.Control owner);

Parametreler

owner
Control

Denetim koleksiyonunun oluşturulduğu ASP.NET sunucu denetimi.

Özel durumlar

parametresi ise ownernullgerçekleşir.

Örnekler

Aşağıdaki kod örneği, koleksiyonun bir örneği oluşturulduğunda izleme günlüğüne ileti (özelliğin Owner adını içeren) yazmak için oluşturucuyu geçersiz kılan özel ControlCollection bir sınıftır. Bu örneğin çalışması için sayfa veya uygulama için izlemeyi etkinleştirmeniz gerekir.

C#
// Create a custom ControlCollection that writes
// information to the Trace log when an instance
// of the collection is created.
[AspNetHostingPermission(SecurityAction.Demand, Level=AspNetHostingPermissionLevel.Minimal)]
public class CustomControlCollection : ControlCollection
{
    private HttpContext context;

    public CustomControlCollection(Control owner)
        : base(owner)
    {

        HttpContext.Current.Trace.Write("The control collection is created.");
        // Display the Name of the control
        // that uses this collection when tracing is enabled.
        HttpContext.Current.Trace.Write("The owner is: " + this.Owner.ToString());
    }
}

Ş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, 4.8.1

Ayrıca bkz.