You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
486 B
20 lines
486 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace FLocal.IISHandler.handlers {
|
|
abstract class AbstractGetHandler : ISpecificHandler {
|
|
|
|
abstract protected string templateName {
|
|
get;
|
|
}
|
|
|
|
abstract protected System.Xml.Linq.XDocument getData(WebContext context);
|
|
|
|
public void Handle(WebContext context) {
|
|
context.httpresponse.Write(context.Transform(this.templateName, this.getData(context)));
|
|
}
|
|
|
|
}
|
|
}
|
|
|