LanguageService.IsMappedLocation 方法
调用确定特定源文件中的指定位置是否引用其他文件中的代码。
命名空间: Microsoft.VisualStudio.Package
程序集: Microsoft.VisualStudio.Package.LanguageService.9.0(在 Microsoft.VisualStudio.Package.LanguageService.9.0.dll 中)
Microsoft.VisualStudio.Package.LanguageService.10.0(在 Microsoft.VisualStudio.Package.LanguageService.10.0.dll 中)
Microsoft.VisualStudio.Package.LanguageService.11.0(在 Microsoft.VisualStudio.Package.LanguageService.11.0.dll 中)
Microsoft.VisualStudio.Package.LanguageService(在 Microsoft.VisualStudio.Package.LanguageService.dll 中)
语法
声明
Public Overridable Function IsMappedLocation ( _
buffer As IVsTextBuffer, _
line As Integer, _
col As Integer _
) As Integer
public virtual int IsMappedLocation(
IVsTextBuffer buffer,
int line,
int col
)
参数
- buffer
类型:Microsoft.VisualStudio.TextManager.Interop.IVsTextBuffer
[in] 包含源文件的 IVsTextBuffer 。
- line
类型:System.Int32
[in] 在位于缓冲区的行。
- col
类型:System.Int32
[in] 偏移量所在的行中。
返回值
类型:System.Int32
如果源文件的位置映射到另一个文件,则返回; S_OK否则,返回 S_FALSE。
实现
IVsLanguageDebugInfo.IsMappedLocation(IVsTextBuffer, Int32, Int32)
备注
从其他文件中映射的源的示例是代码在 HTML 文件的位置引用代码隐藏文件的隐藏文件。
该基方法始终返回 S_FALSE。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。