Xamarin Public Jenkins (auto-signing) e79aa3c0ed Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
2016-08-03 10:59:49 +00:00

38 lines
1.4 KiB
C#

//---------------------------------------------------------------------
// <copyright file="ImmutableAssemblyCacheEntry.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//
// @owner [....]
// @backupOwner [....]
//---------------------------------------------------------------------
using System.Collections.Generic;
using System.Reflection;
namespace System.Data.Metadata.Edm
{
internal partial class ImmutableAssemblyCacheEntry : AssemblyCacheEntry
{
// types in "this" assembly
private readonly System.Collections.ObjectModel.ReadOnlyCollection<EdmType> _typesInAssembly;
// other assemblies referenced by types we care about in "this" assembly
private readonly System.Collections.ObjectModel.ReadOnlyCollection<Assembly> _closureAssemblies;
internal ImmutableAssemblyCacheEntry(MutableAssemblyCacheEntry mutableEntry)
{
_typesInAssembly = new List<EdmType>(mutableEntry.TypesInAssembly).AsReadOnly();
_closureAssemblies = new List<Assembly>(mutableEntry.ClosureAssemblies).AsReadOnly();
}
internal override IList<EdmType> TypesInAssembly
{
get { return _typesInAssembly; }
}
internal override IList<Assembly> ClosureAssemblies
{
get { return _closureAssemblies; }
}
}
}