IVsLanguageDebugInfo.IsMappedLocation 方法
傳回的位置是否含有程式碼都對應到另一個文件,例如,用戶端指令碼程式碼。
命名空間: Microsoft.VisualStudio.TextManager.Interop
組件: Microsoft.VisualStudio.TextManager.Interop (在 Microsoft.VisualStudio.TextManager.Interop.dll 中)
語法
'宣告
Function IsMappedLocation ( _
pBuffer As IVsTextBuffer, _
iLine As Integer, _
iCol As Integer _
) As Integer
int IsMappedLocation(
IVsTextBuffer pBuffer,
int iLine,
int iCol
)
int IsMappedLocation(
[InAttribute] IVsTextBuffer^ pBuffer,
[InAttribute] int iLine,
[InAttribute] int iCol
)
abstract IsMappedLocation :
pBuffer:IVsTextBuffer *
iLine:int *
iCol:int -> int
function IsMappedLocation(
pBuffer : IVsTextBuffer,
iLine : int,
iCol : int
) : int
參數
pBuffer
類型:Microsoft.VisualStudio.TextManager.Interop.IVsTextBuffer[in]IVsTextBuffer介面中包含有問題的位置。
iLine
類型:Int32[in]整數,其中包含的行索引。
iCol
類型:Int32[in]整數,其中包含的資料行索引。
傳回值
類型:Int32
如果此方法成功則傳回S_OK表示位置包含對應的程式碼。如果位置不包含對應的程式碼,會傳回S_FALSE。否則,會傳回錯誤碼。
備註
COM 簽章
從 textmgr.idl:
HRESULT IVsLanguageDebugInfo::IsMappedLocation(
[in] IVsTextBuffer *pBuffer,
[in] long iLine,
[in] long iCol
);
傳回的位置是否含有程式碼,它會對應到另一個文件,例如用戶端指令碼。
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。