日期:2014-05-17 浏览次数:21154 次
internal sealed class RewriteModuleProxy : ModuleServiceProxy
{
public PropertyBag AddAllowedServerVariable(string name)
{
return (PropertyBag) base.Invoke("AddAllowedServerVariable", new object[] { name });
}
public void AddCondition(string ruleName, int ruleKind, PropertyBag conditionBag)
{
base.Invoke("AddCondition", new object[] { ruleName, ruleKind, conditionBag });
}
public void AddCustomTag(string groupName, string tagName, string matchingAttribute)
{
base.Invoke("AddCustomTag", new object[] { groupName, tagName, matchingAttribute });
}
public void AddCustomTagGroup(PropertyBag bag)
{
base.Invoke("AddCustomTagGroup", new object[] { bag });
}
//............................
public abstract class ModuleServiceProxy
{
protected ModuleServiceProxy();
public static string GetErrorInformation(Exception ex, ResourceManager resourceManager, out string errorText, out string errorMessage);
protected object Invoke(string methodName, params object[] parameters);
}