AppActs.Client.WebSite.WebService.Tile.getsServiceLocator C# (CSharp) Method

getsServiceLocator() private static method

private static getsServiceLocator ( ) : IServiceLocator
return IServiceLocator
        private static IServiceLocator getsServiceLocator()
        {
            if (serviceLocator == null)
            {
                lock (handle)
                {
                    serviceLocator = (IServiceLocator)HttpContext.Current.Application[ContainerKeys.APPLICATION];
                }
            }

            return serviceLocator;
        }