11 references to _bookmarkTable
System.Speech (11)
Recognition\RecognizerBase.cs (11)
2699
lock (
_bookmarkTable
) // Lock to protect _nextBookmarkId and _bookmarkTable
2711
_bookmarkTable
[unchecked((int)bookmarkId)] = userToken;
2720
lock (
_bookmarkTable
) // Lock to protect _nextBookmarkId and _bookmarkTable
2728
if (
_bookmarkTable
.Count > 0)
2730
int[] keysArray = new int[
_bookmarkTable
.Count];
2731
_bookmarkTable
.Keys.CopyTo(keysArray, 0);
2736
_bookmarkTable
.Remove(keysArray[i]);
2741
if (
_bookmarkTable
.Count == 0)
2763
lock (
_bookmarkTable
) // Lock to protect _bookmarkTable
2766
userToken =
_bookmarkTable
[id];
2767
_bookmarkTable
.Remove(id);