This contains the detail connection information for an entry in the EntitySpaces configuration section.
Inheritance: System.Configuration.ConfigurationElement
コード例 #1
0
 public void Remove(tgConnectionElement connection)
 {
     if (BaseIndexOf(connection) >= 0)
     {
         BaseRemove(connection.Provider);
     }
 }
コード例 #2
0
 public void Add(tgConnectionElement connection)
 {
     BaseAdd(connection);
 }
コード例 #3
0
 public int IndexOf(tgConnectionElement connection)
 {
     return(BaseIndexOf(connection));
 }
コード例 #4
0
ファイル: tgConfigSettings.cs プロジェクト: BrewDawg/Tiraggo
 public void Remove(tgConnectionElement connection)
 {
     if (BaseIndexOf(connection) >= 0)
     {
         BaseRemove(connection.Provider);
     }
 }
コード例 #5
0
ファイル: tgConfigSettings.cs プロジェクト: BrewDawg/Tiraggo
 public int IndexOf(tgConnectionElement connection)
 {
     return BaseIndexOf(connection);
 }
コード例 #6
0
ファイル: tgConfigSettings.cs プロジェクト: BrewDawg/Tiraggo
 public void Add(tgConnectionElement connection)
 {
     BaseAdd(connection);
 }