Files
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

37 lines
1.8 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Reflection.Emit
{
/// <summary>Defines and represents a dynamic assembly.</summary>
// Token: 0x02000264 RID: 612
[Token(Token = "0x2000264")]
public class AssemblyBuilder : Assembly
{
/// <summary>Defines a named transient dynamic module in this assembly and specifies whether symbol information should be emitted.</summary>
/// <param name="name">The name of the dynamic module.</param>
/// <param name="emitSymbolInfo">
/// <see langword="true" /> if symbol information is to be emitted; otherwise, <see langword="false" />.</param>
/// <returns>A <see cref="T:System.Reflection.Emit.ModuleBuilder" /> representing the defined dynamic module.</returns>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="name" /> begins with white space.
/// -or-
/// The length of <paramref name="name" /> is zero.
/// -or-
/// The length of <paramref name="name" /> is greater than the system-defined maximum length.</exception>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="name" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ExecutionEngineException">The assembly for default symbol writer cannot be loaded.
/// -or-
/// The type that implements the default symbol writer interface cannot be found.</exception>
/// <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
// Token: 0x06001624 RID: 5668 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6001624")]
[Address(RVA = "0x2A009C0", Offset = "0x29FF7C0", VA = "0x182A009C0")]
public ModuleBuilder DefineDynamicModule(string name, bool emitSymbolInfo)
{
return null;
}
}
}