public void SendCreateCoordinationContextResponse(TransactionContext txContext, Microsoft.Transactions.Wsat.Messaging.RequestAsyncResult result)
 {
     CreateCoordinationContextResponse response = new CreateCoordinationContextResponse(this.state.ProtocolVersion) {
         CoordinationContext = txContext.CoordinationContext,
         IssuedToken = txContext.IssuedToken
     };
     if (DebugTrace.Info)
     {
         DebugTrace.Trace(TraceLevel.Info, "Sending CreateCoordinationContextResponse");
     }
     ActivationProxy.SendCreateCoordinationContextResponse(result, ref response);
 }
 public TransactionContextCreatedEvent(TransactionContextManager contextManager, Microsoft.Transactions.Wsat.Protocol.TransactionContext context) : base(contextManager)
 {
     this.context = context;
 }
 public TransactionContextCreatedEvent(TransactionContextManager contextManager, Microsoft.Transactions.Wsat.Protocol.TransactionContext context) : base(contextManager)
 {
     this.context = context;
 }