/// <summary>
 /// 从<see cref ="ConfigurationElementCollection"/>中删除指定的<see cref ="InterceptMethodElement"/>.
 /// </summary>
 /// <param name="method"><see cref ="InterceptMethodElement"/>删除.</param>
 public void Remove(InterceptMethodElement method)
 {
     base.BaseRemove(this.GetElementKey(method));
 }
 /// <summary>
 /// 将指定的<see cref ="InterceptMethodElement"/>添加到<see cref ="ConfigurationElementCollection"/>.
 /// </summary>
 /// <param name="method"><see cref ="InterceptMethodElement"/>添加.</param>
 public void Add(InterceptMethodElement method)
 {
     base.BaseAdd(method);
 }