Compartir a través de


VCCLCompilerTool.ExceptionHandling (Propiedad)

Obtiene o establece un valor usado para las llamadas a destructores para los objetos automáticos durante un desenredo de pila debido a una excepción.ExceptionHandling expone la funcionalidad de la opción /EH (Modelo de control de excepciones) del compilador.

Espacio de nombres:  Microsoft.VisualStudio.VCProjectEngine
Ensamblado:  Microsoft.VisualStudio.VCProjectEngine (en Microsoft.VisualStudio.VCProjectEngine.dll)

Sintaxis

'Declaración
Property ExceptionHandling As cppExceptionHandling
cppExceptionHandling ExceptionHandling { get; set; }
property cppExceptionHandling ExceptionHandling {
    cppExceptionHandling get ();
    void set (cppExceptionHandling value);
}
abstract ExceptionHandling : cppExceptionHandling with get, set
function get ExceptionHandling () : cppExceptionHandling
function set ExceptionHandling (value : cppExceptionHandling)

Valor de propiedad

Tipo: Microsoft.VisualStudio.VCProjectEngine.cppExceptionHandling
Valor cppExceptionHandling.

Ejemplos

Vea Cómo: Compilar el código de ejemplo de extensibilidad del modelo de proyecto para obtener información sobre cómo compilar y ejecutar este ejemplo.

El ejemplo siguiente se modifica la propiedad de ExceptionHandling en el entorno de desarrollo (IDE) integrado:

' add reference to Microsoft.VisualStudio.VCProjectEngine.
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine

Public Module Module1
    Sub Test()
        Dim prj As VCProject
        Dim cfgs, tools As IVCCollection
        Dim cfg As VCConfiguration
        Dim tool As VCCLCompilerTool
        prj = DTE.Solution.Projects.Item(1).Object
        cfgs = prj.Configurations
        cfg = cfgs.Item(1)
        tool = cfg.Tools("VCCLCompilerTool")
        tool.ExceptionHandling = True
    End Sub
End Module

Seguridad de .NET Framework

Vea también

Referencia

VCCLCompilerTool Interfaz

Microsoft.VisualStudio.VCProjectEngine (Espacio de nombres)