void IMetadataProvider.Read(TokenTypes token, out ExportedTypeRow result) { TableHeap theap = (TableHeap)_streams[(int)HeapType.Tables]; theap.Read(token, out result); }
/// <summary> /// Reads the specified token. /// </summary> /// <param name="token">The token.</param> /// <param name="result">The result.</param> public void Read(TokenTypes token, out ExportedTypeRow result) { if ((token & TokenTypes.TableMask) != TokenTypes.ExportedType) throw new ArgumentException ("Invalid token type for ExportedTypeRow.", "token"); using (BinaryReader reader = CreateReaderForToken (token)) { result = new ExportedTypeRow ((TypeAttributes)reader.ReadUInt32 (), (TokenTypes)reader.ReadUInt32 (), ReadIndexValue (reader, IndexType.StringHeap), ReadIndexValue (reader, IndexType.StringHeap), ReadIndexValue (reader, IndexType.Implementation)); } }