コード例 #1
0
 public StaticPageParamInfo(string paramName, GetResultEventHandler getResult, object state)
     : this(paramName, getResult)
 {
     this.state = state;
 }
コード例 #2
0
 public StaticPageParamInfo(string paramName, GetResultEventHandler getResult)
 {
     this.paramName = paramName;
     this.getResult = getResult;
 }
コード例 #3
0
 public StaticPageParamInfo(string paramName, object[] values)
 {
     this.paramName = paramName;
     this.getResult = delegate(object state) { return(values); };
 }
コード例 #4
0
 public StaticPageParamInfo(string paramName, GetResultEventHandler getResult, object state)
     : this(paramName, getResult)
 {
     this.state = state;
 }
コード例 #5
0
 public StaticPageParamInfo(string paramName, GetResultEventHandler getResult)
 {
     this.paramName = paramName;
     this.getResult = getResult;
 }
コード例 #6
0
 public StaticPageParamInfo(string paramName, object[] values)
 {
     this.paramName = paramName;
     this.getResult = delegate(object state) { return values; };
 }