IVsDebugger.GetDataTipValue 方法
检索调试器数据文本中的选定部分的提示文本。
命名空间: Microsoft.VisualStudio.Shell.Interop
程序集: Microsoft.VisualStudio.Shell.Interop(在 Microsoft.VisualStudio.Shell.Interop.dll 中)
语法
声明
Function GetDataTipValue ( _
pTextBuf As IVsTextLines, _
pTS As TextSpan(), _
pszExpression As String, _
<OutAttribute> ByRef pbstrValue As String _
) As Integer
int GetDataTipValue(
IVsTextLines pTextBuf,
TextSpan[] pTS,
string pszExpression,
out string pbstrValue
)
参数
- pTextBuf
类型:Microsoft.VisualStudio.TextManager.Interop.IVsTextLines
[in] 对一 IVsTextLines 接口的指针文本缓冲区。
- pTS
类型:array<Microsoft.VisualStudio.TextManager.Interop.TextSpan[]
[in] 有关介绍缓冲区中的 TextSpan 结构的指针文本位置。,在使用 pszExpression 参数时,可能为 nullnull 引用(在 Visual Basic 中为 Nothing) 。
- pszExpression
类型:System.String
[in] 可以检索数据中的提示文本表达式的文本。,在使用 pTS 参数时,可能为 nullnull 引用(在 Visual Basic 中为 Nothing) 。
- pbstrValue
类型:System.String%
[out] 对包含数据的字符串的指针提示文本。
返回值
类型:System.Int32
如果方法成功,则返回 TIP_S_NODEFAULTTIP。如果失败,它会返回一个错误代码。
备注
COM 签名
从 vsshell.idl:
HRESULT IVsDebugger::GetDataTipValue(
[in] IVsTextLines *pTextBuf,
[in] const TextSpan *pTS,
[in] WCHAR *pszExpression,
[out] BSTR *pbstrValue
);
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。