BuildIt.Autofac.AutofacServiceLocator.AutofacServiceLocator C# (CSharp) 메소드

AutofacServiceLocator() 공개 메소드

Initializes a new instance of the AutofacServiceLocator class.
/// Thrown if is . ///
public AutofacServiceLocator ( IComponentContext container ) : Autofac
container IComponentContext /// The from which services /// should be located. ///
리턴 Autofac
        public AutofacServiceLocator(IComponentContext container)
        {
            if (container == null)
            {
                throw new ArgumentNullException("container");
            }
            this.container = container;
        }