GeneratorSupport Enumeration

Definition

Definiert Bezeichner, mit denen bestimmt wird, ob ein Code-Generator bestimmte Typen von Codeelementen unterstützt.

Diese Enumeration unterstützt eine bitweise Kombination ihrer Memberwerte.

public enum class GeneratorSupport
[System.Flags]
public enum GeneratorSupport
[System.Flags]
[System.Serializable]
public enum GeneratorSupport
[<System.Flags>]
type GeneratorSupport = 
[<System.Flags>]
[<System.Serializable>]
type GeneratorSupport = 
Public Enum GeneratorSupport
Vererbung
GeneratorSupport
Attribute

Felder

ArraysOfArrays 1

Gibt den Generator an, der Arrays von Arrays unterstützt.

AssemblyAttributes 4096

Gibt den Generator an, der Assemblyattribute unterstützt.

ChainedConstructorArguments 32768

Gibt den Generator an, der verkettete Konstruktorargumente unterstützt.

ComplexExpressions 524288

Gibt den Generator an, der komplexe Ausdrücke unterstützt.

DeclareDelegates 512

Gibt den Generator an, der Delegatendeklarationen unterstützt.

DeclareEnums 256

Gibt den Generator an, der Enumerationsdeklarationen unterstützt.

DeclareEvents 2048

Gibt den Generator an, der Ereignisdeklarationen unterstützt.

DeclareIndexerProperties 33554432

Gibt den Generator an, der das Deklarieren von Indexereigenschaften unterstützt.

DeclareInterfaces 1024

Gibt den Generator an, der Schnittstellendeklarationen unterstützt.

DeclareValueTypes 128

Gibt den Generator an, der Werttypdeklarationen unterstützt.

EntryPointMethod 2

Gibt den Generator an, der das Bezeichnen einer Methode für den Programmeinstiegspunkt unterstützt. Dies wird beim Erstellen von ausführbaren Dateien verwendet.

GenericTypeDeclaration 16777216

Gibt den Generator an, der generische Typdeklarationen unterstützt.

GenericTypeReference 8388608

Gibt den Generator an, der generische Typverweise unterstützt.

GotoStatements 4

Gibt den Generator an, der goto-Anweisungen unterstützt.

MultidimensionalArrays 8

Gibt den Generator an, der Verweise auf mehrdimensionale Arrays unterstützt. Derzeit können mit CodeDom keine mehrdimensionalen Arrays instanziiert werden.

MultipleInterfaceMembers 131072

Gibt den Generator an, der das Deklarieren von Membern unterstützt, die mehrere Schnittstellen implementieren.

NestedTypes 65536

Gibt den Generator an, der das Deklarieren von geschachtelten Typen unterstützt.

ParameterAttributes 8192

Gibt den Generator an, der Parameterattribute unterstützt.

PartialTypes 4194304

Gibt den Generator an, der partielle Typdeklarationen unterstützt.

PublicStaticMembers 262144

Gibt den Generator an, der öffentliche statische Member unterstützt.

ReferenceParameters 16384

Gibt den Generator an, der Verweis- und Out-Parameter unterstützt.

Resources 2097152

Gibt den Generator an, der die Kompilierung mit .NET-Ressourcen unterstützt. Dabei kann es sich im Standardressourcen handeln, die direkt in eine Assembly kompiliert werden, oder um Ressourcen, auf die in einer Satellitenassembly verwiesen wird.

ReturnTypeAttributes 64

Gibt den Generator an, der Attributdeklarationen von Rückgabetypen unterstützt.

StaticConstructors 16

Gibt den Generator an, der statische Konstruktoren unterstützt.

TryCatchStatements 32

Gibt den Generator an, der try-catch-Anweisungen unterstützt.

Win32Resources 1048576

Gibt den Generator an, der die Kompilierung mit Win32-Ressourcen unterstützt.

Beispiele

Das folgende Beispiel veranschaulicht die Verwendung, CompilerParameters um verschiedene Compilereinstellungen und -optionen anzugeben.

