m
This commit is contained in:
@@ -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: 0x020001B8 RID: 440
|
||||
[Token(Token = "0x20001B8")]
|
||||
[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: 0x06000C03 RID: 3075 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000C03")]
|
||||
[Address(RVA = "0xC515B0", Offset = "0xC505B0", VA = "0x180C515B0")]
|
||||
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: 0x06000C04 RID: 3076 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000C04")]
|
||||
[Address(RVA = "0xC515C0", Offset = "0xC505C0", VA = "0x180C515C0")]
|
||||
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: 0x06000C05 RID: 3077 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000C05")]
|
||||
[Address(RVA = "0x71ABC0", Offset = "0x719BC0", VA = "0x18071ABC0")]
|
||||
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: 0x04000648 RID: 1608
|
||||
[Token(Token = "0x4000648")]
|
||||
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: 0x020001B9 RID: 441
|
||||
[Token(Token = "0x20001B9")]
|
||||
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: 0x17000230 RID: 560
|
||||
// (get) Token: 0x06000C07 RID: 3079 RVA: 0x000068E8 File Offset: 0x00004AE8
|
||||
[Token(Token = "0x17000230")]
|
||||
public override LicenseUsageMode UsageMode
|
||||
{
|
||||
[Token(Token = "0x6000C07")]
|
||||
[Address(RVA = "0x4E8690", Offset = "0x4E7690", VA = "0x1804E8690", 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: 0x06000C08 RID: 3080 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000C08")]
|
||||
[Address(RVA = "0x4242C0", Offset = "0x4232C0", VA = "0x1804242C0", 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: 0x06000C09 RID: 3081 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000C09")]
|
||||
[Address(RVA = "0xC53430", Offset = "0xC52430", VA = "0x180C53430", 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: 0x06000C0A RID: 3082 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000C0A")]
|
||||
[Address(RVA = "0xC53490", Offset = "0xC52490", VA = "0x180C53490")]
|
||||
public DesigntimeLicenseContext()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x04000649 RID: 1609
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x4000649")]
|
||||
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: 0x020001BB RID: 443
|
||||
[Token(Token = "0x20001BB")]
|
||||
public class DesigntimeLicenseContextSerializer
|
||||
{
|
||||
// Token: 0x06000C11 RID: 3089 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000C11")]
|
||||
[Address(RVA = "0xC53260", Offset = "0xC52260", VA = "0x180C53260")]
|
||||
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: 0x020001BC RID: 444
|
||||
[Token(Token = "0x20001BC")]
|
||||
[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: 0x06000C12 RID: 3090
|
||||
[Token(Token = "0x6000C12")]
|
||||
[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: 0x06000C13 RID: 3091
|
||||
[Token(Token = "0x6000C13")]
|
||||
[Address(Slot = "1")]
|
||||
void OnComponentChanging(object component, MemberDescriptor member);
|
||||
}
|
||||
}
|
||||
@@ -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: 0x020001BD RID: 445
|
||||
[Token(Token = "0x20001BD")]
|
||||
[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: 0x020001BE RID: 446
|
||||
[Token(Token = "0x20001BE")]
|
||||
[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: 0x17000231 RID: 561
|
||||
// (get) Token: 0x06000C14 RID: 3092
|
||||
[Token(Token = "0x17000231")]
|
||||
IComponent RootComponent
|
||||
{
|
||||
[Token(Token = "0x6000C14")]
|
||||
[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: 0x06000C15 RID: 3093
|
||||
[Token(Token = "0x6000C15")]
|
||||
[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: 0x020001BF RID: 447
|
||||
[Token(Token = "0x20001BF")]
|
||||
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: 0x06000C16 RID: 3094
|
||||
[Token(Token = "0x6000C16")]
|
||||
[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: 0x06000C17 RID: 3095
|
||||
[Token(Token = "0x6000C17")]
|
||||
[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: 0x020001C0 RID: 448
|
||||
[Token(Token = "0x20001C0")]
|
||||
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: 0x06000C18 RID: 3096
|
||||
[Token(Token = "0x6000C18")]
|
||||
[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: 0x020001C1 RID: 449
|
||||
[Token(Token = "0x20001C1")]
|
||||
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: 0x06000C19 RID: 3097
|
||||
[Token(Token = "0x6000C19")]
|
||||
[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: 0x06000C1A RID: 3098
|
||||
[Token(Token = "0x6000C1A")]
|
||||
[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: 0x06000C1B RID: 3099
|
||||
[Token(Token = "0x6000C1B")]
|
||||
[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: 0x020001C2 RID: 450
|
||||
[Token(Token = "0x20001C2")]
|
||||
[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: 0x020001C3 RID: 451
|
||||
[Token(Token = "0x20001C3")]
|
||||
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: 0x06000C1C RID: 3100
|
||||
[Token(Token = "0x6000C1C")]
|
||||
[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: 0x06000C1D RID: 3101
|
||||
[Token(Token = "0x6000C1D")]
|
||||
[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: 0x06000C1E RID: 3102
|
||||
[Token(Token = "0x6000C1E")]
|
||||
[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: 0x020001C4 RID: 452
|
||||
[Token(Token = "0x20001C4")]
|
||||
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: 0x06000C1F RID: 3103
|
||||
[Token(Token = "0x6000C1F")]
|
||||
[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: 0x06000C20 RID: 3104
|
||||
[Token(Token = "0x6000C20")]
|
||||
[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: 0x020001BA RID: 442
|
||||
[Token(Token = "0x20001BA")]
|
||||
internal class RuntimeLicenseContext : LicenseContext
|
||||
{
|
||||
// Token: 0x06000C0B RID: 3083 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000C0B")]
|
||||
[Address(RVA = "0xC696B0", Offset = "0xC686B0", VA = "0x180C696B0")]
|
||||
private string GetLocalPath(string fileName)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06000C0C RID: 3084 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000C0C")]
|
||||
[Address(RVA = "0xC69730", Offset = "0xC68730", VA = "0x180C69730", Slot = "6")]
|
||||
public override string GetSavedLicenseKey(Type type, Assembly resourceAssembly)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06000C0D RID: 3085 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000C0D")]
|
||||
[Address(RVA = "0xC694D0", Offset = "0xC684D0", VA = "0x180C694D0")]
|
||||
private Stream CaseInsensitiveManifestResourceStreamLookup(Assembly satellite, string name)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06000C0E RID: 3086 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000C0E")]
|
||||
[Address(RVA = "0xC69EF0", Offset = "0xC68EF0", VA = "0x180C69EF0")]
|
||||
private static Stream OpenRead(Uri resourceUri)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06000C0F RID: 3087 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000C0F")]
|
||||
[Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")]
|
||||
public RuntimeLicenseContext()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0400064A RID: 1610
|
||||
[Token(Token = "0x400064A")]
|
||||
private static TraceSwitch RuntimeLicenseContextSwitch;
|
||||
|
||||
// Token: 0x0400064B RID: 1611
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x400064B")]
|
||||
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: 0x020001C5 RID: 453
|
||||
[Token(Token = "0x20001C5")]
|
||||
[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: 0x06000C21 RID: 3105 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000C21")]
|
||||
[Address(RVA = "0x4714F0", Offset = "0x4704F0", VA = "0x1804714F0")]
|
||||
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: 0x17000232 RID: 562
|
||||
// (get) Token: 0x06000C22 RID: 3106 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000232")]
|
||||
public override object TypeId
|
||||
{
|
||||
[Token(Token = "0x6000C22")]
|
||||
[Address(RVA = "0xC52D30", Offset = "0xC51D30", VA = "0x180C52D30", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x0400064C RID: 1612
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x400064C")]
|
||||
private string serializerTypeName;
|
||||
|
||||
// Token: 0x0400064D RID: 1613
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x400064D")]
|
||||
private string serializerBaseTypeName;
|
||||
|
||||
// Token: 0x0400064E RID: 1614
|
||||
[FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x400064E")]
|
||||
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: 0x020001C6 RID: 454
|
||||
[Token(Token = "0x20001C6")]
|
||||
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: 0x06000C23 RID: 3107 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000C23")]
|
||||
[Address(RVA = "0xC59490", Offset = "0xC58490", VA = "0x180C59490")]
|
||||
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: 0x06000C24 RID: 3108 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000C24")]
|
||||
[Address(RVA = "0xC58EA0", Offset = "0xC57EA0", VA = "0x180C58EA0")]
|
||||
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: 0x06000C25 RID: 3109 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000C25")]
|
||||
[Address(RVA = "0xC58990", Offset = "0xC57990", VA = "0x180C58990")]
|
||||
public object Invoke()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x0400064F RID: 1615
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x400064F")]
|
||||
private MemberInfo member;
|
||||
|
||||
// Token: 0x04000650 RID: 1616
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x4000650")]
|
||||
private ICollection arguments;
|
||||
|
||||
// Token: 0x04000651 RID: 1617
|
||||
[FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x4000651")]
|
||||
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: 0x020001C7 RID: 455
|
||||
[Token(Token = "0x20001C7")]
|
||||
[Obsolete]
|
||||
[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")]
|
||||
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface)]
|
||||
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: 0x06000C26 RID: 3110 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000C26")]
|
||||
[Address(RVA = "0xC693F0", Offset = "0xC683F0", VA = "0x180C693F0")]
|
||||
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: 0x17000233 RID: 563
|
||||
// (get) Token: 0x06000C27 RID: 3111 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000233")]
|
||||
public override object TypeId
|
||||
{
|
||||
[Token(Token = "0x6000C27")]
|
||||
[Address(RVA = "0xC69440", Offset = "0xC68440", VA = "0x180C69440", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x04000652 RID: 1618
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x4000652")]
|
||||
private bool reloadable;
|
||||
|
||||
// Token: 0x04000653 RID: 1619
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x4000653")]
|
||||
private string serializerTypeName;
|
||||
|
||||
// Token: 0x04000654 RID: 1620
|
||||
[FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x4000654")]
|
||||
private string serializerBaseTypeName;
|
||||
|
||||
// Token: 0x04000655 RID: 1621
|
||||
[FieldOffset(Offset = "0x28")]
|
||||
[Token(Token = "0x4000655")]
|
||||
private string typeId;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user