This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,47 @@
using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.ComponentModel.Design
{
/// <summary>The exception that is thrown when an attempt to check out a file that is checked into a source code management program is canceled or fails.</summary>
// Token: 0x020001BC RID: 444
[Token(Token = "0x20001BC")]
[Serializable]
public class CheckoutException : ExternalException
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.Design.CheckoutException" /> class with no associated message or error code.</summary>
// Token: 0x06000C19 RID: 3097 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C19")]
[Address(RVA = "0x4E7160", Offset = "0x4E5F60", VA = "0x1804E7160")]
public CheckoutException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.Design.CheckoutException" /> class with the specified message and error code.</summary>
/// <param name="message">A message describing the exception.</param>
/// <param name="errorCode">The error code to pass.</param>
// Token: 0x06000C1A RID: 3098 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C1A")]
[Address(RVA = "0x4E7170", Offset = "0x4E5F70", VA = "0x1804E7170")]
public CheckoutException(string message, int errorCode)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.Design.CheckoutException" /> class using the specified serialization data and context.</summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to be used for deserialization.</param>
/// <param name="context">The destination to be used for deserialization.</param>
// Token: 0x06000C1B RID: 3099 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C1B")]
[Address(RVA = "0x4E7140", Offset = "0x4E5F40", VA = "0x1804E7140")]
protected CheckoutException(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.Design.CheckoutException" /> class that specifies that the check out was canceled. This field is read-only.</summary>
// Token: 0x04000655 RID: 1621
[Token(Token = "0x4000655")]
public static readonly CheckoutException Canceled;
}
}
@@ -0,0 +1,63 @@
using System;
using System.Collections;
using System.Reflection;
using Cpp2IlInjected;
namespace System.ComponentModel.Design
{
/// <summary>Represents a design-time license context that can support a license provider at design time.</summary>
// Token: 0x020001BD RID: 445
[Token(Token = "0x20001BD")]
public class DesigntimeLicenseContext : LicenseContext
{
/// <summary>Gets the license usage mode.</summary>
/// <returns>A <see cref="T:System.ComponentModel.LicenseUsageMode" /> indicating the licensing mode for the context.</returns>
// Token: 0x17000234 RID: 564
// (get) Token: 0x06000C1D RID: 3101 RVA: 0x00006900 File Offset: 0x00004B00
[Token(Token = "0x17000234")]
public override LicenseUsageMode UsageMode
{
[Token(Token = "0x6000C1D")]
[Address(RVA = "0x4100E0", Offset = "0x40EEE0", VA = "0x1804100E0", Slot = "5")]
get
{
return LicenseUsageMode.Runtime;
}
}
/// <summary>Gets a saved license key.</summary>
/// <param name="type">The type of the license key.</param>
/// <param name="resourceAssembly">The assembly to get the key from.</param>
/// <returns>The saved license key that matches the specified type.</returns>
// Token: 0x06000C1E RID: 3102 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C1E")]
[Address(RVA = "0x43E630", Offset = "0x43D430", VA = "0x18043E630", Slot = "6")]
public override string GetSavedLicenseKey(Type type, Assembly resourceAssembly)
{
return null;
}
/// <summary>Sets a saved license key.</summary>
/// <param name="type">The type of the license key.</param>
/// <param name="key">The license key.</param>
// Token: 0x06000C1F RID: 3103 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C1F")]
[Address(RVA = "0x4E9020", Offset = "0x4E7E20", VA = "0x1804E9020", Slot = "8")]
public override void SetSavedLicenseKey(Type type, string key)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.Design.DesigntimeLicenseContext" /> class.</summary>
// Token: 0x06000C20 RID: 3104 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C20")]
[Address(RVA = "0x4E9080", Offset = "0x4E7E80", VA = "0x1804E9080")]
public DesigntimeLicenseContext()
{
}
// Token: 0x04000656 RID: 1622
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000656")]
internal Hashtable savedLicenseKeys;
}
}
@@ -0,0 +1,19 @@
using System;
using System.IO;
using Cpp2IlInjected;
namespace System.ComponentModel.Design
{
/// <summary>Provides support for design-time license context serialization.</summary>
// Token: 0x020001BF RID: 447
[Token(Token = "0x20001BF")]
public class DesigntimeLicenseContextSerializer
{
// Token: 0x06000C27 RID: 3111 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C27")]
[Address(RVA = "0x4E8E50", Offset = "0x4E7C50", VA = "0x1804E8E50")]
internal static void Deserialize(Stream o, string cryptoKey, RuntimeLicenseContext context)
{
}
}
}
@@ -0,0 +1,31 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.ComponentModel.Design
{
/// <summary>Provides an interface to add and remove the event handlers for events that add, change, remove or rename components, and provides methods to raise a <see cref="E:System.ComponentModel.Design.IComponentChangeService.ComponentChanged" /> or <see cref="E:System.ComponentModel.Design.IComponentChangeService.ComponentChanging" /> event.</summary>
// Token: 0x020001C0 RID: 448
[Token(Token = "0x20001C0")]
[ComVisible(true)]
public interface IComponentChangeService
{
/// <summary>Announces to the component change service that a particular component has changed.</summary>
/// <param name="component">The component that has changed.</param>
/// <param name="member">The member that has changed. This is <see langword="null" /> if this change is not related to a single member.</param>
/// <param name="oldValue">The old value of the member. This is valid only if the member is not <see langword="null" />.</param>
/// <param name="newValue">The new value of the member. This is valid only if the member is not <see langword="null" />.</param>
// Token: 0x06000C28 RID: 3112
[Token(Token = "0x6000C28")]
[Address(Slot = "0")]
void OnComponentChanged(object component, MemberDescriptor member, object oldValue, object newValue);
/// <summary>Announces to the component change service that a particular component is changing.</summary>
/// <param name="component">The component that is about to change.</param>
/// <param name="member">The member that is changing. This is <see langword="null" /> if this change is not related to a single member.</param>
// Token: 0x06000C29 RID: 3113
[Token(Token = "0x6000C29")]
[Address(Slot = "1")]
void OnComponentChanging(object component, MemberDescriptor member);
}
}
+14
View File
@@ -0,0 +1,14 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.ComponentModel.Design
{
/// <summary>Provides the basic framework for building a custom designer.</summary>
// Token: 0x020001C1 RID: 449
[Token(Token = "0x20001C1")]
[ComVisible(true)]
public interface IDesigner : IDisposable
{
}
}
@@ -0,0 +1,33 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.ComponentModel.Design
{
/// <summary>Provides an interface for managing designer transactions and components.</summary>
// Token: 0x020001C2 RID: 450
[Token(Token = "0x20001C2")]
[ComVisible(true)]
public interface IDesignerHost : IServiceProvider
{
/// <summary>Gets the instance of the base class used as the root component for the current design.</summary>
/// <returns>The instance of the root component class.</returns>
// Token: 0x17000235 RID: 565
// (get) Token: 0x06000C2A RID: 3114
[Token(Token = "0x17000235")]
IComponent RootComponent
{
[Token(Token = "0x6000C2A")]
[Address(Slot = "0")]
get;
}
/// <summary>Gets the designer instance that contains the specified component.</summary>
/// <param name="component">The <see cref="T:System.ComponentModel.IComponent" /> to retrieve the designer for.</param>
/// <returns>An <see cref="T:System.ComponentModel.Design.IDesigner" />, or <see langword="null" /> if there is no designer for the specified component.</returns>
// Token: 0x06000C2B RID: 3115
[Token(Token = "0x6000C2B")]
[Address(Slot = "1")]
IDesigner GetDesigner(IComponent component);
}
}
@@ -0,0 +1,27 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel.Design
{
/// <summary>Provides a basic, component site-specific, key-value pair dictionary through a service that a designer can use to store user-defined data.</summary>
// Token: 0x020001C3 RID: 451
[Token(Token = "0x20001C3")]
public interface IDictionaryService
{
/// <summary>Gets the value corresponding to the specified key.</summary>
/// <param name="key">The key to look up the value for.</param>
/// <returns>The associated value, or <see langword="null" /> if no value exists.</returns>
// Token: 0x06000C2C RID: 3116
[Token(Token = "0x6000C2C")]
[Address(Slot = "0")]
object GetValue(object key);
/// <summary>Sets the specified key-value pair.</summary>
/// <param name="key">An object to use as the key to associate the value with.</param>
/// <param name="value">The value to store.</param>
// Token: 0x06000C2D RID: 3117
[Token(Token = "0x6000C2D")]
[Address(Slot = "1")]
void SetValue(object key, object value);
}
}
@@ -0,0 +1,18 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel.Design
{
/// <summary>Provides an interface that can list extender providers.</summary>
// Token: 0x020001C4 RID: 452
[Token(Token = "0x20001C4")]
public interface IExtenderListService
{
/// <summary>Gets the set of extender providers for the component.</summary>
/// <returns>An array of type <see cref="T:System.ComponentModel.IExtenderProvider" /> that lists the active extender providers. If there are no providers, an empty array is returned.</returns>
// Token: 0x06000C2E RID: 3118
[Token(Token = "0x6000C2E")]
[Address(Slot = "0")]
IExtenderProvider[] GetExtenderProviders();
}
}
@@ -0,0 +1,35 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel.Design
{
/// <summary>Provides an interface for obtaining references to objects within a project by name or type, obtaining the name of a specified object, and for locating the parent of a specified object within a designer project.</summary>
// Token: 0x020001C5 RID: 453
[Token(Token = "0x20001C5")]
public interface IReferenceService
{
/// <summary>Gets a reference to the component whose name matches the specified name.</summary>
/// <param name="name">The name of the component to return a reference to.</param>
/// <returns>An object the specified name refers to, or <see langword="null" /> if no reference is found.</returns>
// Token: 0x06000C2F RID: 3119
[Token(Token = "0x6000C2F")]
[Address(Slot = "0")]
object GetReference(string name);
/// <summary>Gets the name of the specified component.</summary>
/// <param name="reference">The object to return the name of.</param>
/// <returns>The name of the object referenced, or <see langword="null" /> if the object reference is not valid.</returns>
// Token: 0x06000C30 RID: 3120
[Token(Token = "0x6000C30")]
[Address(Slot = "1")]
string GetName(object reference);
/// <summary>Gets all available references to components of the specified type.</summary>
/// <param name="baseType">The type of object to return references to instances of.</param>
/// <returns>An array of all available objects of the specified type.</returns>
// Token: 0x06000C31 RID: 3121
[Token(Token = "0x6000C31")]
[Address(Slot = "2")]
object[] GetReferences(Type baseType);
}
}
@@ -0,0 +1,14 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.ComponentModel.Design
{
/// <summary>Provides support for root-level designer view technologies.</summary>
// Token: 0x020001C6 RID: 454
[Token(Token = "0x20001C6")]
[ComVisible(true)]
public interface IRootDesigner : IDesigner, IDisposable
{
}
}
@@ -0,0 +1,42 @@
using System;
using System.Collections;
using Cpp2IlInjected;
namespace System.ComponentModel.Design
{
/// <summary>Provides an interface to modify the set of member descriptors for a component in design mode.</summary>
// Token: 0x020001C7 RID: 455
[Token(Token = "0x20001C7")]
public interface ITypeDescriptorFilterService
{
/// <summary>Filters the attributes that a component exposes through a <see cref="T:System.ComponentModel.TypeDescriptor" />.</summary>
/// <param name="component">The component to filter the attributes of.</param>
/// <param name="attributes">A dictionary of attributes that can be modified.</param>
/// <returns>
/// <see langword="true" /> if the set of filtered attributes is to be cached; <see langword="false" /> if the filter service must query again.</returns>
// Token: 0x06000C32 RID: 3122
[Token(Token = "0x6000C32")]
[Address(Slot = "0")]
bool FilterAttributes(IComponent component, IDictionary attributes);
/// <summary>Filters the events that a component exposes through a <see cref="T:System.ComponentModel.TypeDescriptor" />.</summary>
/// <param name="component">The component to filter events for.</param>
/// <param name="events">A dictionary of events that can be modified.</param>
/// <returns>
/// <see langword="true" /> if the set of filtered events is to be cached; <see langword="false" /> if the filter service must query again.</returns>
// Token: 0x06000C33 RID: 3123
[Token(Token = "0x6000C33")]
[Address(Slot = "1")]
bool FilterEvents(IComponent component, IDictionary events);
/// <summary>Filters the properties that a component exposes through a <see cref="T:System.ComponentModel.TypeDescriptor" />.</summary>
/// <param name="component">The component to filter properties for.</param>
/// <param name="properties">A dictionary of properties that can be modified.</param>
/// <returns>
/// <see langword="true" /> if the set of filtered properties is to be cached; <see langword="false" /> if the filter service must query again.</returns>
// Token: 0x06000C34 RID: 3124
[Token(Token = "0x6000C34")]
[Address(Slot = "2")]
bool FilterProperties(IComponent component, IDictionary properties);
}
}
@@ -0,0 +1,28 @@
using System;
using System.Reflection;
using Cpp2IlInjected;
namespace System.ComponentModel.Design
{
/// <summary>Provides an interface to retrieve an assembly or type by name.</summary>
// Token: 0x020001C8 RID: 456
[Token(Token = "0x20001C8")]
public interface ITypeResolutionService
{
/// <summary>Loads a type with the specified name.</summary>
/// <param name="name">The name of the type. If the type name is not a fully qualified name that indicates an assembly, this service will search its internal set of referenced assemblies.</param>
/// <returns>An instance of <see cref="T:System.Type" /> that corresponds to the specified name, or <see langword="null" /> if no type can be found.</returns>
// Token: 0x06000C35 RID: 3125
[Token(Token = "0x6000C35")]
[Address(Slot = "0")]
Type GetType(string name);
/// <summary>Gets the path to the file from which the assembly was loaded.</summary>
/// <param name="name">The name of the assembly.</param>
/// <returns>The path to the file from which the assembly was loaded.</returns>
// Token: 0x06000C36 RID: 3126
[Token(Token = "0x6000C36")]
[Address(Slot = "1")]
string GetPathOfAssembly(AssemblyName name);
}
}
@@ -0,0 +1,62 @@
using System;
using System.Collections;
using System.Diagnostics;
using System.IO;
using System.Reflection;
using Cpp2IlInjected;
namespace System.ComponentModel.Design
{
// Token: 0x020001BE RID: 446
[Token(Token = "0x20001BE")]
internal class RuntimeLicenseContext : LicenseContext
{
// Token: 0x06000C21 RID: 3105 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C21")]
[Address(RVA = "0x4FF360", Offset = "0x4FE160", VA = "0x1804FF360")]
private string GetLocalPath(string fileName)
{
return null;
}
// Token: 0x06000C22 RID: 3106 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C22")]
[Address(RVA = "0x4FF3E0", Offset = "0x4FE1E0", VA = "0x1804FF3E0", Slot = "6")]
public override string GetSavedLicenseKey(Type type, Assembly resourceAssembly)
{
return null;
}
// Token: 0x06000C23 RID: 3107 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C23")]
[Address(RVA = "0x4FF180", Offset = "0x4FDF80", VA = "0x1804FF180")]
private Stream CaseInsensitiveManifestResourceStreamLookup(Assembly satellite, string name)
{
return null;
}
// Token: 0x06000C24 RID: 3108 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C24")]
[Address(RVA = "0x4FFBA0", Offset = "0x4FE9A0", VA = "0x1804FFBA0")]
private static Stream OpenRead(Uri resourceUri)
{
return null;
}
// Token: 0x06000C25 RID: 3109 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C25")]
[Address(RVA = "0x3F5100", Offset = "0x3F3F00", VA = "0x1803F5100")]
public RuntimeLicenseContext()
{
}
// Token: 0x04000657 RID: 1623
[Token(Token = "0x4000657")]
private static TraceSwitch RuntimeLicenseContextSwitch;
// Token: 0x04000658 RID: 1624
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000658")]
internal Hashtable savedLicenseKeys;
}
}
@@ -0,0 +1,52 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel.Design.Serialization
{
/// <summary>Indicates a serializer for the serialization manager to use to serialize the values of the type this attribute is applied to. This class cannot be inherited.</summary>
// Token: 0x020001C9 RID: 457
[Token(Token = "0x20001C9")]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface)]
public sealed class DesignerSerializerAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.Design.Serialization.DesignerSerializerAttribute" /> class.</summary>
/// <param name="serializerTypeName">The fully qualified name of the data type of the serializer.</param>
/// <param name="baseSerializerTypeName">The fully qualified name of the base data type of the serializer. Multiple serializers can be supplied for a class as long as the serializers have different base types.</param>
// Token: 0x06000C37 RID: 3127 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C37")]
[Address(RVA = "0x497CA0", Offset = "0x496AA0", VA = "0x180497CA0")]
public DesignerSerializerAttribute(string serializerTypeName, string baseSerializerTypeName)
{
}
/// <summary>Indicates a unique ID for this attribute type.</summary>
/// <returns>A unique ID for this attribute type.</returns>
// Token: 0x17000236 RID: 566
// (get) Token: 0x06000C38 RID: 3128 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000236")]
public override object TypeId
{
[Token(Token = "0x6000C38")]
[Address(RVA = "0x4E8920", Offset = "0x4E7720", VA = "0x1804E8920", Slot = "4")]
get
{
return null;
}
}
// Token: 0x04000659 RID: 1625
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000659")]
private string serializerTypeName;
// Token: 0x0400065A RID: 1626
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x400065A")]
private string serializerBaseTypeName;
// Token: 0x0400065B RID: 1627
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x400065B")]
private string typeId;
}
}
@@ -0,0 +1,76 @@
using System;
using System.Collections;
using System.Reflection;
using Cpp2IlInjected;
namespace System.ComponentModel.Design.Serialization
{
/// <summary>Provides the information necessary to create an instance of an object. This class cannot be inherited.</summary>
// Token: 0x020001CA RID: 458
[Token(Token = "0x20001CA")]
public sealed class InstanceDescriptor
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.Design.Serialization.InstanceDescriptor" /> class using the specified member information and arguments.</summary>
/// <param name="member">The member information for the descriptor. This can be a <see cref="T:System.Reflection.MethodInfo" />, <see cref="T:System.Reflection.ConstructorInfo" />, <see cref="T:System.Reflection.FieldInfo" />, or <see cref="T:System.Reflection.PropertyInfo" />. If this is a <see cref="T:System.Reflection.MethodInfo" />, <see cref="T:System.Reflection.FieldInfo" />, or <see cref="T:System.Reflection.PropertyInfo" />, it must represent a <see langword="static" /> member.</param>
/// <param name="arguments">The collection of arguments to pass to the member. This parameter can be <see langword="null" /> or an empty collection if there are no arguments. The collection can also consist of other instances of <see cref="T:System.ComponentModel.Design.Serialization.InstanceDescriptor" />.</param>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="member" /> is of type <see cref="T:System.Reflection.MethodInfo" />, <see cref="T:System.Reflection.FieldInfo" />, or <see cref="T:System.Reflection.PropertyInfo" />, and it does not represent a <see langword="static" /> member.
/// -or-
/// <paramref name="member" /> is of type <see cref="T:System.Reflection.PropertyInfo" /> and is not readable.
/// -or-
/// <paramref name="member" /> is of type <see cref="T:System.Reflection.MethodInfo" /> or <see cref="T:System.Reflection.ConstructorInfo" />, and the number of arguments in <paramref name="arguments" /> does not match the signature of <paramref name="member" />.
/// -or-
/// <paramref name="member" /> is of type <see cref="T:System.Reflection.ConstructorInfo" /> and represents a <see langword="static" /> member.
/// -or-
/// <paramref name="member" /> is of type <see cref="T:System.Reflection.FieldInfo" />, and the number of arguments in <paramref name="arguments" /> is not zero.</exception>
// Token: 0x06000C39 RID: 3129 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C39")]
[Address(RVA = "0x4EF090", Offset = "0x4EDE90", VA = "0x1804EF090")]
public InstanceDescriptor(MemberInfo member, ICollection arguments)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.Design.Serialization.InstanceDescriptor" /> class using the specified member information, arguments, and value indicating whether the specified information completely describes the instance.</summary>
/// <param name="member">The member information for the descriptor. This can be a <see cref="T:System.Reflection.MethodInfo" />, <see cref="T:System.Reflection.ConstructorInfo" />, <see cref="T:System.Reflection.FieldInfo" />, or <see cref="T:System.Reflection.PropertyInfo" />. If this is a <see cref="T:System.Reflection.MethodInfo" />, <see cref="T:System.Reflection.FieldInfo" />, or <see cref="T:System.Reflection.PropertyInfo" />, it must represent a <see langword="static" /> member.</param>
/// <param name="arguments">The collection of arguments to pass to the member. This parameter can be <see langword="null" /> or an empty collection if there are no arguments. The collection can also consist of other instances of <see cref="T:System.ComponentModel.Design.Serialization.InstanceDescriptor" />.</param>
/// <param name="isComplete">
/// <see langword="true" /> if the specified information completely describes the instance; otherwise, <see langword="false" />.</param>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="member" /> is of type <see cref="T:System.Reflection.MethodInfo" />, <see cref="T:System.Reflection.FieldInfo" />, or <see cref="T:System.Reflection.PropertyInfo" />, and it does not represent a <see langword="static" /> member
/// <paramref name="member" /> is of type <see cref="T:System.Reflection.PropertyInfo" /> and is not readable.
/// <paramref name="member" /> is of type <see cref="T:System.Reflection.MethodInfo" /> or <see cref="T:System.Reflection.ConstructorInfo" /> and the number of arguments in <paramref name="arguments" /> does not match the signature of <paramref name="member" />.
/// <paramref name="member" /> is of type <see cref="T:System.Reflection.ConstructorInfo" /> and represents a <see langword="static" /> member
/// <paramref name="member" /> is of type <see cref="T:System.Reflection.FieldInfo" />, and the number of arguments in <paramref name="arguments" /> is not zero.</exception>
// Token: 0x06000C3A RID: 3130 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C3A")]
[Address(RVA = "0x4EEAA0", Offset = "0x4ED8A0", VA = "0x1804EEAA0")]
public InstanceDescriptor(MemberInfo member, ICollection arguments, bool isComplete)
{
}
/// <summary>Invokes this instance descriptor and returns the object the descriptor describes.</summary>
/// <returns>The object this instance descriptor describes.</returns>
// Token: 0x06000C3B RID: 3131 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C3B")]
[Address(RVA = "0x4EE590", Offset = "0x4ED390", VA = "0x1804EE590")]
public object Invoke()
{
return null;
}
// Token: 0x0400065C RID: 1628
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x400065C")]
private MemberInfo member;
// Token: 0x0400065D RID: 1629
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x400065D")]
private ICollection arguments;
// Token: 0x0400065E RID: 1630
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x400065E")]
private bool isComplete;
}
}
@@ -0,0 +1,61 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel.Design.Serialization
{
/// <summary>Indicates the base serializer to use for a root designer object. This class cannot be inherited.</summary>
// Token: 0x020001CB RID: 459
[Token(Token = "0x20001CB")]
[Obsolete]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface)]
[Obsolete("This attribute has been deprecated. Use DesignerSerializerAttribute instead. For example, to specify a root designer for CodeDom, use DesignerSerializerAttribute(...,typeof(TypeCodeDomSerializer)). http://go.microsoft.com/fwlink/?linkid=14202")]
public sealed class RootDesignerSerializerAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.Design.Serialization.RootDesignerSerializerAttribute" /> class using the specified attributes.</summary>
/// <param name="serializerTypeName">The fully qualified name of the data type of the serializer.</param>
/// <param name="baseSerializerTypeName">The name of the base type of the serializer. A class can include multiple serializers as they all have different base types.</param>
/// <param name="reloadable">
/// <see langword="true" /> if this serializer supports dynamic reloading of the document; otherwise, <see langword="false" />.</param>
// Token: 0x06000C3C RID: 3132 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C3C")]
[Address(RVA = "0x4FF0A0", Offset = "0x4FDEA0", VA = "0x1804FF0A0")]
public RootDesignerSerializerAttribute(string serializerTypeName, string baseSerializerTypeName, bool reloadable)
{
}
/// <summary>Gets a unique ID for this attribute type.</summary>
/// <returns>An object containing a unique ID for this attribute type.</returns>
// Token: 0x17000237 RID: 567
// (get) Token: 0x06000C3D RID: 3133 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000237")]
public override object TypeId
{
[Token(Token = "0x6000C3D")]
[Address(RVA = "0x4FF0F0", Offset = "0x4FDEF0", VA = "0x1804FF0F0", Slot = "4")]
get
{
return null;
}
}
// Token: 0x0400065F RID: 1631
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x400065F")]
private bool reloadable;
// Token: 0x04000660 RID: 1632
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000660")]
private string serializerTypeName;
// Token: 0x04000661 RID: 1633
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x4000661")]
private string serializerBaseTypeName;
// Token: 0x04000662 RID: 1634
[FieldOffset(Offset = "0x28")]
[Token(Token = "0x4000662")]
private string typeId;
}
}