[This is preliminary documentation and subject to change.]
Gets an object that can be used to synchronize the access to this list.
An object that can be used to synchronize access to this list.
The expected usage for SyncRoot looks like this
PagedListBase myList = new PagedList(/*...*/); lock(myList.SyncRoot ) { Some operation on the list, which is now thread-safe. }
PagedListBase Class | PmMda.Net.Dog.Paging Namespace