public static string GetLifestyleDescriptionLong(this ComponentModel componentModel)
 {
     if (componentModel.LifestyleType == LifestyleType.Undefined)
     {
         return(string.Format("{0} (default lifestyle {1} will be used)", componentModel.LifestyleType, LifestyleType.Singleton));
     }
     if (componentModel.LifestyleType == LifestyleType.Scoped)
     {
         var accessorType = componentModel.GetScopeAccessorType();
         if (accessorType == null)
         {
             return("Scoped explicitly");
         }
         var description = accessorType.GetAttribute <DescriptionAttribute>();
         if (description != null)
         {
             return("Scoped " + description.Description);
         }
         return("Scoped via " + accessorType.ToCSharpString());
     }
     if (componentModel.LifestyleType != LifestyleType.Custom)
     {
         return(componentModel.LifestyleType.ToString());
     }
     return("Custom: " + componentModel.CustomLifestyle.Name);
 }
Beispiel #2
0
        private static IScopeAccessor CreateScopeAccessor(ComponentModel model)
        {
            var scopeAccessorType = model.GetScopeAccessorType();

            if (scopeAccessorType == null)
            {
                return(new LifetimeScopeAccessor());
            }
            return(scopeAccessorType.CreateInstance <IScopeAccessor>());
        }