mscorlib(4.0.0.0) API with additions
GeneratorSupport.cs
2 {
5  [Flags]
6  public enum GeneratorSupport
7  {
9  ArraysOfArrays = 0x1,
11  EntryPointMethod = 0x2,
13  GotoStatements = 0x4,
17  StaticConstructors = 0x10,
19  TryCatchStatements = 0x20,
21  ReturnTypeAttributes = 0x40,
23  DeclareValueTypes = 0x80,
25  DeclareEnums = 0x100,
27  DeclareDelegates = 0x200,
29  DeclareInterfaces = 0x400,
31  DeclareEvents = 0x800,
33  AssemblyAttributes = 0x1000,
35  ParameterAttributes = 0x2000,
37  ReferenceParameters = 0x4000,
41  NestedTypes = 0x10000,
43  MultipleInterfaceMembers = 0x20000,
45  PublicStaticMembers = 0x40000,
47  ComplexExpressions = 0x80000,
49  Win32Resources = 0x100000,
51  Resources = 0x200000,
53  PartialTypes = 0x400000,
55  GenericTypeReference = 0x800000,
57  GenericTypeDeclaration = 0x1000000,
59  DeclareIndexerProperties = 0x2000000
60  }
61 }
Indicates the generator supports delegate declarations.
Indicates the generator supports the declaration of indexer properties.
Indicates the generator supports public static members.
Indicates the generator supports static constructors.
Indicates the generator supports generic type references.
Indicates the generator supports try...catch statements.
Indicates the generator supports goto statements.
Indicates the generator supports a program entry point method designation. This is used when building...
Indicates the generator supports event declarations.
Indicates the generator supports arrays of arrays.
Indicates the generator supports the declaration of members that implement multiple interfaces.
Indicates the generator supports value type declarations.
Indicates the generator supports return type attribute declarations.
Indicates the generator supports chained constructor arguments.
Indicates the generator supports enumeration declarations.
Indicates the generator supports reference and out parameters.
Indicates the generator supports partial type declarations.
GeneratorSupport
Defines identifiers used to determine whether a code generator supports certain types of code element...
Indicates the generator supports the declaration of nested types.
Indicates the generator supports interface declarations.
Indicates the generator supports complex expressions.
Specifies that the class can be serialized.
Indicates the generator supports referencing multidimensional arrays. Currently, the CodeDom cannot b...
Indicates the generator supports generic type declarations.
Indicates the generator supports compilation with .NET Framework resources. These can be default reso...
Indicates the generator supports compilation with Win32 resources.
Indicates the generator supports assembly attributes.