https://github.com/Microsoft/react-native-windows/blob/8bc676281c3f8a2bc8e783654e608c0e489ed5b1/ReactWindows/ReactNative/Modules/Storage/AsyncStorageModule.cs#L322
Any _mutex.Release() (or any other code using _mutex) will crash with ObjectDisposedException if React instance was disposed meanwhile and _mutex.Dispose() was called. This is possible since _mutex.Release() calls are done in continuations that can be executed after the disposal.