System.Reflection.Metadata.AssemblyDefinition
namespace System.Reflection.Metadata
{
public struct AssemblyDefinition
{
public AssemblyHashAlgorithm HashAlgorithm { get; }
public Version Version { get; }
public AssemblyFlags Flags { get; }
public StringHandle Name { get; }
public StringHandle Culture { get; }
public BlobHandle PublicKey { get; }
public CustomAttributeHandleCollection GetCustomAttributes();
public DeclarativeSecurityAttributeHandleCollection GetDeclarativeSecurityAttributes();
}
}