Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/Reflection/Emit/AssemblyBuilder.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x0200026B RID: 619
[Token(Token = "0x200026B")]
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: 0x06001663 RID: 5731 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6001663")]
[Address(RVA = "0x30B5370", Offset = "0x30B4370", VA = "0x1830B5370")]
public ModuleBuilder DefineDynamicModule(string name, bool emitSymbolInfo)
{
return null;
}
}
}