Gets the valid line variance for binding a breakpoint for a given source ___location.
命名空间: Microsoft.VisualStudio.TextManager.Interop
程序集: Microsoft.VisualStudio.TextManager.Interop.11.0(在 Microsoft.VisualStudio.TextManager.Interop.11.0.dll 中)
语法
声明
Sub GetValidBreakpointLineVariance ( _
pBuffer As IVsTextBuffer, _
iLine As Integer, _
iCol As Integer, _
<OutAttribute> ByRef piVariance As Integer _
)
void GetValidBreakpointLineVariance(
IVsTextBuffer pBuffer,
int iLine,
int iCol,
out int piVariance
)
void GetValidBreakpointLineVariance(
[InAttribute] IVsTextBuffer^ pBuffer,
[InAttribute] int iLine,
[InAttribute] int iCol,
[OutAttribute] int% piVariance
)
abstract GetValidBreakpointLineVariance :
pBuffer:IVsTextBuffer *
iLine:int *
iCol:int *
piVariance:int byref -> unit
function GetValidBreakpointLineVariance(
pBuffer : IVsTextBuffer,
iLine : int,
iCol : int,
piVariance : int
)
参数
pBuffer
类型:Microsoft.VisualStudio.TextManager.Interop.IVsTextBuffer[in] Code buffer containing the candidate breakpoint.
iLine
类型:Int32[in] Line for the candidate breakpoint.
iCol
类型:Int32[in] Column for the candidate breakpoint.
piVariance
类型:Int32%[out] Number of lines below iLine within which to bind breakpoint. Value of -1 specifies the debugger default number of lines.
备注
The debugger calls this function if ValidateBreakpointLocation returns E_NOIMPL.
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关详细信息,请参阅通过部分受信任的代码使用库。