Example #1
0
 /// <summary>
 /// Gets the manifold of Metadata Token Ids for the assembly at <see cref="asmIdx"/>
 /// </summary>
 /// <param name="asmIdx"></param>
 /// <param name="recurseAnyAsmNamedLike">
 /// Optional regex pattern for tokens-of-tokens resolution.
 /// Basically, "keep going while the token's containing assembly looks like this..."
 /// Default is to stop at the end of <see cref="asmIdx"/> tokens-of-tokens.
 /// </param>
 /// <returns></returns>
 /// <remarks>
 /// Use the <see cref="AsmIndicies"/> property to get the index.
 /// </remarks>
 public TokenIdResponse GetTokenIds(int asmIdx, string recurseAnyAsmNamedLike = null)
 {
     _getTokenIdsCmd.RecurseAnyAsmNamedLike = recurseAnyAsmNamedLike;
     _getTokenIdsCmd.AsmIndices             = _asmIndices;
     return(_getTokenIdsCmd.Receive(asmIdx));
 }