Ejemplo n.º 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);
		}
Ejemplo n.º 3
0
 static StandardBindingElementCollection()
 {
     properties = new ConfigurationPropertyCollection();
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Static constructor. Prepares the property collection.
 /// </summary>
 static AvistaESBCommonSection()
 {
     properties = new ConfigurationPropertyCollection();
     properties.Add(propContext);
     properties.Add(propEmailNotificationSettings);
 }
Ejemplo n.º 5
0
 static LoggerProfileSettingsCollection()
 {
     _properties = new ConfigurationPropertyCollection();
 }
Ejemplo n.º 6
0
 static DebugLevel()
 {
     strDebugLevel = new ConfigurationProperty("level", typeof(String), "DEBUG", ConfigurationPropertyOptions.IsRequired);
     s_properties  = new ConfigurationPropertyCollection();
     s_properties.Add(strDebugLevel);
 }
Ejemplo n.º 7
0
 static MemoryCacheSettingsCollection()
 {
     properties = new ConfigurationPropertyCollection();
 }
Ejemplo n.º 8
0
 static RuntimeCollection()
 {
     properties = new ConfigurationPropertyCollection();
 }
Ejemplo n.º 9
0
 static AssemblyCollection()
 {
     properties = new ConfigurationPropertyCollection();
 }
 /// <summary>
 /// 静态构造
 /// </summary>
 static DatabaseElementCollection()
 {
     s_Properties = new ConfigurationPropertyCollection();
 }
Ejemplo n.º 11
0
 public AccountsElementCollection()
 {
     properties = new ConfigurationPropertyCollection();
 }
 static BuildProviderCollection()
 {
     //FIXME: add properties
     props = new ConfigurationPropertyCollection();
 }
Ejemplo n.º 13
0
 public ResourcesElementCollection()
 {
     properties = new ConfigurationPropertyCollection();
 }
Ejemplo n.º 14
0
 static NameValueConfigurationElement()
 {
     // Property initialization
     s_properties = new ConfigurationPropertyCollection { s_propName, s_propValue };
 }
Ejemplo n.º 15
0
 static TagPrefixCollection()
 {
     properties = new ConfigurationPropertyCollection();
 }
Ejemplo n.º 16
0
 static ProviderSettingsCollection()
 {
     // Property initialization
     s_properties = new ConfigurationPropertyCollection();
 }
Ejemplo n.º 17
0
 static TestConfigurationSection()
 {
     properties = new ConfigurationPropertyCollection();
     properties.Add(DataSourcesValue);
 }
Ejemplo n.º 18
0
Archivo: test.cs Proyecto: mono/gert
	static CustomConfigSection ()
	{
		modeProp = new ConfigurationProperty ("mode", typeof (string), "RemoteOnly");
		properties = new ConfigurationPropertyCollection ();
		properties.Add (modeProp);
	}
Ejemplo n.º 19
0
 static AuthorizationRuleCollection()
 {
     properties = new ConfigurationPropertyCollection();
 }
Ejemplo n.º 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);
 }
Ejemplo n.º 23
0
 static ProfilePropertySettingsCollection()
 {
     properties = new ConfigurationPropertyCollection();
 }
Ejemplo n.º 24
0
 static MyConfigurationElement()
 {
     _propName   = new ConfigurationProperty("name", typeof(string), string.Empty, ConfigurationPropertyOptions.IsKey);
     _properties = new ConfigurationPropertyCollection();
     _properties.Add(_propName);
 }
Ejemplo n.º 25
0
 static XhtmlConformanceSection()
 {
     // Property initialization
     _properties = new ConfigurationPropertyCollection();
     _properties.Add(_propMode);
 }
Ejemplo n.º 26
0
 static TrustLevelCollection()
 {
     properties = new ConfigurationPropertyCollection();
 }
Ejemplo n.º 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);
 }
Ejemplo n.º 30
0
 static FullTrustAssembliesSection()
 {
     // Property initialization
     _properties = new ConfigurationPropertyCollection();
     _properties.Add(_propFullTrustAssemblies);
 }
Ejemplo n.º 31
0
 static CodeSubDirectory()
 {
     _properties = new ConfigurationPropertyCollection();
     _properties.Add(_propDirectoryName);
 }
Ejemplo n.º 32
0
 static ConnectionStringSettings()
 {
     // Property initialization
     s_properties = new ConfigurationPropertyCollection { s_propName, s_propConnectionString, s_propProviderName };
 }
 static DateTimeConfigurationCollection()
 {
     // Property initialization
     s_properties = new ConfigurationPropertyCollection();
 }
Ejemplo n.º 34
0
 static KeyValueConfigurationElement()
 {
     s_properties = new ConfigurationPropertyCollection { s_propKey, s_propValue };
 }
Ejemplo n.º 35
0
 static DateTimeConfigurationElement()
 {
     // Property initialization
     s_properties = new ConfigurationPropertyCollection { s_propValue };
 }
Ejemplo n.º 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);
 }
Ejemplo n.º 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
     };
 }
Ejemplo n.º 40
0
 static ConnectionStringsSection()
 {
     // Property initialization
     s_properties = new ConfigurationPropertyCollection { s_propConnectionStrings };
 }
Ejemplo n.º 41
0
 static ExpressionBuilderCollection()
 {
     // Property initialization
     _properties = new ConfigurationPropertyCollection();
 }