Exemplo n.º 1
0
 /// <summary>sets the context for the next query on this thread.</summary>
 /// <remarks>
 /// sets the context for the next query on this thread.
 /// This method should never have to be called manually.
 /// The framework should set the context up.
 /// </remarks>
 public static void Context(Type clazz)
 {
     _context.Value = ReflectorUtils.ReflectClassFor(_prototypes.Reflector(), clazz);
 }
Exemplo n.º 2
0
 internal IReflectClass ReflectorFor(object clazz)
 {
     return(ReflectorUtils.ReflectClassFor(Reflector(), clazz));
 }
Exemplo n.º 3
0
 private IReflectClass ReflectClass()
 {
     return(ReflectorUtils.ReflectClassFor(objectContainer.Reflector(), this._enclosing
                                           ._clazz));
 }