EntityDataSourceContextDisposingEventArgs クラス

定義

ContextDisposing イベントのデータを提供します。

public ref class EntityDataSourceContextDisposingEventArgs : System::ComponentModel::CancelEventArgs
public class EntityDataSourceContextDisposingEventArgs : System.ComponentModel.CancelEventArgs
type EntityDataSourceContextDisposingEventArgs = class
    inherit CancelEventArgs
Public Class EntityDataSourceContextDisposingEventArgs
Inherits CancelEventArgs
継承
EntityDataSourceContextDisposingEventArgs

この例では、 イベントを ObjectContext 処理することで、 を将来の参照用に保持します ContextCreated

protected void EntityDataSource2_ContextDisposing(object sender,   
    EntityDataSourceContextDisposingEventArgs e)  
{  
    e.Cancel = true;  
}  

注釈

イベントを ContextDisposing 処理し、 オブジェクトの プロパティを CancelEntityDataSourceContextDisposingEventArgstrue設定します。 これにより、 の破棄が防止されます ObjectContext。 詳細については、「 オブジェクト コンテキスト Life-Cycle管理 (EntityDataSource)」を参照してください。

プロパティ

Cancel

イベントをキャンセルするかどうかを示す値を取得または設定します。

(継承元 CancelEventArgs)
Context

データ ソースが使用する ObjectContext を取得します。

メソッド

Equals(Object)

指定されたオブジェクトが現在のオブジェクトと等しいかどうかを判断します。

(継承元 Object)
GetHashCode()

既定のハッシュ関数として機能します。

(継承元 Object)
GetType()

現在のインスタンスの Type を取得します。

(継承元 Object)
MemberwiseClone()

現在の Object の簡易コピーを作成します。

(継承元 Object)
ToString()

現在のオブジェクトを表す文字列を返します。

(継承元 Object)

適用対象