/// <summary>
        /// Reads a method specification row from provider.
        /// </summary>
        /// <param name="token">The method specification row token.</param>
        /// <returns></returns>
        MethodSpecRow IMetadataProvider.ReadMethodSpecRow(Token token)
        {
            TableHeap theap = (TableHeap)_streams[(int)HeapType.Tables];

            return(theap.ReadMethodSpecRow(token));
        }