private void ZombieCheck()
{
// If this transaction has been completed, throw exception since it is unusable.
if (IsZombied)
{
if (IsYukonPartialZombie)
{
_internalTransaction = null; // yukon zombification
}
throw ADP.TransactionZombied(this);
}
}
}