Home
last modified time | relevance | path

Searched refs:_promoterType (Results 1 – 4 of 4) sorted by relevance

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Transactions.Local/src/System/Transactions/
H A DInternalTransaction.cs37 internal Guid _promoterType = Guid.Empty; field in System.Transactions.InternalTransaction
214 … if ((_promoterType != Guid.Empty) && (_promoterType != TransactionInterop.PromoterTypeDtc)) in SetPromoterTypeToMSDTC()
218 _promoterType = TransactionInterop.PromoterTypeDtc; in SetPromoterTypeToMSDTC()
225 … if ((_promoterType != Guid.Empty) && (_promoterType != TransactionInterop.PromoterTypeDtc)) in ThrowIfPromoterTypeIsNotMSDTC()
227 … TransactionPromotionException(SR.Format(SR.PromoterTypeUnrecognized, _promoterType.ToString()), _… in ThrowIfPromoterTypeIsNotMSDTC()
H A DTransactionState.cs820 …Debug.Assert(tx._promoterType != Guid.Empty, "InternalTransaction.PromoterType was not set in PSPE… in EnlistPromotableSinglePhase()
821 if (tx._promoterType == TransactionInterop.PromoterTypeDtc) in EnlistPromotableSinglePhase()
1111 …Debug.Assert(tx._promoterType != Guid.Empty, "InternalTransaction.PromoterType was not set in Phas… in EnlistPromotableSinglePhase()
1112 if (tx._promoterType == TransactionInterop.PromoterTypeDtc) in EnlistPromotableSinglePhase()
2198 …Debug.Assert((tx._promoterType == Guid.Empty) || (tx._promoterType == TransactionInterop.PromoterT… in EnterState()
3520 … TransactionPromotionException(SR.Format(SR.PromoterTypeUnrecognized, tx._promoterType.ToString()), in EnlistDurable()
3532 … TransactionPromotionException(SR.Format(SR.PromoterTypeUnrecognized, tx._promoterType.ToString()), in EnlistDurable()
3636 … TransactionPromotionException(SR.Format(SR.PromoterTypeUnrecognized, tx._promoterType.ToString()), in GetObjectData()
4430 tx._promoterType = promoterType; in PSPEInitialize()
4457 tx._promoterType = promoterType; in Phase0PSPEInitialize()
[all …]
H A DTransaction.cs446 return _internalTransaction._promoterType;
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Transactions.Local/tests/
H A DNonMsdtcPromoterTests.cs365 private Guid _promoterType; field in System.Transactions.Tests.NonMsdtcPromoterTests.NonMSDTCPromoterEnlistment
390 _promoterType = promoterType; in NonMSDTCPromoterEnlistment()
433 if (!EnlistPromotable(this, txToEnlist, _promoterType)) in Enlist()
438 if (comparePromotedToken && (TxPromoterType(txToEnlist) == _promoterType)) in Enlist()
520 …listment incorrectNotificationObject = new NonMSDTCPromoterEnlistment(_promoterType, _promotedToke… in Promote()