[Http]: Clear the 'SendChunked' flag when redirecting.
[mono.git] / mcs / class / System / System.CodeDom.Compiler / GeneratorSupport.cs
1 //
2 // System.CodeDom.Compiler GeneratorSupport Class implementation
3 //
4 // Author:
5 //   Daniel Stodden (stodden@in.tum.de)
6 //   Marek Safar (marek.safar@seznam.cz)
7 //
8 // (C) 2002 Ximian, Inc.
9 //
10
11 //
12 // Permission is hereby granted, free of charge, to any person obtaining
13 // a copy of this software and associated documentation files (the
14 // "Software"), to deal in the Software without restriction, including
15 // without limitation the rights to use, copy, modify, merge, publish,
16 // distribute, sublicense, and/or sell copies of the Software, and to
17 // permit persons to whom the Software is furnished to do so, subject to
18 // the following conditions:
19 // 
20 // The above copyright notice and this permission notice shall be
21 // included in all copies or substantial portions of the Software.
22 // 
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 //
31
32 namespace System.CodeDom.Compiler
33 {
34         [Flags]
35         [Serializable]
36         public enum GeneratorSupport {
37                 ArraysOfArrays = 1,
38                 EntryPointMethod = 1 << 1,
39                 GotoStatements = 1 << 2,
40                 MultidimensionalArrays = 1 << 3,
41                 StaticConstructors = 1 << 4,
42                 TryCatchStatements = 1 << 5,
43                 ReturnTypeAttributes = 1 << 6,
44                 DeclareValueTypes = 1 << 7,
45                 DeclareEnums = 1 << 8,
46                 DeclareDelegates = 1 << 9,
47                 DeclareInterfaces = 1 << 10,
48                 DeclareEvents = 1 << 11,
49                 AssemblyAttributes = 1 << 12,
50                 ParameterAttributes = 1 << 13,
51                 ReferenceParameters = 1 << 14,
52                 ChainedConstructorArguments = 1 << 15,
53                 NestedTypes = 1 << 16,
54                 MultipleInterfaceMembers = 1 << 17,
55                 PublicStaticMembers = 1 << 18,
56                 ComplexExpressions = 1 << 19,
57                 Win32Resources = 1 << 20,
58                 Resources = 1 << 21,
59                 PartialTypes = 1 << 22,
60                 GenericTypeReference = 1 << 23,
61                 GenericTypeDeclaration = 1 << 24,
62                 DeclareIndexerProperties = 1 << 25,
63         }
64 }
65