10 writes to
System.Activities (10)
System\Activities\Statements\CompensableActivity.cs (3)
443
token.BookmarkTable
[
CompensationBookmarkName.OnSecondaryRootScheduled] = context.CreateBookmark(new BookmarkCallback(OnSecondaryRootScheduled));
463
compensationToken.BookmarkTable
[
CompensationBookmarkName.Canceled] = context.CreateBookmark(new BookmarkCallback(OnCanceledOrCompensated));
470
compensationToken.BookmarkTable
[
CompensationBookmarkName.Compensated] = context.CreateBookmark(new BookmarkCallback(OnCanceledOrCompensated));
System\Activities\Statements\CompensationParticipant.cs (4)
138
compensationToken.BookmarkTable
[
CompensationBookmarkName.OnConfirmation] = context.CreateBookmark(new BookmarkCallback(OnConfirmation));
141
compensationToken.BookmarkTable
[
CompensationBookmarkName.OnCompensation] = context.CreateBookmark(new BookmarkCallback(OnCompensation));
144
compensationToken.BookmarkTable
[
CompensationBookmarkName.OnCancellation] = context.CreateBookmark(new BookmarkCallback(OnCancellation));
149
compensationToken.BookmarkTable
[
CompensationBookmarkName.OnSecondaryRootScheduled] = null;
System\Activities\Statements\CompensationTokenData.cs (1)
84
this.BookmarkTable
[
bookmarkName] = null;
System\Activities\Statements\InternalCompensate.cs (1)
52
tokenData.BookmarkTable
[
CompensationBookmarkName.Compensated] = context.CreateBookmark(new BookmarkCallback(OnCompensated));
System\Activities\Statements\InternalConfirm.cs (1)
52
tokenData.BookmarkTable
[
CompensationBookmarkName.Confirmed] = context.CreateBookmark(new BookmarkCallback(OnConfirmed));
11 references to
System.Activities (11)
System\Activities\Statements\CompensableActivity.cs (3)
442
Fx.Assert(token.BookmarkTable
[
CompensationBookmarkName.OnSecondaryRootScheduled] == null, "Bookmark should not be already initialized in the bookmark table.");
462
Fx.Assert(compensationToken.BookmarkTable
[
CompensationBookmarkName.Canceled] == null, "Bookmark should not be already initialized in the bookmark table.");
469
Fx.Assert(compensationToken.BookmarkTable
[
CompensationBookmarkName.Compensated] == null, "Bookmark should not be already initialized in the bookmark table.");
System\Activities\Statements\CompensationExtension.cs (1)
102
bookmark = compensationToken.BookmarkTable
[
bookmarkName];
System\Activities\Statements\CompensationParticipant.cs (4)
137
Fx.Assert(compensationToken.BookmarkTable
[
CompensationBookmarkName.OnConfirmation] == null, "Bookmark should not be already initialized in the bookmark table.");
140
Fx.Assert(compensationToken.BookmarkTable
[
CompensationBookmarkName.OnCompensation] == null, "Bookmark should not be already initialized in the bookmark table.");
143
Fx.Assert(compensationToken.BookmarkTable
[
CompensationBookmarkName.OnCancellation] == null, "Bookmark should not be already initialized in the bookmark table.");
146
Bookmark onSecondaryRootScheduled = compensationToken.BookmarkTable
[
CompensationBookmarkName.OnSecondaryRootScheduled];
System\Activities\Statements\CompensationTokenData.cs (1)
79
Bookmark bookmark = this.BookmarkTable
[
bookmarkName];
System\Activities\Statements\InternalCompensate.cs (1)
51
Fx.Assert(tokenData.BookmarkTable
[
CompensationBookmarkName.Compensated] == null, "Bookmark should not be already initialized in the bookmark table.");
System\Activities\Statements\InternalConfirm.cs (1)
51
Fx.Assert(tokenData.BookmarkTable
[
CompensationBookmarkName.Confirmed] == null, "Bookmark should not be already initialized in the bookmark table.");