()
| 327 | public class CancelableWrite(IVTable cancelableVTable, int handle) : ICancelable |
| 328 | { |
| 329 | public uint Cancel() |
| 330 | { |
| 331 | return cancelableVTable.CancelWrite(handle); |
| 332 | } |
| 333 | } |
| 334 | |
| 335 | /// <summary> |
nothing calls this directly
no test coverage detected