2016-08-03 10:59:49 +00:00
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
|
// <copyright file="MutableAssemblyCacheEntry.cs" company="Microsoft">
|
|
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
|
// </copyright>
|
|
|
|
|
//
|
2017-08-21 15:34:15 +00:00
|
|
|
|
// @owner Microsoft
|
|
|
|
|
// @backupOwner Microsoft
|
2016-08-03 10:59:49 +00:00
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
|
|
|
|
|
namespace System.Data.Metadata.Edm
|
|
|
|
|
{
|
|
|
|
|
internal partial class MutableAssemblyCacheEntry : AssemblyCacheEntry
|
|
|
|
|
{
|
|
|
|
|
// types in "this" assembly
|
|
|
|
|
private readonly List<EdmType> _typesInAssembly = new List<EdmType>();
|
|
|
|
|
// other assemblies referenced by types we care about in "this" assembly
|
|
|
|
|
private readonly List<Assembly> _closureAssemblies = new List<Assembly>();
|
|
|
|
|
|
|
|
|
|
internal override IList<EdmType> TypesInAssembly
|
|
|
|
|
{
|
|
|
|
|
get { return _typesInAssembly; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal override IList<Assembly> ClosureAssemblies
|
|
|
|
|
{
|
|
|
|
|
get { return _closureAssemblies; }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|