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