Пример #1
0
 static PBKDF2Section()
 {
     _properties = new ConfigurationPropertyCollection();
     _properties.Add(_hashName);
     _properties.Add(_iterationCount);
     _properties.Add(_saltSize);
 }
		static ProtectedProviderSettings ()
		{
			providersProp = new ConfigurationProperty ("", typeof (ProviderSettingsCollection), null,
								   null, null, ConfigurationPropertyOptions.IsDefaultCollection);

			properties = new ConfigurationPropertyCollection ();
			properties.Add (providersProp);
		}
Пример #3
0
 static StandardBindingElementCollection()
 {
     properties = new ConfigurationPropertyCollection();
 }
Пример #4
0
 /// <summary>
 /// Static constructor. Prepares the property collection.
 /// </summary>
 static AvistaESBCommonSection()
 {
     properties = new ConfigurationPropertyCollection();
     properties.Add(propContext);
     properties.Add(propEmailNotificationSettings);
 }
Пример #5
0
 static LoggerProfileSettingsCollection()
 {
     _properties = new ConfigurationPropertyCollection();
 }
Пример #6
0
 static DebugLevel()
 {
     strDebugLevel = new ConfigurationProperty("level", typeof(String), "DEBUG", ConfigurationPropertyOptions.IsRequired);
     s_properties  = new ConfigurationPropertyCollection();
     s_properties.Add(strDebugLevel);
 }
Пример #7
0
 static MemoryCacheSettingsCollection()
 {
     properties = new ConfigurationPropertyCollection();
 }
Пример #8
0
 static RuntimeCollection()
 {
     properties = new ConfigurationPropertyCollection();
 }
Пример #9
0
 static AssemblyCollection()
 {
     properties = new ConfigurationPropertyCollection();
 }
 /// <summary>
 /// 静态构造
 /// </summary>
 static DatabaseElementCollection()
 {
     s_Properties = new ConfigurationPropertyCollection();
 }
Пример #11
0
 public AccountsElementCollection()
 {
     properties = new ConfigurationPropertyCollection();
 }
 static BuildProviderCollection()
 {
     //FIXME: add properties
     props = new ConfigurationPropertyCollection();
 }
Пример #13
0
 public ResourcesElementCollection()
 {
     properties = new ConfigurationPropertyCollection();
 }
 static NameValueConfigurationElement()
 {
     // Property initialization
     s_properties = new ConfigurationPropertyCollection { s_propName, s_propValue };
 }
Пример #15
0
 static TagPrefixCollection()
 {
     properties = new ConfigurationPropertyCollection();
 }
Пример #16
0
 static ProviderSettingsCollection()
 {
     // Property initialization
     s_properties = new ConfigurationPropertyCollection();
 }
Пример #17
0
 static TestConfigurationSection()
 {
     properties = new ConfigurationPropertyCollection();
     properties.Add(DataSourcesValue);
 }
Пример #18
0
Файл: test.cs Проект: mono/gert
	static CustomConfigSection ()
	{
		modeProp = new ConfigurationProperty ("mode", typeof (string), "RemoteOnly");
		properties = new ConfigurationPropertyCollection ();
		properties.Add (modeProp);
	}
Пример #19
0
 static AuthorizationRuleCollection()
 {
     properties = new ConfigurationPropertyCollection();
 }
Пример #20
0
 public ConfigurationCollection()
 {
     _properties = new ConfigurationPropertyCollection();
 }
 static ClientTargetCollection()
 {
     properties = new ConfigurationPropertyCollection();
 }
 static DynamicEndpointElement()
 {
     discovery_client_settings = new ConfigurationProperty("discoveryClientSettings", typeof(DiscoveryClientSettingsElement), null, null, null, ConfigurationPropertyOptions.None);
     properties = new ConfigurationPropertyCollection();
     properties.Add(discovery_client_settings);
 }
Пример #23
0
 static ProfilePropertySettingsCollection()
 {
     properties = new ConfigurationPropertyCollection();
 }
Пример #24
0
 static MyConfigurationElement()
 {
     _propName   = new ConfigurationProperty("name", typeof(string), string.Empty, ConfigurationPropertyOptions.IsKey);
     _properties = new ConfigurationPropertyCollection();
     _properties.Add(_propName);
 }
Пример #25
0
 static XhtmlConformanceSection()
 {
     // Property initialization
     _properties = new ConfigurationPropertyCollection();
     _properties.Add(_propMode);
 }
Пример #26
0
 static TrustLevelCollection()
 {
     properties = new ConfigurationPropertyCollection();
 }
Пример #27
0
 public WuServiceConfigSection()
 {
     _createFWRule = new ConfigurationProperty(CreateFirewallRule, typeof(bool), true, ConfigurationPropertyOptions.None);
     _properties   = new ConfigurationPropertyCollection();
     _properties.Add(_createFWRule);
 }
 static MexHttpBindingCollectionElement()
 {
     properties = new ConfigurationPropertyCollection();
 }
 static PerfCounterSection()
 {
     _properties = new ConfigurationPropertyCollection();
     _properties.Add(_propFileMappingSize);
 }
Пример #30
0
 static FullTrustAssembliesSection()
 {
     // Property initialization
     _properties = new ConfigurationPropertyCollection();
     _properties.Add(_propFullTrustAssemblies);
 }
Пример #31
0
 static CodeSubDirectory()
 {
     _properties = new ConfigurationPropertyCollection();
     _properties.Add(_propDirectoryName);
 }
Пример #32
0
 static ConnectionStringSettings()
 {
     // Property initialization
     s_properties = new ConfigurationPropertyCollection { s_propName, s_propConnectionString, s_propProviderName };
 }
 static DateTimeConfigurationCollection()
 {
     // Property initialization
     s_properties = new ConfigurationPropertyCollection();
 }
Пример #34
0
 static KeyValueConfigurationElement()
 {
     s_properties = new ConfigurationPropertyCollection { s_propKey, s_propValue };
 }
Пример #35
0
 static DateTimeConfigurationElement()
 {
     // Property initialization
     s_properties = new ConfigurationPropertyCollection { s_propValue };
 }
Пример #36
0
 static ScopeElement()
 {
     scope      = new ConfigurationProperty("scopes", typeof(Uri), null, null, new CallbackValidator(typeof(ScopeElement), null /*FIXME: fill it*/), ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey);
     properties = new ConfigurationPropertyCollection();
     properties.Add(scope);
 }
Пример #37
0
 /// <summary>
 /// Static constructor prepares the property collection.
 /// </summary>
 static EmailNotificationSettingElement()
 {
     properties = new ConfigurationPropertyCollection();
     properties.Add(propGroupName);
     properties.Add(propEmailId);
 }
 public ProtectedProviderSettings()
 {
     // Property initialization
     _properties = new ConfigurationPropertyCollection();
     _properties.Add(_propProviders);
 }
 static ExchangeServicesSection()
 {
     s_Properties = new ConfigurationPropertyCollection {
         s_Services
     };
 }
Пример #40
0
 static ConnectionStringsSection()
 {
     // Property initialization
     s_properties = new ConfigurationPropertyCollection { s_propConnectionStrings };
 }
Пример #41
0
 static ExpressionBuilderCollection()
 {
     // Property initialization
     _properties = new ConfigurationPropertyCollection();
 }