Exemple #1
0
 /// <summary>
 /// Removes the specified provider.
 /// </summary>
 /// <param name="provider">The provider.</param>
 public void Remove(ProviderConfigElement provider)
 {
     if (BaseIndexOf(provider) >= 0)
     {
         BaseRemove(provider.Name);
     }
 }
Exemple #2
0
 /// <summary>
 /// Adds the specified provider.
 /// </summary>
 /// <param name="provider">The provider.</param>
 public void Add(ProviderConfigElement provider)
 {
     BaseAdd(provider);
 }
Exemple #3
0
 /// <summary>
 /// Indexes the of.
 /// </summary>
 /// <param name="provider">The provider.</param>
 /// <returns></returns>
 public int IndexOf(ProviderConfigElement provider)
 {
     return(BaseIndexOf(provider));
 }
Exemple #4
0
 /// <summary>
 ///     Initializes a new instance of the <see cref="RouteTableSection" /> class.
 /// </summary>
 public ProviderTableSection()
 {
     _provider = new ProviderConfigElement();
 }