ISymbolReader.GetMethodFromDocumentPosition Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a symbol reader method object that contains a specified position in a document.
public:
System::Diagnostics::SymbolStore::ISymbolMethod ^ GetMethodFromDocumentPosition(System::Diagnostics::SymbolStore::ISymbolDocument ^ document, int line, int column);
public System.Diagnostics.SymbolStore.ISymbolMethod GetMethodFromDocumentPosition (System.Diagnostics.SymbolStore.ISymbolDocument document, int line, int column);
abstract member GetMethodFromDocumentPosition : System.Diagnostics.SymbolStore.ISymbolDocument * int * int -> System.Diagnostics.SymbolStore.ISymbolMethod
Public Function GetMethodFromDocumentPosition (document As ISymbolDocument, line As Integer, column As Integer) As ISymbolMethod
Parameters
- document
- ISymbolDocument
The document in which the method is located.
- line
- Int32
The position of the line within the document. The lines are numbered, beginning with 1.
- column
- Int32
The position of column within the document. The columns are numbered, beginning with 1.
Returns
The reader method object for the specified position in the document.