VSNDK.DebugEngine.AD7MemoryAddress.GetDocumentContext C# (CSharp) Метод

GetDocumentContext() публичный Метод

Gets the document context that corresponds to this code context. The document context represents a position in the source file that corresponds to the source code that generated this instruction. (http://msdn.microsoft.com/en-ca/library/bb161811.aspx)
public GetDocumentContext ( IDebugDocumentContext2 &ppSrcCxt ) : int
ppSrcCxt IDebugDocumentContext2 Returns the IDebugDocumentContext2 object that corresponds to the code context.
Результат int
        public int GetDocumentContext(out IDebugDocumentContext2 ppSrcCxt)
        {
            ppSrcCxt = m_documentContext;
            return VSConstants.S_OK;
        }