BuildIt.ServiceLocation.ServiceLocator.SetLocatorProvider C# (CSharp) Method

SetLocatorProvider() public static method

Set the delegate that is used to retrieve the current container.
public static SetLocatorProvider ( ServiceLocatorProvider newProvider ) : void
newProvider ServiceLocatorProvider Delegate that, when called, will return /// the current ambient container.
return void
        public static void SetLocatorProvider(ServiceLocatorProvider newProvider)
        {
            currentProvider = newProvider;
        }
ServiceLocator