public StaticPageParamInfo(string paramName, GetResultEventHandler getResult, object state) : this(paramName, getResult) { this.state = state; }
public StaticPageParamInfo(string paramName, GetResultEventHandler getResult) { this.paramName = paramName; this.getResult = getResult; }
public StaticPageParamInfo(string paramName, object[] values) { this.paramName = paramName; this.getResult = delegate(object state) { return(values); }; }
public StaticPageParamInfo(string paramName, object[] values) { this.paramName = paramName; this.getResult = delegate(object state) { return values; }; }