ObjectDataSourceDisposingEventArgs Sınıf
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.
Denetimin ObjectDisposing olayı ObjectDataSource için veri sağlar.
public ref class ObjectDataSourceDisposingEventArgs : System::ComponentModel::CancelEventArgs
public class ObjectDataSourceDisposingEventArgs : System.ComponentModel.CancelEventArgs
type ObjectDataSourceDisposingEventArgs = class
inherit CancelEventArgs
Public Class ObjectDataSourceDisposingEventArgs
Inherits CancelEventArgs
- Devralma
Örnekler
Bu bölüm iki kod örneği içerir. İlk kod örneği, bilgileri görüntülemek için bir denetimin bir iş nesnesiyle ve denetimle GridView nasıl kullanılacağını ObjectDataSource gösterir. İkinci kod örneği, ilk kod örneğinin kullandığı örnek orta katman iş nesnesini sağlar.
Aşağıdaki kod örneği, bilgileri görüntülemek için bir ObjectDataSource denetimin bir iş nesnesiyle ve denetimle GridView nasıl kullanılacağını gösterir. Web sayfanızın gerçekleştirdiği her veri işlemi için oluşturmak için çok pahalı (zaman veya kaynaklar açısından) bir iş nesnesiyle çalışabilirsiniz. Pahalı bir nesneyle çalışmanın bir yolu, örneğini bir kez oluşturmak ve ardından her veri işlemi için oluşturup yok etmek yerine sonraki işlemler için önbelleğe almak olabilir. Bu örnekte bu desen gösterilmektedir. Önce bir nesnenin ObjectCreating önbelleğini denetlemek için olayı işleyebilir ve ardından yalnızca bir nesne henüz önbelleğe alınmamışsa bir örnek oluşturabilirsiniz. Ardından, iş nesnesini yok etmek yerine gelecekte kullanmak üzere önbelleğe almak için olayı işleyin ObjectDisposing . Bu örnekte nesnesinin CancelEventArgs.CancelObjectDataSourceDisposingEventArgs özelliği, örneğinde yöntemini çağırmamaya Dispose yönlendirmek ObjectDataSource için olarak ayarlanmıştırtrue.
<%@ Import namespace="Samples.AspNet.CS" %>
<%@ Page language="c#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
// Instead of creating and destroying the business object each time, the
// business object is cached in the ASP.NET Cache.
private void GetEmployeeLogic(object sender, ObjectDataSourceEventArgs e)
{
// First check to see if an instance of this object already exists in the Cache.
EmployeeLogic cachedLogic;
cachedLogic = Cache["ExpensiveEmployeeLogicObject"] as EmployeeLogic;
if (null == cachedLogic) {
cachedLogic = new EmployeeLogic();
}
e.ObjectInstance = cachedLogic;
}
private void ReturnEmployeeLogic(object sender, ObjectDataSourceDisposingEventArgs e)
{
// Get the instance of the business object that the ObjectDataSource is working with.
EmployeeLogic cachedLogic = e.ObjectInstance as EmployeeLogic;
// Test to determine whether the object already exists in the cache.
EmployeeLogic temp = Cache["ExpensiveEmployeeLogicObject"] as EmployeeLogic;
if (null == temp) {
// If it does not yet exist in the Cache, add it.
Cache.Insert("ExpensiveEmployeeLogicObject", cachedLogic);
}
// Cancel the event, so that the object will
// not be Disposed if it implements IDisposable.
e.Cancel = true;
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>ObjectDataSource - C# Example</title>
</head>
<body>
<form id="Form1" method="post" runat="server">
<asp:gridview
id="GridView1"
runat="server"
datasourceid="ObjectDataSource1">
</asp:gridview>
<asp:objectdatasource
id="ObjectDataSource1"
runat="server"
selectmethod="GetCreateTime"
typename="Samples.AspNet.CS.EmployeeLogic"
onobjectcreating="GetEmployeeLogic"
onobjectdisposing="ReturnEmployeeLogic" >
</asp:objectdatasource>
</form>
</body>
</html>
<%@ Import namespace="Samples.AspNet.VB" %>
<%@ Page language="vb" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
' Instead of creating and destroying the business object each time, the
' business object is cached in the ASP.NET Cache.
Sub GetEmployeeLogic(sender As Object, e As ObjectDataSourceEventArgs)
' First check to see if an instance of this object already exists in the Cache.
Dim cachedLogic As EmployeeLogic
cachedLogic = CType( Cache("ExpensiveEmployeeLogicObject"), EmployeeLogic)
If (cachedLogic Is Nothing) Then
cachedLogic = New EmployeeLogic
End If
e.ObjectInstance = cachedLogic
End Sub ' GetEmployeeLogic
Sub ReturnEmployeeLogic(sender As Object, e As ObjectDataSourceDisposingEventArgs)
' Get the instance of the business object that the ObjectDataSource is working with.
Dim cachedLogic As EmployeeLogic
cachedLogic = CType( e.ObjectInstance, EmployeeLogic)
' Test to determine whether the object already exists in the cache.
Dim temp As EmployeeLogic
temp = CType( Cache("ExpensiveEmployeeLogicObject"), EmployeeLogic)
If (temp Is Nothing) Then
' If it does not yet exist in the Cache, add it.
Cache.Insert("ExpensiveEmployeeLogicObject", cachedLogic)
End If
' Cancel the event, so that the object will
' not be Disposed if it implements IDisposable.
e.Cancel = True
End Sub ' ReturnEmployeeLogic
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>ObjectDataSource - VB Example</title>
</head>
<body>
<form id="Form1" method="post" runat="server">
<asp:gridview
id="GridView1"
runat="server"
datasourceid="ObjectDataSource1">
</asp:gridview>
<asp:objectdatasource
id="ObjectDataSource1"
runat="server"
selectmethod="GetCreateTime"
typename="Samples.AspNet.VB.EmployeeLogic"
onobjectcreating="GetEmployeeLogic"
onobjectdisposing="ReturnEmployeeLogic" >
</asp:objectdatasource>
</form>
</body>
</html>
Aşağıdaki kod örneği, önceki kod örneğinin kullandığı örnek bir orta katman iş nesnesi sağlar. Kod örneği, durumu koruyan ve iş mantığını kapsülleyen bir sınıf olan sınıfı tarafından EmployeeLogic tanımlanan temel bir iş nesnesinden oluşur. Tam bir çalışma örneği için, bu kodu bir kitaplık olarak derlemeniz ve ardından bir ASP sayfasından bu sınıfları kullanmanız gerekir.
namespace Samples.AspNet.CS {
using System;
using System.Collections;
using System.Web.UI;
using System.Web.UI.WebControls;
//
// EmployeeLogic is a stateless business object that encapsulates
// the operations you can perform on a NorthwindEmployee object.
//
public class EmployeeLogic {
public EmployeeLogic () : this(DateTime.Now) {
}
public EmployeeLogic (DateTime creationTime) {
_creationTime = creationTime;
}
private DateTime _creationTime;
// Returns a collection of NorthwindEmployee objects.
public ICollection GetCreateTime () {
ArrayList al = new ArrayList();
// Returns creation time for this example.
al.Add("The business object that you are using was created at " + _creationTime);
return al;
}
}
}
Imports System.Collections
Imports System.Web.UI
Imports System.Web.UI.WebControls
Namespace Samples.AspNet.VB
Public Class EmployeeLogic
Public Sub New()
MyClass.New(DateTime.Now)
End Sub
Public Sub New(ByVal creationTime As DateTime)
_creationTime = creationTime
End Sub
Private _creationTime As DateTime
' Returns a collection of NorthwindEmployee objects.
Public Function GetCreateTime() As ICollection
Dim al As New ArrayList()
' Returns creation time for this example.
al.Add("The business object that you are using was created at " + _creationTime)
Return al
End Function 'GetCreateTime
End Class
End Namespace ' Samples.AspNet.VB
Açıklamalar
sınıfıObjectDataSourceDisposingEventArgs, denetimi ve iş nesnesini kullanan ObjectDataSource tüm veri işlemleri gerçekleştirildikten sonra ancak iş nesnesi yok edilmeden önce iş nesnesi örneğine erişim sağlamak için yönteminde kullanılırOnObjectDisposing. İş nesnesine ObjectInstance özelliği kullanılarak erişilir. Olayı işlemek için bir temsilci ekleyerek, iş nesnesinin ObjectDisposing genel kullanıma sunulan üyelerine erişerek son işleri gerçekleştirebilir veya temizleyebilirsiniz.
OnObjectDisposing Veri işlemlerini gerçekleştiren yöntem bir static yöntemse, yöntemi denetim tarafından ObjectDataSource çağrılmaz. Yöntem statik olduğunda hiçbir iş nesnesi örneği oluşturulmaz.
Denetim, ObjectDataSource yaşam döngüsünde çeşitli zamanlarda temel alınan iş nesnesiyle çalışmak için işleyebileceğiniz birçok olayı kullanıma sunar. Aşağıdaki tabloda olayları ve ilişkili EventArgs sınıflar ile olay işleyici temsilcileri listelemektedir.
Oluşturucular
| Name | Description |
|---|---|
| ObjectDataSourceDisposingEventArgs(Object) |
Belirtilen nesneyi kullanarak sınıfın ObjectDataSourceDisposingEventArgs yeni bir örneğini başlatır. |
Özellikler
| Name | Description |
|---|---|
| Cancel |
Olayın iptal edilip edilmeyeceğini belirten bir değer alır veya ayarlar. (Devralındığı yer: CancelEventArgs) |
| ObjectInstance |
Denetimin veri işlemlerini gerçekleştirdiği iş nesnesini temsil eden ObjectDataSource bir nesne alır. |
Yöntemler
| Name | Description |
|---|---|
| Equals(Object) |
Belirtilen nesnenin geçerli nesneye eşit olup olmadığını belirler. (Devralındığı yer: Object) |
| GetHashCode() |
Varsayılan karma işlevi işlevi görür. (Devralındığı yer: Object) |
| GetType() |
Geçerli örneğin Type alır. (Devralındığı yer: Object) |
| MemberwiseClone() |
Geçerli Objectbasit bir kopyasını oluşturur. (Devralındığı yer: Object) |
| ToString() |
Geçerli nesneyi temsil eden bir dize döndürür. (Devralındığı yer: Object) |