static bool CompileCode( CodeDomProvider^ provider,
   String^ sourceFile,
   String^ exeFile )
{

   CompilerParameters^ cp = gcnew CompilerParameters;
   if ( !cp)  
   {
      return false;
   }

   // Generate an executable instead of 
   // a class library.
   cp->GenerateExecutable = true;
   
   // Set the assembly file name to generate.
   cp->OutputAssembly = exeFile;
   
   // Generate debug information.
   cp->IncludeDebugInformation = true;
   
   // Add an assembly reference.
   cp->ReferencedAssemblies->Add( "System.dll" );
   
   // Save the assembly as a physical file.
   cp->GenerateInMemory = false;
   
   // Set the level at which the compiler 
   // should start displaying warnings.
   cp->WarningLevel = 3;
   
   // Set whether to treat all warnings as errors.
   cp->TreatWarningsAsErrors = false;
   
   // Set compiler argument to optimize output.
   cp->CompilerOptions = "/optimize";
   
   // Set a temporary files collection.
   // The TempFileCollection stores the temporary files
   // generated during a build in the current directory,
   // and does not delete them after compilation.
   cp->TempFiles = gcnew TempFileCollection( ".",true );

   if ( provider->Supports( GeneratorSupport::EntryPointMethod ) )
   {
      // Specify the class that contains 
      // the main method of the executable.
      cp->MainClass = "Samples.Class1";
   }

   if ( Directory::Exists( "Resources" ) )
   {
      if ( provider->Supports( GeneratorSupport::Resources ) )
      {
         // Set the embedded resource file of the assembly.
         // This is useful for culture-neutral resources,
         // or default (fallback) resources.
         cp->EmbeddedResources->Add( "Resources\\Default.resources" );

         // Set the linked resource reference files of the assembly.
         // These resources are included in separate assembly files,
         // typically localized for a specific language and culture.
         cp->LinkedResources->Add( "Resources\\nb-no.resources" );
      }
   }

   // Invoke compilation.
   CompilerResults^ cr = provider->CompileAssemblyFromFile( cp, sourceFile );

   if ( cr->Errors->Count > 0 )
   {
      // Display compilation errors.
      Console::WriteLine( "Errors building {0} into {1}",
         sourceFile, cr->PathToAssembly );
      for each ( CompilerError^ ce in cr->Errors )
      {
         Console::WriteLine( "  {0}", ce->ToString() );
         Console::WriteLine();
      }
   }
   else
   {
      Console::WriteLine( "Source {0} built into {1} successfully.",
         sourceFile, cr->PathToAssembly );
   }

   // Return the results of compilation.
   if ( cr->Errors->Count > 0 )
   {
      return false;
   }
   else
   {
      return true;
   }
}
public static bool CompileCode(CodeDomProvider provider,
    String sourceFile,
    String exeFile)
{

    CompilerParameters cp = new CompilerParameters();

    // Generate an executable instead of
    // a class library.
    cp.GenerateExecutable = true;

    // Set the assembly file name to generate.
    cp.OutputAssembly = exeFile;

    // Generate debug information.
    cp.IncludeDebugInformation = true;

    // Add an assembly reference.
    cp.ReferencedAssemblies.Add( "System.dll" );

    // Save the assembly as a physical file.
    cp.GenerateInMemory = false;

    // Set the level at which the compiler
    // should start displaying warnings.
    cp.WarningLevel = 3;

    // Set whether to treat all warnings as errors.
    cp.TreatWarningsAsErrors = false;

    // Set compiler argument to optimize output.
    cp.CompilerOptions = "/optimize";

    // Set a temporary files collection.
    // The TempFileCollection stores the temporary files
    // generated during a build in the current directory,
    // and does not delete them after compilation.
    cp.TempFiles = new TempFileCollection(".", true);

    if (provider.Supports(GeneratorSupport.EntryPointMethod))
    {
        // Specify the class that contains
        // the main method of the executable.
        cp.MainClass = "Samples.Class1";
    }

    if (Directory.Exists("Resources"))
    {
        if (provider.Supports(GeneratorSupport.Resources))
        {
            // Set the embedded resource file of the assembly.
            // This is useful for culture-neutral resources,
            // or default (fallback) resources.
            cp.EmbeddedResources.Add("Resources\\Default.resources");

            // Set the linked resource reference files of the assembly.
            // These resources are included in separate assembly files,
            // typically localized for a specific language and culture.
            cp.LinkedResources.Add("Resources\\nb-no.resources");
        }
    }

    // Invoke compilation.
    CompilerResults cr = provider.CompileAssemblyFromFile(cp, sourceFile);

    if(cr.Errors.Count > 0)
    {
        // Display compilation errors.
        Console.WriteLine("Errors building {0} into {1}",
            sourceFile, cr.PathToAssembly);
        foreach(CompilerError ce in cr.Errors)
        {
            Console.WriteLine("  {0}", ce.ToString());
            Console.WriteLine();
        }
    }
    else
    {
        Console.WriteLine("Source {0} built into {1} successfully.",
            sourceFile, cr.PathToAssembly);
        Console.WriteLine("{0} temporary files created during the compilation.",
            cp.TempFiles.Count.ToString());
    }

    // Return the results of compilation.
    if (cr.Errors.Count > 0)
    {
        return false;
    }
    else
    {
        return true;
    }
}
Public Shared Function CompileCode(ByVal provider As CodeDomProvider, _
ByVal sourceFile As String, ByVal exeFile As String) As Boolean

    Dim cp As New CompilerParameters()

    ' Generate an executable instead of 
    ' a class library.
    cp.GenerateExecutable = True

    ' Set the assembly file name to generate.
    cp.OutputAssembly = exeFile

    ' Generate debug information.
    cp.IncludeDebugInformation = True

    ' Add an assembly reference.
    cp.ReferencedAssemblies.Add("System.dll")

    ' Save the assembly as a physical file.
    cp.GenerateInMemory = False

    ' Set the level at which the compiler 
    ' should start displaying warnings.
    cp.WarningLevel = 3

    ' Set whether to treat all warnings as errors.
    cp.TreatWarningsAsErrors = False

    ' Set compiler argument to optimize output.
    cp.CompilerOptions = "/optimize"

    ' Set a temporary files collection.
    ' The TempFileCollection stores the temporary files
    ' generated during a build in the current directory,
    ' and does not delete them after compilation.
    cp.TempFiles = New TempFileCollection(".", True)

    If provider.Supports(GeneratorSupport.EntryPointMethod) Then
        ' Specify the class that contains
        ' the main method of the executable.
        cp.MainClass = "Samples.Class1"
    End If


    If Directory.Exists("Resources") Then
        If provider.Supports(GeneratorSupport.Resources) Then
            ' Set the embedded resource file of the assembly.
            ' This is useful for culture-neutral resources,
            ' or default (fallback) resources.
            cp.EmbeddedResources.Add("Resources\Default.resources")

            ' Set the linked resource reference files of the assembly.
            ' These resources are included in separate assembly files,
            ' typically localized for a specific language and culture.
            cp.LinkedResources.Add("Resources\nb-no.resources")
        End If
    End If

    ' Invoke compilation.
    Dim cr As CompilerResults = _
        provider.CompileAssemblyFromFile(cp, sourceFile)

    If cr.Errors.Count > 0 Then
        ' Display compilation errors.
        Console.WriteLine("Errors building {0} into {1}", _
            sourceFile, cr.PathToAssembly)
        Dim ce As CompilerError
        For Each ce In cr.Errors
            Console.WriteLine("  {0}", ce.ToString())
            Console.WriteLine()
        Next ce
    Else
        Console.WriteLine("Source {0} built into {1} successfully.", _
            sourceFile, cr.PathToAssembly)
        Console.WriteLine("{0} temporary files created during the compilation.", _
                cp.TempFiles.Count.ToString())
    End If

    ' Return the results of compilation.
    If cr.Errors.Count > 0 Then
        Return False
    Else
        Return True
    End If
End Function 'CompileCode

Hinweise

Diese Bezeichner werden beim Aufrufen der Supports Methode eines Codegenerators verwendet, um zu bestimmen, ob der Codegenerator das Generieren bestimmter Codetypen unterstützt.

Gilt für:

Weitere Informationen