/// <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); }
internal IReflectClass ReflectorFor(object clazz) { return(ReflectorUtils.ReflectClassFor(Reflector(), clazz)); }
private IReflectClass ReflectClass() { return(ReflectorUtils.ReflectClassFor(objectContainer.Reflector(), this._enclosing ._clazz)); }