VCMidlTool.ErrorCheckAllocations, propriété
Obtient ou définit une valeur indiquant s'il faut rechercher les erreurs de mémoire insuffisante.
Espace de noms : Microsoft.VisualStudio.VCProjectEngine
Assembly : Microsoft.VisualStudio.VCProjectEngine (dans Microsoft.VisualStudio.VCProjectEngine.dll)
Syntaxe
'Déclaration
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)
Valeur de propriété
Type : Boolean
true en cas de recherche d'erreurs de mémoire insuffisante ; sinon, false.
Notes
ErrorCheckAllocations expose les fonctionnalités de l'option /error MIDL.
Consultez Comment : compiler l'exemple de code pour l'extensibilité du modèle de projet pour savoir comment compiler et exécuter cet exemple.
Exemples
L'exemple suivant modifie la propriété d'ErrorCheckAllocations dans l'environnement de développement intégré (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
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, voir Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.