GeneratorSupport Перечисление
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Задает идентификаторы, определяющие наличие поддержки генератором кода определенных типов элементов кода.
Это перечисление поддерживает побитовую комбинацию значений его членов.
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
- Наследование
- Атрибуты
Поля
ArraysOfArrays | 1 | Показывает, поддерживает ли генератор массивы массивов. |
AssemblyAttributes | 4096 | Показывает, поддерживает ли генератор атрибуты сборки. |
ChainedConstructorArguments | 32768 | Показывает, поддерживает ли генератор аргументы цепного конструктора. |
ComplexExpressions | 524288 | Показывает, поддерживает ли генератор составные выражения. |
DeclareDelegates | 512 | Показывает, поддерживает ли генератор объявления делегата. |
DeclareEnums | 256 | Показывает, поддерживает ли генератор объявления перечисления. |
DeclareEvents | 2048 | Показывает, поддерживает ли генератор объявления события. |
DeclareIndexerProperties | 33554432 | Показывает, поддерживает ли генератор объявление свойств индексатора. |
DeclareInterfaces | 1024 | Показывает, поддерживает ли генератор объявления интерфейса. |
DeclareValueTypes | 128 | Показывает, поддерживает ли генератор объявления типа значения. |
EntryPointMethod | 2 | Показывает, поддерживает ли генератор определение метода точки входа программы. Используется при построении исполняемых файлов. |
GenericTypeDeclaration | 16777216 | Показывает, поддерживает ли генератор объявления универсальных типов. |
GenericTypeReference | 8388608 | Показывает, поддерживает ли генератор объявления ссылок универсальных типов. |
GotoStatements | 4 | Показывает, поддерживает ли генератор операторы goto языка. |
MultidimensionalArrays | 8 | Показывает, поддерживает ли генератор ссылки на многомерные массивы. В настоящий момент CodeDom не может использоваться для создания экземпляров многомерных массивов. |
MultipleInterfaceMembers | 131072 | Показывает, поддерживает ли генератор объявление членов, реализующих несколько интерфейсов. |
NestedTypes | 65536 | Показывает, поддерживает ли генератор объявление вложенных типов. |
ParameterAttributes | 8192 | Показывает, поддерживает ли генератор атрибуты параметра. |
PartialTypes | 4194304 | Показывает, поддерживает ли генератор объявления частичных типов. |
PublicStaticMembers | 262144 | Показывает, поддерживает ли генератор открытые статические члены. |
ReferenceParameters | 16384 | Показывает, поддерживает ли генератор параметры, передаваемые по ссылке, и выходные параметры. |
Resources | 2097152 | Показывает, поддерживает ли генератор компиляцию с ресурсами .NET. Это могут быть ресурсы по умолчанию, откомпилированные прямо в сборку, или ресурсы, указанные во вспомогательной сборке. |
ReturnTypeAttributes | 64 | Показывает, поддерживает ли генератор объявления атрибутов возвращаемого типа. |
StaticConstructors | 16 | Показывает, поддерживает ли генератор статические конструкторы. |
TryCatchStatements | 32 | Показывает, поддерживает ли генератор операторы языка |
Win32Resources | 1048576 | Показывает, поддерживает ли генератор компиляцию с ресурсами Win32. |
Примеры
В следующем примере показано использование CompilerParameters для указания различных параметров и параметров компилятора.
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
Комментарии
Эти идентификаторы используются при вызове Supports метода генератора кода, чтобы определить, поддерживает ли генератор кода создание определенных типов кода.