public void Process(XmlWriter output, NameValueCollection requestParams) { FormHandlerInput ctx = new FormHandlerInput(); ctx.Params = requestParams; Process(output, ctx); }
public void Process(XmlWriter output, FormHandlerInput inputData) { InternalFormContext fc = new InternalFormContext(inputData, output, this); fc.FirstElementHandled = false; Process(fc); }
public InternalFormContext(FormHandlerInput input, XmlWriter output, XmlFormHandler handler) { _output = output; Input = input; _handler = handler; }