ServicedComponent.CanBePooled Yöntem

Tanım

Bu yöntem, nesne havuza geri yerleştirilmeden önce altyapı tarafından çağrılır. Bu yöntemi geçersiz kılarak nesnenin havuza geri alınıp alınmayacağına oy verin.

protected public:
 virtual bool CanBePooled();
protected internal virtual bool CanBePooled ();
abstract member CanBePooled : unit -> bool
override this.CanBePooled : unit -> bool
Protected Friend Overridable Function CanBePooled () As Boolean

Döndürülenler

true hizmet sunulan bileşen havuza alınabiliyorsa; aksi takdirde , false.

Örnekler

Aşağıdaki kod örneği bu yöntemin kullanımını gösterir.

// This object can be pooled.
virtual bool CanBePooled() override
{
   return (true);
}
// This object can be pooled.
protected override bool CanBePooled()
{
    return(true);
}
' This object can be pooled.
Protected Overrides Function CanBePooled() As Boolean 
    Return True

End Function 'CanBePooled

Şunlara uygulanır