Exemplo n.º 1
0
 public StaticPageParamInfo(string paramName, GetResultEventHandler getResult, object state)
     : this(paramName, getResult)
 {
     this.state = state;
 }
Exemplo n.º 2
0
 public StaticPageParamInfo(string paramName, GetResultEventHandler getResult)
 {
     this.paramName = paramName;
     this.getResult = getResult;
 }
Exemplo n.º 3
0
 public StaticPageParamInfo(string paramName, object[] values)
 {
     this.paramName = paramName;
     this.getResult = delegate(object state) { return(values); };
 }
Exemplo n.º 4
0
 public StaticPageParamInfo(string paramName, GetResultEventHandler getResult, object state)
     : this(paramName, getResult)
 {
     this.state = state;
 }
Exemplo n.º 5
0
 public StaticPageParamInfo(string paramName, GetResultEventHandler getResult)
 {
     this.paramName = paramName;
     this.getResult = getResult;
 }
Exemplo n.º 6
0
 public StaticPageParamInfo(string paramName, object[] values)
 {
     this.paramName = paramName;
     this.getResult = delegate(object state) { return values; };
 }