private xrc.IContext GetOriginalContext(xrc.IContext context) { if (context.CallerContext == null) return context; else return GetOriginalContext(context.CallerContext); }
public void Execute(xrc.IContext context) { context.Response.Write("<h3>TestView View</h3>"); context.Response.Write(string.Format("<p>Hello from TestView view! {0}</p>", Param1)); }
public SourceCodeModule(xrc.IContext context) { _context = context; }
public ContactController(IContactModule contactModule, xrc.IXrcService xrc) { _contactModule = contactModule; _xrc = xrc; }