次の方法で共有


TransactionManager.BeginTransaction メソッド (String, Boolean, TransactionContext)

指定した名前の新しいトランザクション オブジェクトを作成し、そのオブジェクトへの参照を返します

名前空間:  Microsoft.VisualStudio.Modeling
アセンブリ:  Microsoft.VisualStudio.Modeling.Sdk.12.0 (Microsoft.VisualStudio.Modeling.Sdk.12.0.dll 内)

構文

'宣言
Public Function BeginTransaction ( _
    name As String, _
    isSerializing As Boolean, _
    context As TransactionContext _
) As Transaction
public Transaction BeginTransaction(
    string name,
    bool isSerializing,
    TransactionContext context
)

パラメーター

  • isSerializing
    型 : System.Boolean
    transaction.IsSerializing の値を決定します。true は、モデルがファイルから読み取られることを示します。

戻り値

型 : Microsoft.VisualStudio.Modeling.Transaction
Transaction オブジェクト。

解説

トランザクションのコンテキスト オブジェクトに渡される情報を使用するイベント ハンドラーと規則に書き込まれたこのバージョンを使用します。 規則がトランザクションの最後に任意の順序で呼び出されるため、またはその間で情報を渡すことは直接ではありません。 トランザクションは、コンテキスト情報が渡すことができる辞書です。

// In a rule:
UsefulInfo info = this.Store.TransactionManager.CurrentTransaction
    .TopLevelTransaction.Context.ContextInfo["akey"] as UsefulInfo;

.NET Framework セキュリティ

  • 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。

参照

関連項目

TransactionManager クラス

BeginTransaction オーバーロード

Microsoft.VisualStudio.Modeling 名前空間