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

            return(theap.ReadCustomAttributeRow(token));
        }