상속: System.Configuration.ConfigurationElement
예제 #1
0
 public void Remove(BrowserConfigElement url)
 {
     if (BaseIndexOf(url) >= 0)
     {
         BaseRemove(url.Name);
     }
 }
예제 #2
0
        public Browser(BrowserConfigElement BrowserConfig, NetworkCredentialsElement CredentialsConfig)
        {
            this._BrowserConfig     = BrowserConfig;
            this._CredentialsConfig = CredentialsConfig;

            HttpRequestResults = new SortedSet <HttpRequestResult>();
        }
예제 #3
0
        public Browser(BrowserConfigElement BrowserConfig, NetworkCredentialsElement CredentialsConfig)
        {
            this._BrowserConfig = BrowserConfig;
            this._CredentialsConfig = CredentialsConfig;

            HttpRequestResults = new SortedSet<HttpRequestResult>();
        }
예제 #4
0
        public BrowserCollection()
        {
            // Add one url to the collection.  This is
            // not necessary; could leave the collection
            // empty until items are added to it outside
            // the constructor.
            BrowserConfigElement url =
                new BrowserConfigElement();

            Add(url);
        }
예제 #5
0
 public void Add(BrowserConfigElement url)
 {
     BaseAdd(url);
     // Add custom code here.
 }
예제 #6
0
 public int IndexOf(BrowserConfigElement url)
 {
     return(BaseIndexOf(url));
 }
 public void Remove(BrowserConfigElement url)
 {
     if (BaseIndexOf(url) >= 0)
         BaseRemove(url.Name);
 }
 public void Add(BrowserConfigElement url)
 {
     BaseAdd(url);
     // Add custom code here.
 }
 public int IndexOf(BrowserConfigElement url)
 {
     return BaseIndexOf(url);
 }
 public BrowserCollection()
 {
     // Add one url to the collection.  This is 
     // not necessary; could leave the collection  
     // empty until items are added to it outside 
     // the constructor.
     BrowserConfigElement url =
         new BrowserConfigElement();
     Add(url);
 }
예제 #11
0
 public Browser(BrowserConfigElement BrowserConfig) : this(BrowserConfig, null)
 {
 }
예제 #12
0
 public Browser(BrowserConfigElement BrowserConfig) : this(BrowserConfig, null)
 {
 }