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

GetFullExtent() public method

Get full extent of featureClass
public GetFullExtent ( string featureClassName ) : IEnvelope
featureClassName string FeatureClass name
return IEnvelope
        public IEnvelope GetFullExtent(string featureClassName)
        {
            return new Envelope(this._indexRange, this._indexRange, this._indexRange, this._indexRange);
        }