Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
In an AppFabric Cache you can segregate your cached data into regions. You create a region using the CreateRegion() method of the DataCache object.
Working on a recent project I was asked How do I check if a cache exits ? There is no RegionExits() method on the DataCache object.
To check if a region exists you can make use of the CreateRegion() method.
The CreateRegion returns a bool. As per the documentation a value of true indicates that the region created successfully. A value of false indicates that the region already exists.