API_6.Controllers.DemoController.CheckConfiguration C# (CSharp) Method

CheckConfiguration() public method

public CheckConfiguration ( ) : IEnumerable
return IEnumerable
        public IEnumerable<string> CheckConfiguration()
        {
            //HttpRoutingDispatcher s = new HttpRoutingDispatcher();
            List<string> result = new List<string>();
            result.Add(GlobalConfiguration.Configuration.GetHashCode().ToString());
            result.Add(this.Configuration.GetHashCode().ToString());
            return result;
        }