ObjectDataSource.ObjectDisposing 이벤트
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
속성으로 식별되는 개체가 삭제되기 TypeName 전에 발생합니다.
public:
event System::Web::UI::WebControls::ObjectDataSourceDisposingEventHandler ^ ObjectDisposing;
public event System.Web.UI.WebControls.ObjectDataSourceDisposingEventHandler ObjectDisposing;
member this.ObjectDisposing : System.Web.UI.WebControls.ObjectDataSourceDisposingEventHandler
Public Custom Event ObjectDisposing As ObjectDataSourceDisposingEventHandler
이벤트 유형
예제
이 섹션에는 두 가지 코드 예제가 포함되어 있습니다. 첫 번째 코드 예제에서는 비즈니스 개체와 컨트롤을 사용 하 여 정보를 표시 하는 개체를 GridView 사용 ObjectDataSource 하는 방법을 보여 줍니다. 두 번째 코드 예제에서는 첫 번째 코드 예제에서 사용되는 중간 계층 비즈니스 개체를 제공합니다.
다음 코드 예제에서는 비즈니스 개체와 컨트롤을 사용 하 여 정보를 표시 하는 컨트롤을 GridView 사용 ObjectDataSource 하는 방법을 보여 줍니다. 웹 페이지에서 수행하는 모든 데이터 작업에 대해 시간 또는 리소스 측면에서 만드는 데 비용이 많이 드는 비즈니스 개체로 작업할 수 있습니다. 비용이 많이 드는 개체로 작업하는 한 가지 방법은 인스턴스를 한 번 만든 다음 모든 데이터 작업에 대해 인스턴스를 만들고 삭제하는 대신 후속 작업을 위해 캐시하는 것입니다. 이 예제에서는 이 패턴을 보여 줍니다. 이벤트를 처리 ObjectCreating 하여 먼저 개체에 대한 캐시를 확인하고, 캐시가 아직 캐시되지 않은 경우에만 인스턴스를 만들 수 있습니다. 그런 다음, 이벤트를 처리 ObjectDisposing 하여 비즈니스 개체를 삭제하는 대신 나중에 사용할 수 있도록 캐시합니다. 이 코드 예제 CancelEventArgs.Cancel 에서 개체의 ObjectDataSourceDisposingEventArgs 속성은 개체에서 메서드를 호출 Dispose 하지 않도록 지시 ObjectDataSource 하도록 설정 true 됩니다.
<%@ 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>
다음 코드 예제에서는 앞의 코드 예제에서 사용하는 중간 계층 비즈니스 개체 예제를 제공합니다. 코드 예제는 비즈니스 논리를 캡슐화하는 상태 저장 클래스인 클래스에서 EmployeeLogic 정의한 기본 비즈니스 개체로 구성됩니다. 전체 작업 예제에서는 이 코드를 라이브러리로 컴파일하고 ASP.NET 페이지(.aspx 파일)에서 이러한 클래스를 사용해야 합니다.
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
다음 예제에서는 LINQ to SQL 클래스와 ObjectDisposing 함께 컨트롤을 ObjectDataSource 사용할 때 이벤트를 처리 하는 방법을 보여 옵니다.
Public Sub ExampleObjectDisposing(ByVal sender As Object, _
ByVal e As ObjectDataSourceDisposingEventArgs)
e.Cancel = True
End Sub
public void ExampleObjectDisposing(object sender,
ObjectDataSourceDisposingEventArgs e)
{
e.Cancel = true;
}
설명
비즈니스 ObjectDisposing 개체의 인스턴스가 삭제되기 전에 이벤트가 항상 발생합니다. 비즈니스 개체가 인터페이스 Dispose 를 구현하는 IDisposable 경우 이 이벤트가 발생한 후 메서드가 호출됩니다.
개체에서 ObjectDisposing 다른 메서드를 호출하거나, 속성을 설정하거나, 개체가 제거되기 전에 개체와 관련된 정리를 수행하는 이벤트를 처리합니다. 개체에 대한 참조는 개체에 의해 ObjectInstance 노출되는 속성에 의해 ObjectDataSourceEventArgs 액세스됩니다.
LINQ to SQL 클래스와 함께 컨트롤을 사용하는 ObjectDataSource 경우 이벤트 처리기 ObjectDisposing 에서 데이터 컨텍스트 클래스의 삭제를 취소해야 합니다. LINQ to SQL은 지연된 실행을 지원하는 반면 ObjectDataSource 컨트롤은 선택 작업 후에 데이터 컨텍스트를 삭제하려고 하기 때문에 이 단계가 필요합니다.
이벤트를 처리하는 방법에 대한 자세한 내용은 이벤트 처리 및 발생을 참조하세요.