VCCLCompilerTool.CallingConvention, propriété
Obtient ou définit la convention d'appel par défaut pour votre application.CallingConvention expose la fonctionnalité des options de /Gd, /Gr, /Gz (Convention d'appel) du compilateur.
Espace de noms : Microsoft.VisualStudio.VCProjectEngine
Assembly : Microsoft.VisualStudio.VCProjectEngine (dans Microsoft.VisualStudio.VCProjectEngine.dll)
Syntaxe
'Déclaration
Property CallingConvention As callingConventionOption
callingConventionOption CallingConvention { get; set; }
property callingConventionOption CallingConvention {
callingConventionOption get ();
void set (callingConventionOption value);
}
abstract CallingConvention : callingConventionOption with get, set
function get CallingConvention () : callingConventionOption
function set CallingConvention (value : callingConventionOption)
Valeur de propriété
Type : Microsoft.VisualStudio.VCProjectEngine.callingConventionOption
Énumération callingConventionOption.
Exemples
Consultez l'Comment : compiler l'exemple de code pour l'extensibilité du modèle de projet pour plus d'informations sur comment compiler et exécuter cet exemple.
L'exemple suivant modifie la propriété d'CallingConvention dans (IDE) l'environnement de développement intégré :
' 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.CallingConvention = _
callingConventionOption.callConventionFastCall
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, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.