GeoCache.Common.Repository.MongoRepository.RemoveAll C# (CSharp) Method

RemoveAll() public method

Remove all the data from the repository.
public RemoveAll ( string featureClassName ) : void
featureClassName string
return void
        public void RemoveAll(string featureClassName)
        {
            this.GetCollection(featureClassName).RemoveAll();
        }