コード例 #1
0
 public virtual View.ViewContext Context()
 {
     if (vc == null)
     {
         if (injector == null)
         {
             // One downside of making the injection in subclasses optional
             throw new WebAppException(StringHelper.Join("Error accessing ViewContext from a\n"
                                                         , "child constructor, either move the usage of the View methods\n", "out of the constructor or inject the ViewContext into the\n"
                                                         , "constructor"));
         }
         vc = injector.GetInstance <View.ViewContext>();
     }
     return(vc);
 }
コード例 #2
0
 public View(View.ViewContext ctx)
 {
     // Makes injection in subclasses optional.
     // Time will tell if this buy us more than the NPEs :)
     vc = ctx;
 }