ISymbolMethod.GetSequencePoints(Int32[], ISymbolDocument[], Int32[], Int32[], Int32[], Int32[]) Método
Definição
Obtém os pontos de sequência para o método atual.Gets the sequence points for the current method.
public:
void GetSequencePoints(cli::array <int> ^ offsets, cli::array <System::Diagnostics::SymbolStore::ISymbolDocument ^> ^ documents, cli::array <int> ^ lines, cli::array <int> ^ columns, cli::array <int> ^ endLines, cli::array <int> ^ endColumns);
public void GetSequencePoints (int[]? offsets, System.Diagnostics.SymbolStore.ISymbolDocument[]? documents, int[]? lines, int[]? columns, int[]? endLines, int[]? endColumns);
public void GetSequencePoints (int[] offsets, System.Diagnostics.SymbolStore.ISymbolDocument[] documents, int[] lines, int[] columns, int[] endLines, int[] endColumns);
abstract member GetSequencePoints : int[] * System.Diagnostics.SymbolStore.ISymbolDocument[] * int[] * int[] * int[] * int[] -> unit
Public Sub GetSequencePoints (offsets As Integer(), documents As ISymbolDocument(), lines As Integer(), columns As Integer(), endLines As Integer(), endColumns As Integer())
Parâmetros
- offsets
- Int32[]
A matriz de deslocamentos de bytes do início do método para os pontos de sequência.The array of byte offsets from the beginning of the method for the sequence points.
- documents
- ISymbolDocument[]
A matriz de documentos em que os pontos de sequência estão localizados.The array of documents in which the sequence points are located.
- lines
- Int32[]
A matriz de linhas nos documentos em que os pontos de sequência estão localizados.The array of lines in the documents at which the sequence points are located.
- columns
- Int32[]
A matriz de colunas nos documentos em que os pontos de sequência estão localizados.The array of columns in the documents at which the sequence points are located.
- endLines
- Int32[]
A matriz de linhas nos documentos em que a sequência de pontos termina.The array of lines in the documents at which the sequence points end.
- endColumns
- Int32[]
A matriz de colunas nos documentos em que a sequência de pontos termina.The array of columns in the documents at which the sequence points end.
Comentários
Os pontos de sequência são classificados por deslocamento e são para todos os documentos no método.The sequence points are sorted by offset and are for all documents in the method. Use SequencePointCount para recuperar a contagem de todos os pontos de sequência e criar matrizes do tamanho adequado.Use SequencePointCount to retrieve the count of all sequence points and create arrays of the proper size.
GetSequencePoints verifica o tamanho de cada matriz e coloca as informações de ponto de sequência em cada uma.GetSequencePoints verifies the size of each array and places the sequence point information into each. Se qualquer matriz for null , os dados dessa matriz não serão retornados.If any array is null, the data for that array is not returned.