API Help
Eplan.EplApi.DataModel Namespace / TransactionManager Class
Members Example

In This Topic
    TransactionManager Class
    In This Topic
    TransactionManager is a singleton class.
    Inheritance Hierarchy

    System.Object
       Eplan.EplApi.DataModel.TransactionManager

    Syntax
    public class TransactionManager 
    public ref class TransactionManager 
    Remarks
    For details, please refer to Transactions chapter of API Help.
    Example
    Transaction manager usage example.
    using (Transaction txn = new TransactionManager().CreateTransaction())
    {
    Function f;
    f.Name = "F1";			
    txn.Commit();
    }
    Public Constructors
     NameDescription
    Public ConstructorConstructor.  
    Top
    Public Properties
     NameDescription
    Public PropertyTells if a P8 transaction is open.  
    Public PropertyTells if a read-write API transaction is open.  
    Top
    Public Methods
     NameDescription
    Public MethodCreates object representing a read-write transaction.  
    Top
    See Also