12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Configuration;
- using System.Collections.Specialized;
- namespace SuperSocket.SocketBase.Config
- {
-
-
-
- public partial interface IRootConfig
- {
-
-
-
- int MaxWorkingThreads { get; }
-
-
-
- int MinWorkingThreads { get; }
-
-
-
- int MaxCompletionPortThreads { get; }
-
-
-
- int MinCompletionPortThreads { get; }
-
-
-
-
-
-
- bool DisablePerformanceDataCollector { get; }
-
-
-
- int PerformanceDataCollectInterval { get; }
-
-
-
-
-
-
- string LogFactory { get; }
-
-
-
- IsolationMode Isolation { get; }
-
-
-
- NameValueCollection OptionElements { get; }
-
-
-
-
-
-
- TConfig GetChildConfig<TConfig>(string childConfigName)
- where TConfig : ConfigurationElement, new();
- }
- }
|