Método IVsSimpleObjectList2.GetSourceContextWithOwnership (UInt32, String, UInt32)
Retorna um número de linha e o nome do arquivo de origem para o item da lista fornecida.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (em Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Sintaxe
int GetSourceContextWithOwnership(
uint index,
out string pbstrFilename,
out uint pulLineNum
)
int GetSourceContextWithOwnership(
unsigned int index,
[OutAttribute] String^% pbstrFilename,
[OutAttribute] unsigned int% pulLineNum
)
abstract GetSourceContextWithOwnership :
index:uint32 *
pbstrFilename:string byref *
pulLineNum:uint32 byref -> int
Function GetSourceContextWithOwnership (
index As UInteger,
<OutAttribute> ByRef pbstrFilename As String,
<OutAttribute> ByRef pulLineNum As UInteger
) As Integer
Parâmetros
- index
[in] Especifica o índice do item da lista de interesse.
- pbstrFilename
[out] Retorna um string que contém o nome do arquivo.
- pulLineNum
[out] Retorna um número de linha associado ao item da lista.
Valor de retorno
Type: System.Int32
Se o método for bem-sucedido, ele retorna S_OK.Se ele falhar, ele retorna um código de erro.
Comentários
COM assinatura
De vsshell80.idl:
HRESULT IVsSimpleObjectList2::GetSourceContextWithOwnership(
[in] ULONG Index,
[out] BSTR *pszFileName,
[out] ULONG *pulLineNum
);
Este método é usado para exibir o número de arquivo e linha de código-fonte na janela de resultados de localizar símbolo.Você pode retornar E_NOTIMPL se você não deseja exibir essas informações.
Consulte também
Interface IVsSimpleObjectList2
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo