| File: Symbols\IAssemblySymbolInternal.cs | Web Access |
| Project: src\roslyn\src\Compilers\Core\Portable\Microsoft.CodeAnalysis.csproj (Microsoft.CodeAnalysis) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Collections.Immutable; namespace Microsoft.CodeAnalysis.Symbols { internal interface IAssemblySymbolInternal : ISymbolInternal { Version? AssemblyVersionPattern { get; } /// <summary> /// Gets the name of this assembly. /// </summary> AssemblyIdentity Identity { get; } IAssemblySymbolInternal CorLibrary { get; } IEnumerable<ImmutableArray<byte>> GetInternalsVisibleToPublicKeys(string simpleName); IEnumerable<string> GetInternalsVisibleToAssemblyNames(); bool AreInternalsVisibleToThisAssembly(IAssemblySymbolInternal? otherAssembly); } }