LiteralControl.CreateControlCollection Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Sınıfının geçerli örneği LiteralControl için bir EmptyControlCollection nesnesi oluşturur.
protected:
override System::Web::UI::ControlCollection ^ CreateControlCollection();
protected override System.Web.UI.ControlCollection CreateControlCollection ();
override this.CreateControlCollection : unit -> System.Web.UI.ControlCollection
Protected Overrides Function CreateControlCollection () As ControlCollection
Döndürülenler
EmptyControlCollection Geçerli denetimin için.
Örnekler
Aşağıdaki kod örneği, sınıfının bir örneği yerine sınıfının bir örneğini ControlCollectionEmptyControlCollection oluşturmak için yöntemini geçersiz kılarCreateControlCollection.
[System.Security.Permissions.PermissionSet(System.Security.Permissions.SecurityAction.Demand, Name="FullTrust")]
protected override ControlCollection CreateControlCollection()
{
myControlCollection=new ControlCollection(this);
return myControlCollection;
}
<System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.Demand, Name:="FullTrust")> _
Protected Overrides Function CreateControlCollection() As ControlCollection
myControlCollection = New ControlCollection(Me)
Return myControlCollection
End Function 'CreateControlCollection
Açıklamalar
Varsayılan olarak, LiteralControl nesneler yalnızca metin içerir ve alt sunucu denetimi içermez. Bu davranışı değiştirmek istiyorsanız, bu yöntemi geçersiz kılmanız gerekir.