Esempio n. 1
0
 /// <summary>
 /// Removes the specified URL.
 /// </summary>
 /// <param name="url">The URL.</param>
 public void Remove(RouteConfigElement url)
 {
     if (this.BaseIndexOf(url) >= 0)
     {
         this.BaseRemove(url.Name);
     }
 }
Esempio n. 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RouteTableSection"/> class.
 /// </summary>
 public RouteTableSection()
 {
     _url = new RouteConfigElement();
 }
Esempio n. 3
0
 /// <summary>
 /// Indexes the of.
 /// </summary>
 /// <param name="url">The URL.</param>
 /// <returns></returns>
 public int IndexOf(RouteConfigElement url)
 {
     return(this.BaseIndexOf(url));
 }
Esempio n. 4
0
 /// <summary>
 /// Adds the specified URL.
 /// </summary>
 /// <param name="url">The URL.</param>
 public void Add(RouteConfigElement url)
 {
     this.BaseAdd(url);
 }