コード例 #1
0
 public void Remove(HandlerPathConfigElement handlerPath)
 {
     if (BaseIndexOf(handlerPath) >= 0)
         BaseRemove(handlerPath.Name);
 }
コード例 #2
0
 public void Add(HandlerPathConfigElement handlerPath)
 {
     BaseAdd(handlerPath);
     // Add custom code here.
 }
コード例 #3
0
 public int IndexOf(HandlerPathConfigElement handlerPath)
 {
     return BaseIndexOf(handlerPath);
 }