Checks for buffer overruns. Exposes the functionality of the compiler's /GS option.
[Visual Basic .NET]
Public Property BufferSecurityCheck() As Boolean
[Visual Basic 6]
Property Get BufferSecurityCheck() As Boolean
Property Let BufferSecurityCheck( _
ByVal NewValue As Boolean _
)
[C++]
HRESULT __stdcall get_BufferSecurityCheck(
/* [out, retval] */ VARIANT_BOOL* retVal
);
HRESULT __stdcall put_BufferSecurityCheck(
/* [in] */ VARIANT_BOOL NewValue
);
[C#]
public bool BufferSecurityCheck {get; set;}
[JScript .NET]
public function get BufferSecurityCheck() : Boolean
public function set BufferSecurityCheck(
NewValue : Boolean
)
Example
The following sample code modifies the BufferSecurityCheck property in the development environment:
' 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.BufferSecurityCheck = True
End Sub
End Module
See Samples for Project Model Extensibility for information on how to compile and run this sample.
See Also
Applies To: VCCLCompilerTool Object