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