| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- //
- // System.Web.Configuration.CompilationSection
- //
- // Authors:
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (c) Copyright 2005 Novell, Inc (http://www.novell.com)
- //
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- #if NET_2_0
- using System;
- using System.Configuration;
- using System.ComponentModel;
- namespace System.Web.Configuration
- {
- public sealed class CompilationSection : ConfigurationSection
- {
- static ConfigurationPropertyCollection properties;
- static ConfigurationProperty compilersProp;
- static ConfigurationProperty tempDirectoryProp;
- static ConfigurationProperty debugProp;
- static ConfigurationProperty strictProp;
- static ConfigurationProperty explicitProp;
- static ConfigurationProperty batchProp;
- static ConfigurationProperty batchTimeoutProp;
- static ConfigurationProperty maxBatchSizeProp;
- static ConfigurationProperty maxBatchGeneratedFileSizeProp;
- static ConfigurationProperty numRecompilesBeforeAppRestartProp;
- static ConfigurationProperty defaultLanguageProp;
- static ConfigurationProperty assembliesProp;
- static ConfigurationProperty assemblyPostProcessorTypeProp;
- static ConfigurationProperty buildProvidersProp;
- static ConfigurationProperty expressionBuildersProp;
- static ConfigurationProperty urlLinePragmasProp;
- static ConfigurationProperty codeSubDirectoriesProp;
- static CompilationSection ()
- {
- assembliesProp = new ConfigurationProperty ("assemblies", typeof (AssemblyCollection), null,
- null, PropertyHelper.DefaultValidator,
- ConfigurationPropertyOptions.None);
- assemblyPostProcessorTypeProp = new ConfigurationProperty ("assemblyPostProcessorType", typeof (string), "");
- batchProp = new ConfigurationProperty ("batch", typeof (bool), true);
- buildProvidersProp = new ConfigurationProperty ("buildProviders", typeof (BuildProviderCollection), null,
- null, PropertyHelper.DefaultValidator,
- ConfigurationPropertyOptions.None);
- batchTimeoutProp = new ConfigurationProperty ("batchTimeout", typeof (TimeSpan), new TimeSpan (0, 15, 0),
- PropertyHelper.TimeSpanSecondsOrInfiniteConverter,
- PropertyHelper.PositiveTimeSpanValidator,
- ConfigurationPropertyOptions.None);
- codeSubDirectoriesProp = new ConfigurationProperty ("codeSubDirectories", typeof (CodeSubDirectoriesCollection), null,
- null, PropertyHelper.DefaultValidator,
- ConfigurationPropertyOptions.None);
- compilersProp = new ConfigurationProperty ("compilers", typeof (CompilerCollection), null,
- null, PropertyHelper.DefaultValidator,
- ConfigurationPropertyOptions.None);
- debugProp = new ConfigurationProperty ("debug", typeof (bool), false);
- defaultLanguageProp = new ConfigurationProperty ("defaultLanguage", typeof (string), "vb");
- expressionBuildersProp = new ConfigurationProperty ("expressionBuilders", typeof (ExpressionBuilderCollection), null,
- null, PropertyHelper.DefaultValidator,
- ConfigurationPropertyOptions.None);
- explicitProp = new ConfigurationProperty ("explicit", typeof (bool), true);
- maxBatchSizeProp = new ConfigurationProperty ("maxBatchSize", typeof (int), 1000);
- maxBatchGeneratedFileSizeProp = new ConfigurationProperty ("maxBatchGeneratedFileSize", typeof (int), 3000);
- numRecompilesBeforeAppRestartProp = new ConfigurationProperty ("numRecompilesBeforeAppRestart", typeof (int), 15);
- strictProp = new ConfigurationProperty ("strict", typeof (bool), false);
- tempDirectoryProp = new ConfigurationProperty ("tempDirectory", typeof (string), "");
- urlLinePragmasProp = new ConfigurationProperty ("urlLinePragmas", typeof (bool), false);
- properties = new ConfigurationPropertyCollection ();
- properties.Add (assembliesProp);
- properties.Add (assemblyPostProcessorTypeProp);
- properties.Add (batchProp);
- properties.Add (buildProvidersProp);
- properties.Add (batchTimeoutProp);
- properties.Add (codeSubDirectoriesProp);
- properties.Add (compilersProp);
- properties.Add (debugProp);
- properties.Add (defaultLanguageProp);
- properties.Add (expressionBuildersProp);
- properties.Add (explicitProp);
- properties.Add (maxBatchSizeProp);
- properties.Add (maxBatchGeneratedFileSizeProp);
- properties.Add (numRecompilesBeforeAppRestartProp);
- properties.Add (strictProp);
- properties.Add (tempDirectoryProp);
- properties.Add (urlLinePragmasProp);
- }
- public CompilationSection ()
- {
- }
- [MonoTODO]
- protected override void PostDeserialize ()
- {
- base.PostDeserialize ();
- }
- [MonoTODO ("why override this?")]
- protected override object GetRuntimeObject ()
- {
- return this;
- }
- [ConfigurationProperty ("assemblies")]
- public AssemblyCollection Assemblies {
- get { return (AssemblyCollection) base [assembliesProp]; }
- }
- [ConfigurationProperty ("assemblyPostProcessorType", DefaultValue = "")]
- public string AssemblyPostProcessorType {
- get { return (string) base[assemblyPostProcessorTypeProp]; }
- set { base[assemblyPostProcessorTypeProp] = value; }
- }
- [ConfigurationProperty ("batch", DefaultValue = "True")]
- public bool Batch {
- get { return (bool) base [batchProp]; }
- set { base [batchProp] = value; }
- }
- [TypeConverter (typeof (TimeSpanSecondsOrInfiniteConverter))]
- [TimeSpanValidator (MinValueString = "00:00:00")]
- [ConfigurationProperty ("batchTimeout", DefaultValue = "00:15:00")]
- public TimeSpan BatchTimeout {
- get { return (TimeSpan) base [batchTimeoutProp]; }
- set { base [batchTimeoutProp] = value; }
- }
- [ConfigurationProperty ("buildProviders")]
- public BuildProviderCollection BuildProviders {
- get { return (BuildProviderCollection) base [buildProvidersProp]; }
- }
- [ConfigurationProperty ("codeSubDirectories")]
- public CodeSubDirectoriesCollection CodeSubDirectories {
- get { return (CodeSubDirectoriesCollection) base [codeSubDirectoriesProp]; }
- }
- [ConfigurationProperty ("compilers")]
- public CompilerCollection Compilers {
- get { return (CompilerCollection) base [compilersProp]; }
- }
- [ConfigurationProperty ("debug", DefaultValue = "False")]
- public bool Debug {
- get { return (bool) base [debugProp]; }
- set { base [debugProp] = value; }
- }
- [ConfigurationProperty ("defaultLanguage", DefaultValue = "vb")]
- public string DefaultLanguage {
- get { return (string) base [defaultLanguageProp]; }
- set { base [defaultLanguageProp] = value; }
- }
- [ConfigurationProperty ("explicit", DefaultValue = "True")]
- public bool Explicit {
- get { return (bool) base [explicitProp]; }
- set { base [explicitProp] = value; }
- }
- [ConfigurationProperty ("expressionBuilders")]
- public ExpressionBuilderCollection ExpressionBuilders {
- get { return (ExpressionBuilderCollection) base [expressionBuildersProp]; }
- }
- [ConfigurationProperty ("maxBatchGeneratedFileSize", DefaultValue = "1000")]
- public int MaxBatchGeneratedFileSize {
- get { return (int) base [maxBatchGeneratedFileSizeProp]; }
- set { base [maxBatchGeneratedFileSizeProp] = value; }
- }
- [ConfigurationProperty ("maxBatchSize", DefaultValue = "1000")]
- public int MaxBatchSize {
- get { return (int) base [maxBatchSizeProp]; }
- set { base [maxBatchSizeProp] = value; }
- }
- [ConfigurationProperty ("numRecompilesBeforeAppRestart", DefaultValue = "15")]
- public int NumRecompilesBeforeAppRestart {
- get { return (int) base [numRecompilesBeforeAppRestartProp]; }
- set { base [numRecompilesBeforeAppRestartProp] = value; }
- }
- [ConfigurationProperty ("strict", DefaultValue = "False")]
- public bool Strict {
- get { return (bool) base [strictProp]; }
- set { base [strictProp] = value; }
- }
- [ConfigurationProperty ("tempDirectory", DefaultValue = "")]
- public string TempDirectory {
- get { return (string) base [tempDirectoryProp]; }
- set { base [tempDirectoryProp] = value; }
- }
- [ConfigurationProperty ("urlLinePragmas", DefaultValue = "False")]
- public bool UrlLinePragmas {
- get { return (bool) base [urlLinePragmasProp]; }
- set { base [urlLinePragmasProp] = value; }
- }
- protected override ConfigurationPropertyCollection Properties {
- get { return properties; }
- }
- }
- }
- #endif // NET_2_0
|