Compartilhar via


Propriedade VCMidlTool.ErrorCheckAllocations

Obtém ou define um valor indicando se verificar erros de falta de memória.

Namespace:  Microsoft.VisualStudio.VCProjectEngine
Assembly:  Microsoft.VisualStudio.VCProjectEngine (em Microsoft.VisualStudio.VCProjectEngine.dll)

Sintaxe

'Declaração
Property ErrorCheckAllocations As Boolean
bool ErrorCheckAllocations { get; set; }
property bool ErrorCheckAllocations {
    bool get ();
    void set (bool value);
}
abstract ErrorCheckAllocations : bool with get, set
function get ErrorCheckAllocations () : boolean
function set ErrorCheckAllocations (value : boolean)

Valor de propriedade

Tipo: System.Boolean
true Se ele verifica se há erros de falta de memória. Caso contrário, false.

Comentários

ErrorCheckAllocationsexpõe a funcionalidade da /error opção MIDL.

Consulte Como: compilar o código de exemplo para extensibilidade do modelo de projeto para obter informações sobre como compilar e executar esse exemplo.

Exemplos

O exemplo seguinte modifica a ErrorCheckAllocations propriedade no ambiente de desenvolvimento integrado (IDE):

[Visual Basic]

' 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 VCMidlTool
        prj = DTE.Solution.Projects.Item(1).Object
        cfgs = prj.Configurations
        cfg = cfgs.Item(1)
        tool = cfg.Tools("VCMIDLTool")
        tool.ErrorCheckAllocations = True
    End Sub
End Module

Segurança do .NET Framework

Consulte também

Referência

VCMidlTool Interface

Namespace Microsoft.VisualStudio.VCProjectEngine