39128 lines
1.9 MiB
39128 lines
1.9 MiB
#include "il2cpp-config.h"
|
|
|
|
#ifndef _MSC_VER
|
|
# include <alloca.h>
|
|
#else
|
|
# include <malloc.h>
|
|
#endif
|
|
|
|
|
|
#include <cstring>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <cmath>
|
|
#include <limits>
|
|
#include <assert.h>
|
|
#include <stdint.h>
|
|
|
|
#include "codegen/il2cpp-codegen.h"
|
|
#include "il2cpp-object-internals.h"
|
|
|
|
template <typename R, typename T1, typename T2, typename T3, typename T4>
|
|
struct VirtFuncInvoker4
|
|
{
|
|
typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1>
|
|
struct VirtFuncInvoker1
|
|
{
|
|
typedef R (*Func)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1, typename T2>
|
|
struct VirtFuncInvoker2
|
|
{
|
|
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R>
|
|
struct VirtFuncInvoker0
|
|
{
|
|
typedef R (*Func)(void*, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1, typename T2>
|
|
struct VirtActionInvoker2
|
|
{
|
|
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1, typename T2, typename T3>
|
|
struct VirtFuncInvoker3
|
|
{
|
|
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1>
|
|
struct VirtActionInvoker1
|
|
{
|
|
typedef void (*Action)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
struct VirtActionInvoker0
|
|
{
|
|
typedef void (*Action)(void*, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
((Action)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1>
|
|
struct GenericVirtActionInvoker1
|
|
{
|
|
typedef void (*Action)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
|
|
{
|
|
VirtualInvokeData invokeData;
|
|
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
|
|
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1, typename T2>
|
|
struct GenericVirtActionInvoker2
|
|
{
|
|
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2)
|
|
{
|
|
VirtualInvokeData invokeData;
|
|
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
|
|
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1>
|
|
struct InterfaceFuncInvoker1
|
|
{
|
|
typedef R (*Func)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R>
|
|
struct InterfaceFuncInvoker0
|
|
{
|
|
typedef R (*Func)(void*, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1, typename T2>
|
|
struct InterfaceActionInvoker2
|
|
{
|
|
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1>
|
|
struct InterfaceActionInvoker1
|
|
{
|
|
typedef void (*Action)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1, typename T2>
|
|
struct InterfaceFuncInvoker2
|
|
{
|
|
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
|
|
}
|
|
};
|
|
struct InterfaceActionInvoker0
|
|
{
|
|
typedef void (*Action)(void*, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
((Action)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1>
|
|
struct GenericInterfaceActionInvoker1
|
|
{
|
|
typedef void (*Action)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
|
|
{
|
|
VirtualInvokeData invokeData;
|
|
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
|
|
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1, typename T2>
|
|
struct GenericInterfaceActionInvoker2
|
|
{
|
|
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2)
|
|
{
|
|
VirtualInvokeData invokeData;
|
|
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
|
|
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
|
|
}
|
|
};
|
|
|
|
// Microsoft.Win32.SafeHandles.SafeFileHandle
|
|
struct SafeFileHandle_tE1B31BE63CD11BBF2B9B6A205A72735F32EB1BCB;
|
|
// Mono.Globalization.Unicode.SimpleCollator
|
|
struct SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89;
|
|
// System.AppDomain
|
|
struct AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8;
|
|
// System.AppDomainSetup
|
|
struct AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306;
|
|
// System.ArgumentException
|
|
struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1;
|
|
// System.ArgumentNullException
|
|
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD;
|
|
// System.AssemblyLoadEventHandler
|
|
struct AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9;
|
|
// System.AsyncCallback
|
|
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4;
|
|
// System.Attribute
|
|
struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74;
|
|
// System.Attribute[]
|
|
struct AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17;
|
|
// System.Boolean[]
|
|
struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040;
|
|
// System.Byte[]
|
|
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
|
|
// System.Char[]
|
|
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
|
|
// System.Collections.ArrayList
|
|
struct ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4;
|
|
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo>
|
|
struct Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B;
|
|
// System.Collections.Generic.Dictionary`2<System.String,Mono.Globalization.Unicode.SimpleCollator>
|
|
struct Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo>
|
|
struct Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Int32>
|
|
struct Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Object>
|
|
struct Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA;
|
|
// System.Collections.Generic.Dictionary`2<System.Type,System.Runtime.Serialization.Formatters.Binary.TypeInformation>
|
|
struct Dictionary_2_tDF0B764EEAE1242A344103EC40130E5D891C6934;
|
|
// System.Collections.Generic.List`1<System.ComponentModel.MaskedTextProvider/CharDescriptor>
|
|
struct List_1_t534EACBABA93D935E71506BB9B9529485F1E0966;
|
|
// System.Collections.Generic.List`1<System.Enum>
|
|
struct List_1_t0A40881AA73F2F363AD72BF7C074350FD9178030;
|
|
// System.Collections.Generic.List`1<System.Int32>
|
|
struct List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226;
|
|
// System.Collections.Generic.List`1<System.Object>
|
|
struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D;
|
|
// System.Collections.Generic.List`1<System.String>
|
|
struct List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3;
|
|
// System.Collections.Generic.List`1<System.WeakReference>
|
|
struct List_1_t0B19BE4139518EFD1F11815FD931281B09EA15EF;
|
|
// System.Collections.Hashtable
|
|
struct Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9;
|
|
// System.Collections.Hashtable/bucket[]
|
|
struct bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A;
|
|
// System.Collections.ICollection
|
|
struct ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54;
|
|
// System.Collections.IComparer
|
|
struct IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95;
|
|
// System.Collections.IDictionary
|
|
struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7;
|
|
// System.Collections.IDictionaryEnumerator
|
|
struct IDictionaryEnumerator_t456EB67407D2045A257B66A3A25A825E883FD027;
|
|
// System.Collections.IEnumerator
|
|
struct IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A;
|
|
// System.Collections.IEqualityComparer
|
|
struct IEqualityComparer_t3102D0F5BABD60224F6DFF4815BCA1045831FB7C;
|
|
// System.Collections.IList
|
|
struct IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA;
|
|
// System.Collections.Specialized.HybridDictionary
|
|
struct HybridDictionary_t885F953154C575D3408650DCE5D0B76F1EE4E549;
|
|
// System.Collections.Specialized.ListDictionary
|
|
struct ListDictionary_tE68C8A5DB37EB10F3AA958AB3BF214346402074D;
|
|
// System.Collections.Specialized.NameValueCollection
|
|
struct NameValueCollection_t7C7CED43E4C6E997E3C8012F1D2CC4027FAD10D1;
|
|
// System.ComponentModel.ArraySubsetEnumerator
|
|
struct ArraySubsetEnumerator_tA39E27E02B80287A51F09D2875F1A3AF86768BDA;
|
|
// System.ComponentModel.AttributeCollection
|
|
struct AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE;
|
|
// System.ComponentModel.AttributeCollection/AttributeEntry[]
|
|
struct AttributeEntryU5BU5D_t82EF07E3984B106E346A6B35336772424C0FCB5A;
|
|
// System.ComponentModel.BaseNumberConverter
|
|
struct BaseNumberConverter_t6AF36A2503E7BABF7FB9A8EC05DF8B828491AC63;
|
|
// System.ComponentModel.BrowsableAttribute
|
|
struct BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1;
|
|
// System.ComponentModel.CancelEventArgs
|
|
struct CancelEventArgs_t2843141F2893A01C11535CD7E38072CA26D7794D;
|
|
// System.ComponentModel.CategoryAttribute
|
|
struct CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80;
|
|
// System.ComponentModel.Component
|
|
struct Component_t7AEFE153F6778CF52E1981BC3E811A9604B29473;
|
|
// System.ComponentModel.ComponentCollection
|
|
struct ComponentCollection_tCA923631B2E55E6A831F9D5CF5231113764CB895;
|
|
// System.ComponentModel.Container
|
|
struct Container_tC98CD69632DEA16FC061454A770CC7D11FFFEEF1;
|
|
// System.ComponentModel.ContainerFilterService
|
|
struct ContainerFilterService_t4E2FD208B28F83EA50EBC66500B7DCA29D38FA19;
|
|
// System.ComponentModel.DelegatingTypeDescriptionProvider
|
|
struct DelegatingTypeDescriptionProvider_t1479D886AEC7B0D4A74E19212E904337D5505A56;
|
|
// System.ComponentModel.DescriptionAttribute
|
|
struct DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75;
|
|
// System.ComponentModel.Design.CheckoutException
|
|
struct CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5;
|
|
// System.ComponentModel.Design.DesigntimeLicenseContext
|
|
struct DesigntimeLicenseContext_tFBEF4E72A1E0E7F03A01D35ADFEE86A23F848AA1;
|
|
// System.ComponentModel.Design.RuntimeLicenseContext
|
|
struct RuntimeLicenseContext_t1367392EED5E28C90B5128BF01CA0B846120C641;
|
|
// System.ComponentModel.Design.Serialization.InstanceDescriptor
|
|
struct InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6;
|
|
// System.ComponentModel.Design.Serialization.RootDesignerSerializerAttribute
|
|
struct RootDesignerSerializerAttribute_tD5A87C7E5CB002D859780E1BEF96D7E1214CC0AA;
|
|
// System.ComponentModel.DesignOnlyAttribute
|
|
struct DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06;
|
|
// System.ComponentModel.DesignTimeVisibleAttribute
|
|
struct DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466;
|
|
// System.ComponentModel.DesignerAttribute
|
|
struct DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0;
|
|
// System.ComponentModel.DesignerCategoryAttribute
|
|
struct DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA;
|
|
// System.ComponentModel.DesignerSerializationVisibilityAttribute
|
|
struct DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA;
|
|
// System.ComponentModel.DisplayNameAttribute
|
|
struct DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE;
|
|
// System.ComponentModel.DoWorkEventArgs
|
|
struct DoWorkEventArgs_t66930F141A21B5E954CE70A24AD0446E2CD5F606;
|
|
// System.ComponentModel.DoWorkEventHandler
|
|
struct DoWorkEventHandler_t106AA6C0F543A5A4998F9E9E73F4461D404F20DD;
|
|
// System.ComponentModel.DoubleConverter
|
|
struct DoubleConverter_t65A5D8B0C2736FC5469CE5DFA468D371DD5F9F75;
|
|
// System.ComponentModel.EditorAttribute
|
|
struct EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5;
|
|
// System.ComponentModel.EditorBrowsableAttribute
|
|
struct EditorBrowsableAttribute_tF3507DF0AB82A8D54C70D6F7FB4D363DF729D516;
|
|
// System.ComponentModel.EnumConverter
|
|
struct EnumConverter_t5DA4CB27C27A8C37C31B2A4DE0C4C37820638E12;
|
|
// System.ComponentModel.EventDescriptor
|
|
struct EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222;
|
|
// System.ComponentModel.EventDescriptorCollection
|
|
struct EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37;
|
|
// System.ComponentModel.EventDescriptor[]
|
|
struct EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4;
|
|
// System.ComponentModel.EventHandlerList
|
|
struct EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4;
|
|
// System.ComponentModel.EventHandlerList/ListEntry
|
|
struct ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D;
|
|
// System.ComponentModel.ExpandableObjectConverter
|
|
struct ExpandableObjectConverter_tC19580E01F630034FD5140CFA7453E1125E13F99;
|
|
// System.ComponentModel.ExtendedPropertyDescriptor
|
|
struct ExtendedPropertyDescriptor_tABDBA511CEE5442C0B06059799418904896E0CF6;
|
|
// System.ComponentModel.ExtenderProvidedPropertyAttribute
|
|
struct ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68;
|
|
// System.ComponentModel.GuidConverter
|
|
struct GuidConverter_t9207FA129C0A5A7AD84D5FEC9C9F2CA5F3FB9D7D;
|
|
// System.ComponentModel.HandledEventArgs
|
|
struct HandledEventArgs_t26999700606DD7EC365648A50C9E3E15EFCAC2DF;
|
|
// System.ComponentModel.HandledEventHandler
|
|
struct HandledEventHandler_t17748FC020C52377E8BE63A85595C31181910699;
|
|
// System.ComponentModel.IComponent
|
|
struct IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6;
|
|
// System.ComponentModel.IContainer
|
|
struct IContainer_tA0D1065AEB21197BA9E1F139F6501B8ADCB66077;
|
|
// System.ComponentModel.ICustomTypeDescriptor
|
|
struct ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384;
|
|
// System.ComponentModel.IExtenderProvider
|
|
struct IExtenderProvider_tD515C7071D35798A56894C8829AFB46AB868CAB7;
|
|
// System.ComponentModel.IExtenderProvider[]
|
|
struct IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031;
|
|
// System.ComponentModel.ISite
|
|
struct ISite_t6804B48BC23ABB5F4141903F878589BCEF6097A2;
|
|
// System.ComponentModel.ISite[]
|
|
struct ISiteU5BU5D_t26A1BA57EE8683FC59C3BDD15CA00512F5A520A8;
|
|
// System.ComponentModel.ITypeDescriptorContext
|
|
struct ITypeDescriptorContext_tE299A513DA3526C32BFAC7D1FDFFC55AFB1D0CD6;
|
|
// System.ComponentModel.ImmutableObjectAttribute
|
|
struct ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492;
|
|
// System.ComponentModel.InheritanceAttribute
|
|
struct InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4;
|
|
// System.ComponentModel.InitializationEventAttribute
|
|
struct InitializationEventAttribute_t66A3424618601597D5221545AA27CCAE24DC19B1;
|
|
// System.ComponentModel.InstallerTypeAttribute
|
|
struct InstallerTypeAttribute_t69E2B80148C986610B0F88883070C0BAD2A2B755;
|
|
// System.ComponentModel.InstanceCreationEditor
|
|
struct InstanceCreationEditor_t87E9919F45C092DA810FAC5AEFD200F26A9D7EEA;
|
|
// System.ComponentModel.Int16Converter
|
|
struct Int16Converter_tA2223DDF2BE99AD79AD836FCEC90F2C12705433B;
|
|
// System.ComponentModel.Int32Converter
|
|
struct Int32Converter_t73A6E403EBE01B56528CB227509954397A46BA22;
|
|
// System.ComponentModel.Int64Converter
|
|
struct Int64Converter_tED09C98C409F894484943F8D4F9C6468A97F1447;
|
|
// System.ComponentModel.InvalidAsynchronousStateException
|
|
struct InvalidAsynchronousStateException_t7DB1CEE45E73613ADBB359792244856600B5E5D7;
|
|
// System.ComponentModel.InvalidEnumArgumentException
|
|
struct InvalidEnumArgumentException_tCC80F4F8EF655A404E9D11895A6477AA3D210BB1;
|
|
// System.ComponentModel.LicFileLicenseProvider
|
|
struct LicFileLicenseProvider_t458B091F8501C2890FD617BB025AB49DC494076F;
|
|
// System.ComponentModel.LicFileLicenseProvider/LicFileLicense
|
|
struct LicFileLicense_t5AF4C870B7DF7EE91D6C0FA5DA1354763EF9E5FF;
|
|
// System.ComponentModel.License
|
|
struct License_t9011453B97942387364692C7DFAD2DEDB2160F8C;
|
|
// System.ComponentModel.LicenseContext
|
|
struct LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A;
|
|
// System.ComponentModel.LicenseException
|
|
struct LicenseException_t68C548BE94D4AD7F82C5AD5E710AC18F50F30F9D;
|
|
// System.ComponentModel.LicenseManager
|
|
struct LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1;
|
|
// System.ComponentModel.LicenseManager/LicenseInteropHelper
|
|
struct LicenseInteropHelper_t528682251600D62797521A8A3CCAD83BD1A47C0E;
|
|
// System.ComponentModel.LicenseManager/LicenseInteropHelper/CLRLicenseContext
|
|
struct CLRLicenseContext_t16B4876D030AD05B4AEA1B65FDC49BC8E4BF64DC;
|
|
// System.ComponentModel.LicenseProvider
|
|
struct LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596;
|
|
// System.ComponentModel.LicenseProviderAttribute
|
|
struct LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D;
|
|
// System.ComponentModel.ListBindableAttribute
|
|
struct ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2;
|
|
// System.ComponentModel.ListChangedEventArgs
|
|
struct ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84;
|
|
// System.ComponentModel.ListChangedEventHandler
|
|
struct ListChangedEventHandler_t8081F1428D22013519901C16884C5ACE86A72A88;
|
|
// System.ComponentModel.ListSortDescription
|
|
struct ListSortDescription_t70B03E24814E0475DA906045690FBE5010F28C75;
|
|
// System.ComponentModel.ListSortDescriptionCollection
|
|
struct ListSortDescriptionCollection_t861BA7E63FFEBDC5C46C048FEA7B60EC580964CB;
|
|
// System.ComponentModel.ListSortDescription[]
|
|
struct ListSortDescriptionU5BU5D_t852C81EC628A962BC76EF59B86ADF79FA8C00A76;
|
|
// System.ComponentModel.LocalizableAttribute
|
|
struct LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F;
|
|
// System.ComponentModel.LookupBindingPropertiesAttribute
|
|
struct LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B;
|
|
// System.ComponentModel.MarshalByValueComponent
|
|
struct MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B;
|
|
// System.ComponentModel.MaskedTextProvider
|
|
struct MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197;
|
|
// System.ComponentModel.MaskedTextProvider/CharDescriptor
|
|
struct CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D;
|
|
// System.ComponentModel.MaskedTextProvider/CharDescriptor[]
|
|
struct CharDescriptorU5BU5D_tBD0DFC4BA13FD2351CDD1C9B59E7720AB4736EC2;
|
|
// System.ComponentModel.MemberDescriptor
|
|
struct MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8;
|
|
// System.ComponentModel.MergablePropertyAttribute
|
|
struct MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909;
|
|
// System.ComponentModel.MultilineStringConverter
|
|
struct MultilineStringConverter_t339792E6A737C1E96D03DA7172324B8EAEBA85A1;
|
|
// System.ComponentModel.NestedContainer
|
|
struct NestedContainer_t08F11932945A6F531D1338CC5A05BAD8D99F8AE9;
|
|
// System.ComponentModel.NestedContainer/Site
|
|
struct Site_t416D1B752B924BEC6C03A474D7DC852F255B3E5A;
|
|
// System.ComponentModel.NotifyParentPropertyAttribute
|
|
struct NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68;
|
|
// System.ComponentModel.NullableConverter
|
|
struct NullableConverter_t46A6256BAFD4B0C501724527189C888B36E48E71;
|
|
// System.ComponentModel.ParenthesizePropertyNameAttribute
|
|
struct ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114;
|
|
// System.ComponentModel.PasswordPropertyTextAttribute
|
|
struct PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1;
|
|
// System.ComponentModel.ProgressChangedEventArgs
|
|
struct ProgressChangedEventArgs_tC79597AB8E4151EDFF627F615FE36B8D91811F3F;
|
|
// System.ComponentModel.ProgressChangedEventHandler
|
|
struct ProgressChangedEventHandler_t7C77D0D690442151F8203A0BF38966A9B2CF33C0;
|
|
// System.ComponentModel.PropertyChangedEventArgs
|
|
struct PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46;
|
|
// System.ComponentModel.PropertyChangedEventHandler
|
|
struct PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82;
|
|
// System.ComponentModel.PropertyChangingEventArgs
|
|
struct PropertyChangingEventArgs_tF5EE6A07599A5560DB307BC199120416F0615DBA;
|
|
// System.ComponentModel.PropertyChangingEventHandler
|
|
struct PropertyChangingEventHandler_tE2424019EC48E76381C3EB037326A821D4F833C1;
|
|
// System.ComponentModel.PropertyDescriptor
|
|
struct PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D;
|
|
// System.ComponentModel.PropertyDescriptorCollection
|
|
struct PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2;
|
|
// System.ComponentModel.PropertyDescriptorCollection/PropertyDescriptorEnumerator
|
|
struct PropertyDescriptorEnumerator_t8DE08E0C89BAD17FE8FD71FD3159C80833CE2D9D;
|
|
// System.ComponentModel.PropertyDescriptor[]
|
|
struct PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F;
|
|
// System.ComponentModel.ReflectPropertyDescriptor
|
|
struct ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E;
|
|
// System.ComponentModel.RefreshEventHandler
|
|
struct RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27;
|
|
// System.ComponentModel.TypeConverter
|
|
struct TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB;
|
|
// System.ComponentModel.TypeConverter/StandardValuesCollection
|
|
struct StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3;
|
|
// System.ComponentModel.TypeConverterAttribute
|
|
struct TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8;
|
|
// System.ComponentModel.TypeDescriptionProvider
|
|
struct TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591;
|
|
// System.ComponentModel.TypeDescriptionProvider/EmptyCustomTypeDescriptor
|
|
struct EmptyCustomTypeDescriptor_tDDCC5072613D7D0405BCCF3D49F3EF7B4E1E7DB8;
|
|
// System.ComponentModel.WeakHashtable
|
|
struct WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF;
|
|
// System.Delegate
|
|
struct Delegate_t;
|
|
// System.DelegateData
|
|
struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE;
|
|
// System.Delegate[]
|
|
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
|
|
// System.Diagnostics.BooleanSwitch
|
|
struct BooleanSwitch_t2B51F0E7C50E7DAA74282B51EF9107A2E54723E0;
|
|
// System.Diagnostics.StackTrace[]
|
|
struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196;
|
|
// System.Diagnostics.TraceSwitch
|
|
struct TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8;
|
|
// System.Enum
|
|
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521;
|
|
// System.Enum[]
|
|
struct EnumU5BU5D_t89BCD01877A8CDBF7729DE77C6185E8DC1432BCA;
|
|
// System.EventArgs
|
|
struct EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E;
|
|
// System.EventHandler
|
|
struct EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C;
|
|
// System.EventHandler`1<System.Runtime.ExceptionServices.FirstChanceExceptionEventArgs>
|
|
struct EventHandler_1_t1E35ED2E29145994C6C03E57601C6D48C61083FF;
|
|
// System.Exception
|
|
struct Exception_t;
|
|
// System.FormatException
|
|
struct FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC;
|
|
// System.Func`2<System.Object,System.Int32>
|
|
struct Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6;
|
|
// System.Func`2<System.Object,System.String>
|
|
struct Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF;
|
|
// System.Globalization.Calendar
|
|
struct Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5;
|
|
// System.Globalization.CompareInfo
|
|
struct CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1;
|
|
// System.Globalization.CultureData
|
|
struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD;
|
|
// System.Globalization.CultureInfo
|
|
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F;
|
|
// System.Globalization.CultureInfo[]
|
|
struct CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31;
|
|
// System.Globalization.DateTimeFormatInfo
|
|
struct DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F;
|
|
// System.Globalization.NumberFormatInfo
|
|
struct NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8;
|
|
// System.Globalization.SortVersion
|
|
struct SortVersion_tE7080CE09A0B8CE226F8046C0D1374DD0A0CAE71;
|
|
// System.Globalization.TextInfo
|
|
struct TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8;
|
|
// System.Globalization.TokenHashValue[]
|
|
struct TokenHashValueU5BU5D_t5C8B41D89122FC1D3ED53C946C2656DA03CE899A;
|
|
// System.Guid[]
|
|
struct GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF;
|
|
// System.IAsyncResult
|
|
struct IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598;
|
|
// System.IFormatProvider
|
|
struct IFormatProvider_t4247E13AE2D97A079B88D594B7ABABF313259901;
|
|
// System.IO.FileInfo
|
|
struct FileInfo_tF8C1D41E1ABDAC19BF4F76A491DD28DD8DBEE35C;
|
|
// System.IO.FileStream
|
|
struct FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418;
|
|
// System.IO.Stream
|
|
struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7;
|
|
// System.IO.Stream/ReadWriteTask
|
|
struct ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80;
|
|
// System.IO.StreamReader
|
|
struct StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E;
|
|
// System.IServiceProvider
|
|
struct IServiceProvider_t4EDB9848587638C3988434AA46E63D9EB85005EF;
|
|
// System.IndexOutOfRangeException
|
|
struct IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF;
|
|
// System.Int32[]
|
|
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
|
|
// System.IntPtr[]
|
|
struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD;
|
|
// System.InvalidOperationException
|
|
struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1;
|
|
// System.Net.Cache.RequestCachePolicy
|
|
struct RequestCachePolicy_t30D7352C7E9D49EEADD492A70EC92C118D90CD61;
|
|
// System.Net.ICredentials
|
|
struct ICredentials_t1A41F1096B037CAB53AE01434DF0747881455344;
|
|
// System.Net.IWebProxy
|
|
struct IWebProxy_tA24C0862A1ACA35D20FD079E2672CA5786C1A67E;
|
|
// System.Net.WebClient
|
|
struct WebClient_t0BFD938623FF98FA7EEE0031AB9E8293DD295F6A;
|
|
// System.Net.WebClient/ProgressData
|
|
struct ProgressData_tE1BDFEEC6B492E4A260BBEF1107683C28BB8AC20;
|
|
// System.Net.WebHeaderCollection
|
|
struct WebHeaderCollection_tB57EC4CD795CACE87271D6887BBED385DC37B304;
|
|
// System.Net.WebRequest
|
|
struct WebRequest_t5668DA48802E9FE2F1DE5F5A770B218608B918C8;
|
|
// System.Net.WebResponse
|
|
struct WebResponse_t5C91B5B83E2FBA2EABC6FDF2A70E9AFD9BB059BD;
|
|
// System.NotSupportedException
|
|
struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010;
|
|
// System.Object[]
|
|
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
|
|
// System.Reflection.Assembly
|
|
struct Assembly_t;
|
|
// System.Reflection.Assembly/ResolveEventHolder
|
|
struct ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E;
|
|
// System.Reflection.AssemblyName
|
|
struct AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82;
|
|
// System.Reflection.Assembly[]
|
|
struct AssemblyU5BU5D_t90BF014AA048450526A42C74F9583341A138DE58;
|
|
// System.Reflection.Binder
|
|
struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759;
|
|
// System.Reflection.ConstructorInfo
|
|
struct ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF;
|
|
// System.Reflection.FieldInfo
|
|
struct FieldInfo_t;
|
|
// System.Reflection.MemberFilter
|
|
struct MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381;
|
|
// System.Reflection.MemberInfo
|
|
struct MemberInfo_t;
|
|
// System.Reflection.MethodBase
|
|
struct MethodBase_t;
|
|
// System.Reflection.MethodInfo
|
|
struct MethodInfo_t;
|
|
// System.Reflection.ParameterInfo
|
|
struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB;
|
|
// System.Reflection.ParameterModifier[]
|
|
struct ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA;
|
|
// System.Reflection.PropertyInfo
|
|
struct PropertyInfo_t;
|
|
// System.Reflection.StrongNameKeyPair
|
|
struct StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD;
|
|
// System.Reflection.TypeFilter
|
|
struct TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18;
|
|
// System.ResolveEventHandler
|
|
struct ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5;
|
|
// System.Runtime.InteropServices.COMException
|
|
struct COMException_t16C4698DE84A5ED9085B5545DEE0EDE38DB455DD;
|
|
// System.Runtime.InteropServices.ExternalException
|
|
struct ExternalException_t68841FD169C0CB00CC950EDA7E2A59540D65B1CE;
|
|
// System.Runtime.InteropServices.MarshalAsAttribute
|
|
struct MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020;
|
|
// System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
|
struct BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0;
|
|
// System.Runtime.Serialization.IFormatterConverter
|
|
struct IFormatterConverter_tC3280D64D358F47EA4DAF1A65609BA0FC081888A;
|
|
// System.Runtime.Serialization.ISurrogateSelector
|
|
struct ISurrogateSelector_t4C99617DAC31689CEC0EDB09B067A65E80E1C3EA;
|
|
// System.Runtime.Serialization.SafeSerializationManager
|
|
struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770;
|
|
// System.Runtime.Serialization.SerializationBinder
|
|
struct SerializationBinder_tB5EBAF328371FB7CF23E37F5984D8412762CFFA4;
|
|
// System.Runtime.Serialization.SerializationInfo
|
|
struct SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26;
|
|
// System.Security.Cryptography.RandomNumberGenerator
|
|
struct RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2;
|
|
// System.Security.SecureString
|
|
struct SecureString_t0E7DCB36E6C027EA7265B7BDC2E3CAB0BA1FF2E5;
|
|
// System.String
|
|
struct String_t;
|
|
// System.String[]
|
|
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E;
|
|
// System.SystemException
|
|
struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782;
|
|
// System.Text.Decoder
|
|
struct Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26;
|
|
// System.Text.Encoding
|
|
struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4;
|
|
// System.Text.StringBuilder
|
|
struct StringBuilder_t;
|
|
// System.Threading.SemaphoreSlim
|
|
struct SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048;
|
|
// System.Threading.Tasks.Task
|
|
struct Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2;
|
|
// System.Type
|
|
struct Type_t;
|
|
// System.Type[]
|
|
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F;
|
|
// System.UnhandledExceptionEventHandler
|
|
struct UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE;
|
|
// System.Uri
|
|
struct Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E;
|
|
// System.Uri/UriInfo
|
|
struct UriInfo_t9FCC6BD4EC1EA14D75209E6A35417057BF6EDC5E;
|
|
// System.UriParser
|
|
struct UriParser_t07C77D673CCE8D2DA253B8A7ACCB010147F1A4AC;
|
|
// System.Version
|
|
struct Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD;
|
|
// System.Void
|
|
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017;
|
|
|
|
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ArraySubsetEnumerator_tA39E27E02B80287A51F09D2875F1A3AF86768BDA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CLRLicenseContext_t16B4876D030AD05B4AEA1B65FDC49BC8E4BF64DC_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* COMException_t16C4698DE84A5ED9085B5545DEE0EDE38DB455DD_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CaseConversion_t193D8AE57418D335B7AD2FEE554BB2230D2F6491_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CharType_tC58073D5F1CD7F2BF4709E8CEBF07D1D6680159A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DesigntimeLicenseContext_tFBEF4E72A1E0E7F03A01D35ADFEE86A23F848AA1_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EditorBrowsableAttribute_tF3507DF0AB82A8D54C70D6F7FB4D363DF729D516_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EnumU5BU5D_t89BCD01877A8CDBF7729DE77C6185E8DC1432BCA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* FieldInfo_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* FileInfo_tF8C1D41E1ABDAC19BF4F76A491DD28DD8DBEE35C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Guid_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* HybridDictionary_t885F953154C575D3408650DCE5D0B76F1EE4E549_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IContainer_tA0D1065AEB21197BA9E1F139F6501B8ADCB66077_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IFormatter_tA0082CE1C045BFE2ACC344FDB54D086775620E7C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* INestedSite_t9A84D4AF79B470FD45AF5F23123DAB2C923DD6A3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IServiceProvider_t4EDB9848587638C3988434AA46E63D9EB85005EF_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ISite_t6804B48BC23ABB5F4141903F878589BCEF6097A2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ITypeResolutionService_t7F3892CAAFEF769D52D791845BBDC389788F3B26_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InheritanceLevel_t7A3CA26A46C1759F0D0D9BD78A7B298490C1DAD6_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InstallerTypeAttribute_t69E2B80148C986610B0F88883070C0BAD2A2B755_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InvariantComparer_tD6EE51C04FB8C0E087AB037E5690FA0E80ECD6DA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* LicFileLicense_t5AF4C870B7DF7EE91D6C0FA5DA1354763EF9E5FF_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* LicenseException_t68C548BE94D4AD7F82C5AD5E710AC18F50F30F9D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ListSortDescription_t70B03E24814E0475DA906045690FBE5010F28C75_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t0A40881AA73F2F363AD72BF7C074350FD9178030_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t534EACBABA93D935E71506BB9B9529485F1E0966_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* LocalAppContextSwitches_tCB6E2DAC291262684ED9423046B259A428F7B777_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Marshal_tC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* MethodInfo_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PropertyDescriptorEnumerator_t8DE08E0C89BAD17FE8FD71FD3159C80833CE2D9D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PropertyInfo_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RuntimeLicenseContext_t1367392EED5E28C90B5128BF01CA0B846120C641_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Site_t416D1B752B924BEC6C03A474D7DC852F255B3E5A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* SystemNetworkCredential_t99999F24C6F16257357D06725EC0365F1666875F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TargetInvocationException_t0DD35F6083E1D1E0509BF181A79C76D3339D89B8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ThreadAbortException_t0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* WebClient_t0BFD938623FF98FA7EEE0031AB9E8293DD295F6A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral06576556D1AD802F247CAD11AE748BE47B70CD9C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0710CDFE058770A2C63BCABE43EA10B4F09C9E7D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral08534F33C201A45017B502E90A800F1B708EBCB3;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0B917548CFF24F4241C9E3C21BCC5119F3F595D0;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0E28F221178DCB97D13E7229B8D31F66E01ABC3C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral140F86AAE51AB9E1CDA9B4254FE98A74EB54C1A1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral1640C6F7C189A2A9E9ACD7B6A396BFF1197DBF13;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral199C3F55FBB9E3A7D53A65CCECF350469513DBE3;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral1D71EEE7A68160309DDBFC2A9699C64D12F81362;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2E1B4C3FF8D191EF89F554BB34FE7DB2C87FAAC7;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral31A81EC93DB3740EE3984FC40E34A60B0412643D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral329C4DF77AF3D23BFD895D9936CCFDBC3D7B92F9;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral335C4C1E2F05B5297A56769D8DE75AD9C4874CD3;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral37568C8C884998B806216F91E2D53505DFC236EA;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral42CBDB3C55980503B68E044C73B768E2C1557D44;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral4FF447B8EF42CA51FA6FB287BED8D40F49BE58F1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral579233B2C479241523CBA5E3AF55D0F50F2D6414;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral57D0D110DFCECD43C3781F997F490B8F87031F95;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5CDE4416D7E2D28F1EFBAA532FB41875A243A6F7;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5D9785FB8069AF89133FFF27809C55684BD63A76;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral61D51E2BE21AD76207C622D3BA9A816B6893BA38;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral639DCAE81E8176EA6721A202074516B85370C71D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral6621FDDBEA1FF968B3027E17236C09DAC3BE1064;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral7C775AA84BF023AE1705F93FB623425023545F11;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral7D5560F4111919A58AF4813952AA2AF175ECB6F7;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral80446347EDE53CF9CE56B3D59FDA4B5C96DC25C4;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral83C8201E3677962B9D2E723C21BDD4D85E37D15E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8D1D87EB6F26A0B87235D69A36E4EBDC49AD6B05;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9D4CCA1595C30E43D23F14AEDF815846F837956A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA36A6718F54524D846894FB04B5B885B4E43E63B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralAB3652A72393E757FEBC7A5F9DDEF7BA27B08841;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralAF73CF697FE0F2A01C3D8863245929A47E6298F1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB307ADF1B0B79C1027DC2B4501FEAE90EC699F17;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB367C2E538CA44013496422D7C97790B8ED18FD7;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralBCE51B945638A1A120C6DF320712FCFC3DF9311D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralBD411C466E60E7EFDA3B59F4C705D4F22185FC74;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC3BEC6BCBC9B9F04E60FCB1D9C9C1A37F3E12E93;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC92C529E0731C57EFD7550480196484040B33C3E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC9937828CE00719332E80BEA0A26B7DDD25E1012;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD7DD8A4C7D37D1D6C29AC60910689BF845213FCC;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE2983156D9C4E535A873A17E2F61F2C65D9F6B2F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralEB207F1338668174ECFA1BEF59CCC40A7753E5CF;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralEEB95CB75BA932E39D33595B78E1EDA0D6082D2E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF11609D36BD0B298B9C7AA240604794B64555B8E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF3D842AD4321BB405CD53AE09751BDE8F39DCD27;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF3ECDEC6E621E966D0A2082A6ACA2BD6FA26BF74;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF7DC60C5838CF1796102355AA1DCED253918411D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFB843069E6F2F029B75B8E5312981AED516FED6C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFF3BA695D3EFEA937A1B1571C4E6461A8DACB151;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisEventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222_m0E7AA94FB6DD5B8865347D3C3E259BE6A3ABA6D8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisPropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D_m6B97C4B67DCAF845EB45FF4CE843D62748AEB500_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EnumConverter_ConvertFrom_m06D2FC9021EB3AF4BF131CE8E7268CC41A8994CF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EnumConverter_ConvertTo_mBDC59D2EE871592603097C069D557F4D9A79ABFB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m1329B7C0B94F946772328E972AB7B625547A0B16_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mDE073B3E712ABCE337D1F88E0AFA8345AEAB46E7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m93C6B874E2C040D376CD6D99EE7F776D66954F69_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventDescriptorCollection_Add_mC05DAE99E5D1B041F5755F71E6A2E114640F9779_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventDescriptorCollection_Clear_m72C4D0C9B92F9055A62EE6D86D9F3E86264405B5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventDescriptorCollection_Insert_mB3259BB95ADAA9B11B8A2171F5FAD03C52C40557_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventDescriptorCollection_RemoveAt_m3124EA86A586B8FE157E6D6F594E3DCA0752D6D1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventDescriptorCollection_Remove_m9F6BF67636B9406EEFB0E3589F4EB3BAF625447E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventDescriptorCollection_System_Collections_IList_set_Item_m12BD29BF86D1A0AC1255C811F7E9BE0D56DD48DD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventDescriptorCollection_get_Item_m861DB4DC0B594DC2BCB973266F49F77DB790689E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* GuidConverter_ConvertTo_m963EF915D82BCCEB03C349D03832F54C2F3C9F76_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InstanceDescriptor__ctor_m47D0A6167384EA496F0734E951DECD7EE576CAC4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* LicenseException_GetObjectData_mBF347F760742E24FEF4AB89830F1659CDF3CBF68_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* LicenseInteropHelper_AllocateAndValidateLicense_m4AA45D14D8587FD39C8B21F5F1E7F7A777E00692_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* LicenseManager_CreateWithContext_m8F60A7F76134A5C372414D6BDF31DA0247BED7E8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* LicenseManager_LockContext_m5F0E9C8C761FADD96A5CD8FAA7D0B25129DCF4B8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* LicenseManager_UnlockContext_mA71102EF4CC72A943687F72E01BFA4A18C30E903_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* LicenseManager_Validate_m0017E33865486A937AEBA6C769114708AACE3C9B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* LicenseManager_Validate_m1192AB4ACEA6467B8C6E03B56BFC74DF118D69C3_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* LicenseManager_set_CurrentContext_m74C48E5628CD103BA19F67257C52CC83E3B02B25_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ListSortDescriptionCollection_System_Collections_IList_Add_m3A38DB83F163633AB9D1F6BF3FAB06A24C42445F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ListSortDescriptionCollection_System_Collections_IList_Clear_mCECF86A6A9E3D09E5BE2E8ABDA332C3DE7EB8CB8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ListSortDescriptionCollection_System_Collections_IList_Insert_m7132AB7426E2F4446FA8606CA6E40BBE08D39CE7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ListSortDescriptionCollection_System_Collections_IList_RemoveAt_mFAA5828F1061D2ADD5A7B8778F3B1EB9ECDC28EF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ListSortDescriptionCollection_System_Collections_IList_Remove_m635C07E10C4A4F9006703807237CFF5168842128_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ListSortDescriptionCollection_System_Collections_IList_set_Item_mF9394B6E2F7EE2F28AAB931F4A0B014317745468_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ListSortDescriptionCollection_set_Item_m4DF56ECAD7A18A0636EBA380E955F87E9F18B87F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m06F8974F98146F609320A5E454D4F78A89DB8770_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m50C0D1F69B2EF31137658E2F052EBBAC7BF82771_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mE5E3B94F4609E4583BDAF08320027CDDBE7CBF79_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m2481F60E9BE18671D4F1B3244859DFA7641BFD53_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_ToArray_m053CEABF5E110E006609B778AB5547C8EE6B14F4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m35242122456E5BCFA71F1F4A2924B393DF228020_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mA7F9F92F641CEECFD9D8CFDC667568A05FFD27B4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mEDCB84C238744496A7F479DB6ABCA4D23AAC5542_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MaskedTextProvider_Add_m8F1C287569589396D343CED8C08C58EA36051C0D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MaskedTextProvider_InsertAt_m0E69353EE243CEDA39A1AA468BAE7B594481F471_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MaskedTextProvider_Replace_m6A5B4A8279F613EDDD7151CD2743BEB2B46BBEF4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MaskedTextProvider_Replace_m757A9B532D1ACFF87D34985568C352927A32CEEC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MaskedTextProvider_Set_mA9360F2798F7590F8E7E7619B862A582D7FAF734_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MaskedTextProvider__ctor_mC3DF68C53AB12952AA699D6C4F61C04F32A38175_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MaskedTextProvider_get_Item_m1F3216E154A48C11ADC0610BDA72707797F5400A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MaskedTextProvider_set_PasswordChar_mC5567EBFD36099DE535C5AA079D51FEB28607DCB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MaskedTextProvider_set_PromptChar_m890C34680D07AAB3AA03DC25B41FE877BCC9EBF9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MemberDescriptor_FilterAttributesIfNeeded_mDEFEACE930F7537A7DF7A530198F04C73301D591_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MemberDescriptor_GetInvocationTarget_m18F13C7801A10F9E0E1649E7356C49F2797BE543_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MemberDescriptor_GetInvokee_m79AB7BD9D5CAE598106C4D614023DBA589C39C32_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MemberDescriptor__ctor_m7DA97C2FCA1C99D7D7B31A89A908219E4A48DE7B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MultilineStringConverter_ConvertTo_m64E4CD7221F7DFFF883B0BAE4399A8D637DD5799_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NestedContainer_CreateSite_m7CDB5A2D618B5F3732EC12FF1ABBD8B807277E8B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NestedContainer_OnOwnerDisposed_mB5AF0D44A36003A28E275AD3E94247C9A8B62289_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NestedContainer__ctor_m888BC8BCC8E12B1E8F6E61BB9976B68A49530284_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NullableConverter_ConvertTo_mFE5CF810C6BE39B1A39E51B28875E8FDF0DAE363_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NullableConverter__ctor_m508F1DA74FE1B37ECA5BBA5B0E3A623480E4C564_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PropertyDescriptorCollection_Add_m4EC994159DE3EC1B05CCD9186099D7935FF3ED33_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PropertyDescriptorCollection_Clear_mAD94D5BF4918591FEE475B3FC15A64729F89A3DE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PropertyDescriptorCollection_Insert_m22DC9C6797AE20CFE2815DCB8C5A98A9A363BDCD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PropertyDescriptorCollection_RemoveAt_m988ED89DD8C6F2D254BD664991461869786977F0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PropertyDescriptorCollection_Remove_mCFFC999272C8C7B4C325B6D32A9DA2FC6DABC997_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PropertyDescriptorCollection_System_Collections_IDictionary_Add_m76AF67DE822D94A046E14382F1841C835EADA094_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PropertyDescriptorCollection_System_Collections_IDictionary_set_Item_m45799DA37784A9840E8BCA5FA746535CDD86D696_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PropertyDescriptorCollection_System_Collections_IList_set_Item_mC9C9476E42ADB9166CFD8FC7C7AA379EBB8F8E4B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PropertyDescriptorCollection_get_Item_mD0F537639842BDFC56F142C00A4041CF598D26C2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PropertyDescriptor_AddValueChanged_m91408A44CCF3C64DD47A6223D352E64F784EB538_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PropertyDescriptor_RemoveValueChanged_m198AA1C23F7EB535433044BE34E76F83C0EFB830_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* EnumU5BU5D_t89BCD01877A8CDBF7729DE77C6185E8DC1432BCA_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* FlagsAttribute_t7FB7BEFA2E1F2C6E3362A5996E82697475FFE867_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Guid_t_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* IDesigner_tB0DC62D61F9C80E298D483CDDD55D2E8E5C66AC2_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* INestedContainer_t894318C055DD1CA0F6F4DC3A056EDA3BC2FE075B_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* ISite_t6804B48BC23ABB5F4141903F878589BCEF6097A2_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* ITypeResolutionService_t7F3892CAAFEF769D52D791845BBDC389788F3B26_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* InheritanceLevel_t7A3CA26A46C1759F0D0D9BD78A7B298490C1DAD6_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* LicenseInteropHelper_t528682251600D62797521A8A3CCAD83BD1A47C0E_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* RuntimeObject_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* String_t_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Type_t_0_0_0_var;
|
|
IL2CPP_EXTERN_C const uint32_t CLRLicenseContext_GetSavedLicenseKey_mEFCE56DE7AAA765B34DE325258F207BEC178B38D_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t CLRLicenseContext_SetSavedLicenseKey_m18B78B15A9F65BA2C88852E34F9036040AF40C1A_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t CharDescriptor_ToString_m77BF47D26BBCA29730EBD50AA74D8FB45C3AFCAC_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t CheckoutException__cctor_mE8F08B0D0071F76CB275EC05022099FB2A049892_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t CredentialCache_get_DefaultCredentials_m669684689D1F69432F33D9B1E0ECF53080BB8CDCSystem2_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DelegatingTypeDescriptionProvider_get_Provider_mA048A519047ACF1FB8AB8604AC985038883688E7_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DescriptionAttribute_Equals_mD0C91C3BDA1081BC9ECD15B9D8770EC9B8CCCB51_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DescriptionAttribute_IsDefaultAttribute_m027507DDAF18946B4CB2FA3015FE73EBAC53D62D_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DescriptionAttribute__cctor_m70E48D1F612C3405E8C981060431512C0374C438_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DescriptionAttribute__ctor_m4813112E0C52509AA577C0A9A27A8C1D596CFF4E_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DesignOnlyAttribute_Equals_m076651DB673496528EE4BE929689DE99BEAB8B13_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DesignOnlyAttribute_IsDefaultAttribute_m6D873950CDF25510F438ED647346317CA7A647FF_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DesignOnlyAttribute__cctor_mB4872B8DD73AE15130706DEC6C80D66903C6D2C6_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DesignTimeVisibleAttribute_Equals_m7E683249570BAF44944921858927C5748D045270_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DesignTimeVisibleAttribute_GetHashCode_mF40EFCB7A2A65302B7C6803151123038933431AE_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DesignTimeVisibleAttribute_IsDefaultAttribute_mF5ABD1617E07A7A3D85A3053BFF9141344F4A287_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DesignTimeVisibleAttribute__cctor_m5A9CAF6E5B4E31A7004E522367C59DE6B6BC1FF2_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DesignerAttribute_Equals_m8F8B48C9F60766DE6DEB22CB0ED72F2B16C8C659_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DesignerAttribute__ctor_m7B2B57260828DEE66CEAA821E0A98900E15B810E_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DesignerAttribute__ctor_m80FC02525242A357EB829F1FF6E323C243571DF5_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DesignerAttribute__ctor_m9F223BB1B2B8A3D480FF9854F4775C2A101A443A_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DesignerAttribute__ctor_mAE160C4966497B95D77E839B6C56D42721DC4BA8_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DesignerCategoryAttribute_Equals_m7F9DFE7D18B55A1B0B68FBDA034F0FE9CA351CEB_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DesignerCategoryAttribute_IsDefaultAttribute_m661EFD9151FCBB2DD7BB3E54EB45E4AD26DB6F8F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DesignerCategoryAttribute__cctor_m5A20D3E6497B394223C44441C654C53794C5B5C4_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DesignerCategoryAttribute__ctor_mF489EBD57068DA5F3FE4DCA8300CB5A78CF34CE0_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DesignerSerializationVisibilityAttribute_Equals_mC35A99157702232DE7952D5A7275DA7204E0294F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DesignerSerializationVisibilityAttribute_IsDefaultAttribute_mA881E4CCC85E9269F90BCEA231073875C653605E_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DesignerSerializationVisibilityAttribute__cctor_mEB0BCCD12F1113C50BF1C0364EF2A99E41AD424A_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DesigntimeLicenseContextSerializer_Deserialize_m0B4A6B7AA6D2E9E30670A8EDF545C79420FE7DE0_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DesigntimeLicenseContext__ctor_mF2389DEF22E3FAE1E69F4F84F0CE6BD871AB0409_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DisplayNameAttribute_Equals_m7893F7A4E50D758CC46D15D3C7FE754471FA51AE_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DisplayNameAttribute_IsDefaultAttribute_m9835E20454EBC53D6F16D5B74B356EDA465D6FE2_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DisplayNameAttribute__cctor_m42C8D9A551BF01816245A28D6291C7F17E29910F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DisplayNameAttribute__ctor_mCA2BCC655453F00B75B3E6E072777304FA3599A9_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DoubleConverter_FromString_m0FA24E767CC4FFA9CFD7B7CE0D382A0CA8903980_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DoubleConverter_FromString_mDCD894BDC0A4DFB12E269CE8FF72B377691E4095_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DoubleConverter_FromString_mFC898691E3FC0C34E4BAB3643645E081F4FF3347_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DoubleConverter_ToString_m9C99B65F40B918222ED348FA19F750EC02DCD72B_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t DoubleConverter_get_TargetType_mE2AA85910CF4D5EE2857F5472FAD6F60E96FDA6E_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EditorAttribute_Equals_m532ECC69F7C9BE32A90FCBA6DB7059F33F34BAF2_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EditorAttribute__ctor_m0E590539E56DE135B904C5CA55A7DF0B5385A321_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EditorBrowsableAttribute_Equals_m6F5EF9CC298CBDC862CBCA5187379A79635726FA_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EnumConverter_CanConvertFrom_m283E54FE7BFCFC3CF022827F20678CE40698BAE2_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EnumConverter_CanConvertTo_m0BDD50EB0F3A7B3364DDD86650151F95C4D4965B_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EnumConverter_ConvertFrom_m06D2FC9021EB3AF4BF131CE8E7268CC41A8994CF_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EnumConverter_ConvertTo_mBDC59D2EE871592603097C069D557F4D9A79ABFB_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EnumConverter_GetStandardValuesExclusive_m62880BF09B41A7CE88E01AA29C4CFE44A736A178_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EnumConverter_GetStandardValues_m30FF1BC7361719D9A5EE7205F4F63B5CB1E95E15_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EnumConverter_IsValid_m5D3AB88EAC5C70586DC64D867F99139FB82FFD87_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EnumConverter__ctor_mBA8B2E210D061A3CF86950F6D797E911A2E3C774_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EnumConverter_get_Comparer_mBD0584D1B45E8ACFFF5E0FEE31F0983033B1EA2A_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EventDescriptorCollection_Add_mC05DAE99E5D1B041F5755F71E6A2E114640F9779_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EventDescriptorCollection_Clear_m72C4D0C9B92F9055A62EE6D86D9F3E86264405B5_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EventDescriptorCollection_EnsureEventsOwned_mF1722C2F3574DFE39C8509B62BA0013A68A1C8FB_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EventDescriptorCollection_EnsureSize_m025A1E96DE65403C6BB70BB95F9098E6572EF191_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EventDescriptorCollection_GetEnumerator_mEC07212EAD84EF5CD1DB03CFF3773669A030342F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EventDescriptorCollection_IndexOf_m2F0D99D9E5885CC7DB6133839635E9C806F6A385_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EventDescriptorCollection_Insert_mB3259BB95ADAA9B11B8A2171F5FAD03C52C40557_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EventDescriptorCollection_InternalSort_mAF3920AA7607A00C1B327539E007F9BBCD2FF13F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EventDescriptorCollection_InternalSort_mFC9324E5B172C969B8930B47ABE42FF8C2FEEC72_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EventDescriptorCollection_RemoveAt_m3124EA86A586B8FE157E6D6F594E3DCA0752D6D1_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EventDescriptorCollection_Remove_m9F6BF67636B9406EEFB0E3589F4EB3BAF625447E_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EventDescriptorCollection_Sort_m1B8F2EDD470081CCC8218A83CC5C3169E7AE4264_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EventDescriptorCollection_Sort_mA0D4ADE46CE36428428AE39B8A3EB86A8364233B_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EventDescriptorCollection_Sort_mA76B90B9FFAB3A35C048C30559792E13FB6CACCA_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EventDescriptorCollection_Sort_mCB21BF3537C01CD86670AFF9C2D2C03E0106D6CF_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EventDescriptorCollection_System_Collections_IList_Add_mA285053C7C5617586A25D1B3FD1DA834A484F9B9_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EventDescriptorCollection_System_Collections_IList_Contains_mF75078ECF8D88E161AA11A9AAE71543ECB3CEC26_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EventDescriptorCollection_System_Collections_IList_IndexOf_m48410473C90632946175F748D09BFAA506D0578E_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EventDescriptorCollection_System_Collections_IList_Insert_m0538802AE7EB66BDF621A96C23637A50738FD995_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EventDescriptorCollection_System_Collections_IList_Remove_m7416A79A4EA58351DBF9B8111C69A6CA8DD1DB05_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EventDescriptorCollection_System_Collections_IList_set_Item_m12BD29BF86D1A0AC1255C811F7E9BE0D56DD48DD_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EventDescriptorCollection__cctor_m027E184FD1333633CEFBEE18BA140A89E8DEEFB1_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EventDescriptorCollection__ctor_m39980AB8EA7F2F7B480F18E4EC36796C1A259CD7_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EventDescriptorCollection__ctor_m855A2D527708065CD2E181EBF15A7C743AB6FAC1_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EventDescriptorCollection_get_Item_m861DB4DC0B594DC2BCB973266F49F77DB790689E_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EventHandlerList_AddHandler_m7C93C7AF6FD41E4C41E444CCEC0E46C9F3F01A09_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t EventHandlerList_set_Item_m2B5E38C064A6761A2E50A30440297B71372007A9_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ExpandableObjectConverter_GetProperties_m674DA113DAF377614A8EB8BB5BE199BEF53B37C2_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ExpandableObjectConverter__ctor_mDFE2C6DF3E42BFEDD938757267F2A6E40B8FEB66_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ExtendedPropertyDescriptor__ctor_mB3DDF0467442FE4325BE2B83F8049DD543DAF389_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ExtendedPropertyDescriptor__ctor_mC8CA04D11B52520D581769FB316244C9EA5F7420_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ExtendedPropertyDescriptor_get_DisplayName_mC5690961D9E460239779D421E4C5636958426E84_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ExtendedPropertyDescriptor_get_IsReadOnly_m2F1AB64D3CB1ED3E62800A2F52CC94645382B42A_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ExtenderProvidedPropertyAttribute_Create_mB53BAA317F0E146F21F4508E51921C05459A756B_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ExtenderProvidedPropertyAttribute_Equals_m7FAB4FA6A11AAA6451F18CB7B06D001FD257EAAC_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ExtenderProvidedPropertyAttribute_IsDefaultAttribute_m2BEF7A86CD44FC50CE84586895CE253453A18573_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t GuidConverter_CanConvertFrom_m94EEA5AFA08B798A6D0622EB5FEE787F684C6B73_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t GuidConverter_CanConvertTo_m7AB12CCC8B2009BBAB9C686E449386DF0328844F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t GuidConverter_ConvertFrom_mDE3816BDF5CD3C2AB48E8CC54A74CC0AD5C20BC8_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t GuidConverter_ConvertTo_m963EF915D82BCCEB03C349D03832F54C2F3C9F76_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t GuidConverter__ctor_m057CFEA2B7918294B08BFB54B6A2C56B58F6CB0C_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t HandledEventArgs__ctor_m3B9A8B0FF620FC343E98B455D30C46B12239BA3A_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ImmutableObjectAttribute_Equals_mE070B68353CF7DBC6BC54B28ED31F691ACDF6394_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ImmutableObjectAttribute_IsDefaultAttribute_m8BAFE51FBB87BB878E58970259D3E7DB84538F55_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ImmutableObjectAttribute__cctor_m74A13A0DA32F80E45DF82DE6E9C70152C23CD4AA_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t InheritanceAttribute_Equals_m38E2B19AF81042403A7000B74456D502D42AC6D3_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t InheritanceAttribute_IsDefaultAttribute_mE8AA69F58F1F479AB2BAE7961B90B315EE8DA251_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t InheritanceAttribute_ToString_m5961E79A09AB27FEA67EEA36528102F82C5C0FAC_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t InheritanceAttribute__cctor_m2FE29F1B1C05923AFCEE6580D1DED768B981FD11_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t InheritanceAttribute__ctor_m8F26EE455BC5AC02A7F8B621CBF0ABA4CE16E161_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t InstallerTypeAttribute_Equals_m1F11A91BD9EC793C60C88EA1BF329948BC405878_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t InstallerTypeAttribute_get_InstallerType_m631BD3EDBE0683D8902DA08E04A79574770A5991_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t InstanceCreationEditor_get_Text_mD417DB3B84845D0CB83DFD107523F61B8D1EC2B0_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t InstanceDescriptor_Invoke_mFA1E52E0F4971ABC4432D30F7CF80304272355C0_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t InstanceDescriptor__ctor_m47D0A6167384EA496F0734E951DECD7EE576CAC4_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Int16Converter_FromString_m1D6EED88E7A619CF41C3F822EF148DC647521367_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Int16Converter_FromString_m5037FE57C286C9CAC9CDE3116D0F426EF88993FC_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Int16Converter_FromString_m68A48D7A88B2206AD366C3CD5824C90CB483A01B_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Int16Converter_ToString_m04E267BEB959CCCD5FF76F5221B4A82D3B90DE23_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Int16Converter_get_TargetType_m03C28B87C29C22B04B4D41C0F654612CADBBD144_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Int32Converter_FromString_m522F024625D49139F89AC5DE44EA3DCFDD490B55_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Int32Converter_FromString_m84E1A77746AAC084FF5A93E167D6ED83A772C704_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Int32Converter_FromString_m99A5C50498D91308BEA81C8E9E134608DD525799_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Int32Converter_ToString_m30AAD6DCBB228CBD58299310D39D80A44AEB7C6A_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Int32Converter_get_TargetType_mADD76E2E99D4B78ECB684AE296C6AD5E45840433_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Int64Converter_FromString_m40D208F2EDE6FFDFF6A897EDE71636290F759A61_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Int64Converter_FromString_m4B006B13E6B60FB3471055D2AACA19A20BC6C73A_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Int64Converter_FromString_m9537EF10EF270D889756264177A7AD71BAC3342C_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Int64Converter_ToString_m914E4B677BB3D12FEFF432696606554C7276093C_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Int64Converter_get_TargetType_mA6FF642BF7B48C93043B520B6F56598262324155_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t IntSecurity_UnsafeGetFullPath_m5B606F2B38235AF2F2A44E9C631BC029044173A8_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t InvalidEnumArgumentException__ctor_mE17CFFA48D7C085BF4828419A4BADBBB9BD8D32A_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicFileLicenseProvider_GetKey_mDAA23D7E746F1CA4E42A5A5BECD324296E3FF901_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicFileLicenseProvider_GetLicense_mE422FDDF8364AE19646004BA7DCE98B0378E41A3_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicFileLicense_Dispose_m91439D03DDE491C8C3F21E45A07843277DDF3A90_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseException_GetObjectData_mBF347F760742E24FEF4AB89830F1659CDF3CBF68_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseException__ctor_m1CE763695A858FDCCB8DA467E174BAB454319080_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseException__ctor_m1D5272BAFA96479089303E88C8A2D67F3D1564EF_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseException__ctor_mB94330021DE40D6A3E84D0C28A69A79CB1575A0C_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseInteropHelper_AllocateAndValidateLicense_m4AA45D14D8587FD39C8B21F5F1E7F7A777E00692_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseInteropHelper_GetCurrentContextInfo_m3CD1E60533E0488EE769B83D257E18959068CEE1_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseInteropHelper_GetLicInfo_mED813B812774441E6F66D514D1A2088C00616903_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseInteropHelper_RequestLicKey_m08C663B945E03A79BF3C785C2BF0293F5CE36EC9_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseInteropHelper_SaveKeyInCurrentContext_mFC9918F441A05CB1D8FF05C8CE3B47562E98E70A_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseManager_CacheProvider_m57C5C69DCA26A0F4DE6393569468CA42E0388807_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseManager_CreateWithContext_m30AF17D75C786F9E775F67A22E4B9A79291412DF_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseManager_CreateWithContext_m8F60A7F76134A5C372414D6BDF31DA0247BED7E8_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseManager_GetCachedNoLicenseProvider_m4CBF2FBA41AB146963BB10B971CD7B7641A7C71E_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseManager_GetCachedProviderInstance_mB227F49DE9F0309CBA097C14328021C7CA19AD52_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseManager_GetCachedProvider_m2DBCEBBD847008191D4F2D559F13284B94B9BF5F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseManager_GetLicenseInteropHelperType_m6D7B101583EC4AF696E18C8FBB98CA33C2486C99_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseManager_IsLicensed_m9E3019950A2EC4585B5791974594732CFAC6AAA3_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseManager_IsValid_m54F014B188955A11271F52CDFB45293B4A816D7F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseManager_IsValid_mF0821E32ECF353F331288E52B78E0A60D15F69D0_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseManager_LockContext_m5F0E9C8C761FADD96A5CD8FAA7D0B25129DCF4B8_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseManager_UnlockContext_mA71102EF4CC72A943687F72E01BFA4A18C30E903_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseManager_ValidateInternalRecursive_m3840EF4F43E4A99AC93287DB3D77ACE0D6EAF56F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseManager_ValidateInternal_m6FDC9AF38B256326CD5FEB70F21CEE0C73B2FBD0_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseManager_Validate_m0017E33865486A937AEBA6C769114708AACE3C9B_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseManager_Validate_m1192AB4ACEA6467B8C6E03B56BFC74DF118D69C3_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseManager__cctor_mFA5AEDEDE5B54596DD66F05C7C580EF52E95D57C_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseManager_get_CurrentContext_m1D8C3D3DF397BF157E8679AF9E51A114BC4255A9_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseManager_get_UsageMode_m484105D3C9631EB6E370471DC209AB459C499B15_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseManager_set_CurrentContext_m74C48E5628CD103BA19F67257C52CC83E3B02B25_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseProviderAttribute_Equals_m2CA489DAE25E1A117B66C7869946A016E9F96DA2_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseProviderAttribute__cctor_mD9671C7B3D292F1CCA72E8BA0A10030D943FACDD_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseProviderAttribute_get_LicenseProvider_mEECC153EF3491BFE42A37DE3A564BDF277D974DB_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LicenseProviderAttribute_get_TypeId_mDCF023DEDA43A8A8953A4A9275964623A74D1F23_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ListBindableAttribute_Equals_m5BCF218B037B7A2FA7466CFEAFC4DDA566FED470_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ListBindableAttribute_IsDefaultAttribute_m87AB6D5B90193B322552632B77B632ACF7359418_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ListBindableAttribute__cctor_m3CBFCBB3795EF1D6F8E6F079B62B0A124F2B5596_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ListChangedEventArgs__ctor_m4233B600D91A937AE548C66737944FDA0EA9901D_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ListChangedEventArgs__ctor_m937F90BECBDCD6A4EE477FD9EEEBFDCAF30718E3_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ListSortDescriptionCollection_Contains_mDEBBB44C266E23CD39051C9477F3FECBC706F6D6_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ListSortDescriptionCollection_IndexOf_m99E8A75F30A5E7A660A79B534CC0F4414EE62B73_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ListSortDescriptionCollection_System_Collections_IList_Add_m3A38DB83F163633AB9D1F6BF3FAB06A24C42445F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ListSortDescriptionCollection_System_Collections_IList_Clear_mCECF86A6A9E3D09E5BE2E8ABDA332C3DE7EB8CB8_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ListSortDescriptionCollection_System_Collections_IList_Insert_m7132AB7426E2F4446FA8606CA6E40BBE08D39CE7_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ListSortDescriptionCollection_System_Collections_IList_RemoveAt_mFAA5828F1061D2ADD5A7B8778F3B1EB9ECDC28EF_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ListSortDescriptionCollection_System_Collections_IList_Remove_m635C07E10C4A4F9006703807237CFF5168842128_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ListSortDescriptionCollection_System_Collections_IList_set_Item_mF9394B6E2F7EE2F28AAB931F4A0B014317745468_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ListSortDescriptionCollection__ctor_m054FA84FA836E18693586F54FA42411E649CF775_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ListSortDescriptionCollection__ctor_m8FCD3F74937A403BF6DE3BFAAA3B5A33588F40EA_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ListSortDescriptionCollection_get_Item_m8E2FD41D5BF275189626745662B8F39BCCA4FB3C_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ListSortDescriptionCollection_set_Item_m4DF56ECAD7A18A0636EBA380E955F87E9F18B87F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LocalizableAttribute_Equals_m88AE95F8FC963DCCF52981746093A880C460D9FB_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LocalizableAttribute_IsDefaultAttribute_m069BA41473A724A2536454EC0A88EC7B94D0EC80_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LocalizableAttribute__cctor_m61BD76F2BC71406AB5DF5EF927D43532B6408361_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LookupBindingPropertiesAttribute_Equals_mCF641B3E92EFF104509598AEABE1DDB3B3C29D46_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t LookupBindingPropertiesAttribute__cctor_mB4BD6BFB9C81EF436C0065BB5002D3B5A01CB0F1_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MarshalByValueComponent_Dispose_m4387E36F301775EDEA83BF2AB25E3EC5D037B6E3_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MarshalByValueComponent_Dispose_mA9ACB1CEC7384D82584354080E87A75112017AB5_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MarshalByValueComponent_GetService_mFB66F66A61E603988424CF9FD89C4F7568A2611B_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MarshalByValueComponent_ToString_m622A67EA96EFAE5D898CFC7CFB26CE4861395C97_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MarshalByValueComponent__cctor_mD07CA38525FF69AA599B31C887E434505323E0DC_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MarshalByValueComponent_add_Disposed_mE153B11AE1F1F4E8E19C354556C31B1267D2D7C0_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MarshalByValueComponent_get_Container_m68A2BF43881A669729CD1126C53EFCBC09A6B07B_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MarshalByValueComponent_get_DesignMode_m58C6BB7ADA57F2E56622A783D2CAE7229264DD56_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MarshalByValueComponent_get_Events_mA41018766AC3C752652DDD522170E0F00A2FFFF9_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MarshalByValueComponent_remove_Disposed_m4D6BA678CBC50EFC771A3E03AE11C0124F8A124A_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_Add_m8F1C287569589396D343CED8C08C58EA36051C0D_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_Clone_m771B5778492B23D22215A0083BDAEFD41A0F2634_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_FindEditPositionInRange_mA60304FD868B13FB2C61A180EB3CE75C74BBBA9B_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_FindPositionInRange_m1DF8097A69310EE8E18809DF4A0A8F92D0494FDF_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_FindUnassignedEditPositionInRange_mF33E0E8947AD60E18E4BCC0FF3A4058884E3DC0F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_Initialize_mFA46F8C5B80302A9E759236BDEC5FEA126ACB858_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_InsertAtInt_mE839ED14D8FF954E6FD42A420C3B2710E1F9A2B8_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_InsertAt_m0E69353EE243CEDA39A1AA468BAE7B594481F471_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_IsAlphanumeric_m43616E92043E75DDF9E6D83962B05EA6801134CA_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_IsAvailablePosition_m1B5B56F2F530B3D311342111DA7CD60467C14255_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_IsEditPosition_mB28533BEB0EC65EF5690343556B61D93BFF7B04D_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_IsPrintableChar_m1DBB3F4195B64CD712FF8D108CC61513358031EC_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_IsValidInputChar_m29D269997A442703EF154BDE00B7118026886938_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_IsValidMaskChar_m71BFCE23254FF5B99D5690EE08B43AFD35C35FBC_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_IsValidPasswordChar_mB81DAF880124B6191F488B7F9A6D0747B8174FB5_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_RemoveAtInt_mEB337BF8D99A98C7B0C1DD6B36AD1ECC3537BADC_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_Replace_m6A5B4A8279F613EDDD7151CD2743BEB2B46BBEF4_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_Replace_m757A9B532D1ACFF87D34985568C352927A32CEEC_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_ResetChar_m98F29F5594B201C92E45A7F7DB8B373A791D7974_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_SetChar_m73B70F3714708050D8A2D543741150DC4AD0A16D_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_SetChar_mE6C13D1ABEF1568CD78927D157788B6D3025F218_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_Set_mA9360F2798F7590F8E7E7619B862A582D7FAF734_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_TestChar_mAC74996A38215989049A56253C5D0267D8C9CED1_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_TestEscapeChar_mC839F205DD58646AB41D153330BE9FF7565D3C22_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_TestEscapeChar_mE807731E4B72B215DBD3B6276D819B606924071C_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_ToDisplayString_m2C8697BD22E6E59230920EB9A8FB28C5A56217F0_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_ToString_m1B57C3CDFEDC3A1FC383F3E4AB649631A84FA3EB_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider__cctor_mE62664DE9040FDDCCC9A0EB15135979A453D964D_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider__ctor_mC3DF68C53AB12952AA699D6C4F61C04F32A38175_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_get_AllowPromptAsInput_mF973B54A49DDA82ED811F80E17A34E4BEA223371_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_get_AsciiOnly_m21E1B443153C205B73EA324268FF2F453CB3B399_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_get_EditPositions_mF9E494BBA7EAC6AF1CBEFC85D61157AE143E10A8_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_get_IncludeLiterals_m37C703CB7096946E740EFF2627E44EE4B81BDBBB_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_get_IncludePrompt_mCFBC56EB7B5CB5517B0ECAD8D0683B2AFC73F8C8_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_get_Item_m1F3216E154A48C11ADC0610BDA72707797F5400A_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_get_ResetOnPrompt_m7DAEE4DE22E656C711D453F84240D96C9BF8EC5D_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_get_ResetOnSpace_m40890F87C8C68801526F427555BD40B74B5A19CE_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_get_SkipLiterals_m410CDF3FF094DDE966BA6F3665F696F53FD60312_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_set_IncludeLiterals_m88D834651ADFBA6B6153C8D172E045A464F8A752_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_set_IncludePrompt_mA93583841E0E1EA4F382801967F83B731735BEE8_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_set_IsPassword_m5BE0D07C30938B31BC293B5C8F11FB0DB9B64F33_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_set_PasswordChar_mC5567EBFD36099DE535C5AA079D51FEB28607DCB_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_set_PromptChar_m890C34680D07AAB3AA03DC25B41FE877BCC9EBF9_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_set_ResetOnPrompt_m78FF27069210D9E5E1E18546AAB874F62C09DC50_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_set_ResetOnSpace_mB173AB1A0E702AB372552BDB373C3CB2B9A19530_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MaskedTextProvider_set_SkipLiterals_m02619ADF4557203B3BA14CC13144AF65DC13D91A_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MemberDescriptor_CheckAttributesValid_mEAFC02C4EAED626FCDC291F1512DD0E602E232BE_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MemberDescriptor_CreateAttributeCollection_m579C3F75B24CD1373AE01189CD3CB9CBC6C49E66_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MemberDescriptor_Equals_m66818127B5F93EE67144CB305127BA3377601E54_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MemberDescriptor_FillAttributes_mA33C5FFD1DE2BA560E335B6549E60A229B9F773B_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MemberDescriptor_FilterAttributesIfNeeded_mDEFEACE930F7537A7DF7A530198F04C73301D591_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MemberDescriptor_GetInvocationTarget_m18F13C7801A10F9E0E1649E7356C49F2797BE543_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MemberDescriptor_GetInvokee_m79AB7BD9D5CAE598106C4D614023DBA589C39C32_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MemberDescriptor_GetSite_mCB20B3C6E8E9E4018655CB861FBC408F4468FFD6_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MemberDescriptor__ctor_m7DA97C2FCA1C99D7D7B31A89A908219E4A48DE7B_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MemberDescriptor__ctor_mDDA60D0BB2448D6607AB2F2C353A8C30CFABE0A3_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MemberDescriptor__ctor_mFD23579925A3F34CB985856C22D3CD13BB49D41B_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MemberDescriptor_get_Category_m25D9C09A26AF999DB0E27F967E31228E3C51BA00_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MemberDescriptor_get_Description_m5505BC9F156EA609B1D60097A66D49AA6120472F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MemberDescriptor_get_DesignTimeOnly_m6BCDA286F416E39BC45DC2BA830A7E49B7A8DE00_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MemberDescriptor_get_DisplayName_m985D97ED7EAEC1A7DA3524E50FB0CF9B3704B746_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MemberDescriptor_get_IsBrowsable_mF7CF97530C533D11E610BB19E076EF030C5B0EBA_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MemberDescriptor_get_Name_mFADCC43480F88C3749FA2B82EAECA54F79D848BB_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MergablePropertyAttribute_Equals_m0E8667E4F66C176A6C92BF6330515E08DBD29FA4_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MergablePropertyAttribute_IsDefaultAttribute_mECD4D73534A24B8600A6E9F6CB4B0CB6DCEF24BE_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MergablePropertyAttribute__cctor_mA927726347FDB5EFDB109998BF0B30BFB3585710_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MultilineStringConverter_ConvertTo_m64E4CD7221F7DFFF883B0BAE4399A8D637DD5799_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t MultilineStringConverter__ctor_m4A6E3882CD02215AF2B52B5E98B41F67E48B72D8_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t NestedContainer_CreateSite_m7CDB5A2D618B5F3732EC12FF1ABBD8B807277E8B_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t NestedContainer_Dispose_m661E234FD90A46BFE6305D6730A489312E93553A_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t NestedContainer_GetService_m997226CE4565DF20BC7AACA0B6768D7642ADA6EC_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t NestedContainer__ctor_m888BC8BCC8E12B1E8F6E61BB9976B68A49530284_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t NestedContainer_get_OwnerName_m0A01269EAD2C24E23FFA0E844887F68D63CE8021_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t NotifyParentPropertyAttribute_Equals_m655AFCDB294A675C2CF84F9C4A97268C9B11D7C2_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t NotifyParentPropertyAttribute_IsDefaultAttribute_m2D15C7AD325F09068FBB710C80299DE2DCB7CD21_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t NotifyParentPropertyAttribute__cctor_m14AB628A125F7E8973497199B6DB493B909849DD_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t NullableConverter_CanConvertFrom_m248A954CEE87B4098FADA66CF035910E75C22DB9_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t NullableConverter_CanConvertTo_m971F73488C57414C8463065CB0CB0285D642519A_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t NullableConverter_ConvertFrom_mB26A50D9B33247B7B6F52BF3C2091DB587296A29_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t NullableConverter_ConvertTo_mFE5CF810C6BE39B1A39E51B28875E8FDF0DAE363_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t NullableConverter_GetStandardValues_mE04D07ED245061BA6DF9A639DBB37B2ABBDA0E99_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t NullableConverter__ctor_m508F1DA74FE1B37ECA5BBA5B0E3A623480E4C564_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ParenthesizePropertyNameAttribute_Equals_mB533CCB46611DF90A4039138EB1683211EF0C792_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ParenthesizePropertyNameAttribute_IsDefaultAttribute_mA7B411468B20863CE3A0D0F3D87C5CCDE9629D9E_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ParenthesizePropertyNameAttribute__cctor_m98BF99553ECFBC946EFEEB2C1471DC075C775FC1_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PasswordPropertyTextAttribute_Equals_mF5CE53286BA6FBE00FFDF413A74565DCB7C83077_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PasswordPropertyTextAttribute_IsDefaultAttribute_m60425A42A167FC9B4ABE15E3CCC73FA588043D0D_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PasswordPropertyTextAttribute__cctor_mAD84EAFCCE349F72B880DE4C8129F2271EAE5AD8_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t ProgressChangedEventArgs__ctor_m23538440E7BD972E09D2D504C679137FDD62DFED_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyChangedEventArgs__ctor_mBC582C76F42CDEE455B350302FFDF687D135A9E2_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyChangingEventArgs__ctor_m63441B844FDEAB3DFCEA1EB4DBFC8C6E971982E8_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection_Add_m4EC994159DE3EC1B05CCD9186099D7935FF3ED33_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection_Clear_mAD94D5BF4918591FEE475B3FC15A64729F89A3DE_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection_EnsurePropsOwned_mA7CDF7318480D4512B76733D3E1DF9EAE6C378A1_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection_EnsureSize_mCCF9502C5BE2212F88FDC6507E598175CF1298BA_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection_Find_m5B0293378066DA6E64B89658470B49EC2767E3B8_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection_GetEnumerator_mFAB322230D6F91D8B5076910CF9D6107DBC768BD_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection_IndexOf_mFBCAE0B916F2BF733D494020EBA7EFEEEFC20A45_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection_Insert_m22DC9C6797AE20CFE2815DCB8C5A98A9A363BDCD_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection_InternalSort_m05765A385A5F324219F60E3880193230BCCE8863_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection_InternalSort_m5BEF1BE7A393A601E9E404644C037EB7552362C6_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection_RemoveAt_m988ED89DD8C6F2D254BD664991461869786977F0_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection_Remove_mCFFC999272C8C7B4C325B6D32A9DA2FC6DABC997_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection_Sort_m1EE8AE69D539F93F80DC64F33DF486159E973FF6_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection_Sort_m5D5FDFB82DC0E6343F47B64B185E70D8A349F974_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection_Sort_m94911D9C6B8B6D56A156CC2508B673F360448E01_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection_Sort_mCA6419FA5C73054D08EC62386E64C864D26C392A_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection_System_Collections_IDictionary_Add_m76AF67DE822D94A046E14382F1841C835EADA094_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection_System_Collections_IDictionary_Contains_m2BF92AB5B0E6DE71F06C21D6A79F40EEB66DE53A_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection_System_Collections_IDictionary_GetEnumerator_m8BAA6008671D58327735A8CAF9F5916EAFA4B2F2_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection_System_Collections_IDictionary_Remove_mEE3E78216CC8C1192BEF19A0610D5345808B1D76_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection_System_Collections_IDictionary_get_Item_m55B7B06FCFD64E0549A25F402E880015FA39237D_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection_System_Collections_IDictionary_get_Keys_mB81D8CBB4D00C6C8588A02D1DAB7936E7A41DD48_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection_System_Collections_IDictionary_get_Values_m8753BBF5531A5623FDEB4BB961BCB0CBFC69EF24_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection_System_Collections_IDictionary_set_Item_m45799DA37784A9840E8BCA5FA746535CDD86D696_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection_System_Collections_IList_Add_m7805DEADF351C068D3397DB5C6D84C639452B874_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection_System_Collections_IList_Contains_m480A973ED000ECA6482E3BE2970009A09ED545FA_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection_System_Collections_IList_IndexOf_m5784A077E0E4C9936D1DD476E58374AD27063CF7_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection_System_Collections_IList_Insert_m8B356017EBDC3A70B466B4787016840F89074F0D_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection_System_Collections_IList_Remove_m23C0000AD3979585B0659FEBCDE0B3EFF1207FEC_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection_System_Collections_IList_set_Item_mC9C9476E42ADB9166CFD8FC7C7AA379EBB8F8E4B_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection__cctor_m5DE8BDE158CD72E98E2ADD9DB3151F931CC9FB0F_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection__ctor_m0BD142D7B2CAD889393CC69ADA2233984768DABB_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection__ctor_m132BE5B53DC73850841F2AB9A6633F4626C538BC_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptorCollection_get_Item_mD0F537639842BDFC56F142C00A4041CF598D26C2_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptor_AddValueChanged_m91408A44CCF3C64DD47A6223D352E64F784EB538_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptor_CreateInstance_m7032F927CEC5E78B323B439DAB07E3D813C1DD90_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptor_Equals_m080009C26475A3CBEE1291AC5F1BDFBF4EDA6597_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptor_GetChildProperties_m76C214E26712802716CE2F36E25C67E6C153B1CC_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptor_GetEditor_m7F7888E095A7AEA72AC5E0362B4F5FFE9F3ACF23_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptor_GetInvocationTarget_m33C99B5B6A6670C495EF184164EC8D549EB6D601_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptor_GetTypeFromName_mBD141AA5AB01356D6A8664AE961F72B7637AB7BE_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptor_GetValueChangedHandler_m1574AF743125BF015F9DDB577AE0559684063000_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptor_OnValueChanged_m78CADBEDC8B71F0BDBA91762452C418391C0B592_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptor_RemoveValueChanged_m198AA1C23F7EB535433044BE34E76F83C0EFB830_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptor_get_Converter_mDD0766C5E0AE4928EBBE501C7CB9D7041E9C79C1_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptor_get_IsLocalizable_m41BE585C4C7DD08DD3D83493FEEFE4DC8DE61277_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t PropertyDescriptor_get_SerializationVisibility_mD4B0B47C340EC1D3DD1B947EB3DC19D4D8DC4ADD_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t RuntimeLicenseContext_CaseInsensitiveManifestResourceStreamLookup_mE5D3133B975E0F2927C890DA7CBECD6A84D9C60D_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t RuntimeLicenseContext_GetLocalPath_mE9FE2C16545D4E437A8D3CAA6D8D20F995D3E972_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t RuntimeLicenseContext_GetSavedLicenseKey_m7C7989E9FC4CCBD2EB8671ED4312E1643934C20D_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t RuntimeLicenseContext_OpenRead_mCE557ABB1B8D5358ED3FA35B11CCD8A181CEA5F0_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t RuntimeLicenseContext__cctor_m9999FB104BCFD74FA63DBB9630F76B246686B922_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Site_GetService_mDFE2374B8394CEA41428F491712439BB1E3D0E4B_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Site_get_DesignMode_m289AFF7B5EB56D725AF45E42184974D373ADBF56_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t Site_get_FullName_m13D39B257CDEBC4519F72636E311E8E6439DBC6E_MetadataUsageId;
|
|
IL2CPP_EXTERN_C const uint32_t TypeDescriptor_get_MetadataVersion_m70C215D1B15DCBD67B58127EB0E6D7E6F5D020DCSystem2_MetadataUsageId;
|
|
struct Assembly_t_marshaled_com;
|
|
struct Assembly_t_marshaled_pinvoke;
|
|
struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_com;
|
|
struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_pinvoke;
|
|
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com;
|
|
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke;
|
|
struct Delegate_t_marshaled_com;
|
|
struct Delegate_t_marshaled_pinvoke;
|
|
struct Exception_t_marshaled_com;
|
|
struct Exception_t_marshaled_pinvoke;
|
|
|
|
struct AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17;
|
|
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
|
|
struct EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4;
|
|
struct IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031;
|
|
struct ListSortDescriptionU5BU5D_t852C81EC628A962BC76EF59B86ADF79FA8C00A76;
|
|
struct PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F;
|
|
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
|
|
struct EnumU5BU5D_t89BCD01877A8CDBF7729DE77C6185E8DC1432BCA;
|
|
struct CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31;
|
|
struct Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F;
|
|
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
|
|
struct AssemblyU5BU5D_t90BF014AA048450526A42C74F9583341A138DE58;
|
|
struct FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE;
|
|
struct ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694;
|
|
struct ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA;
|
|
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E;
|
|
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F;
|
|
|
|
IL2CPP_EXTERN_C_BEGIN
|
|
IL2CPP_EXTERN_C_END
|
|
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
|
|
// System.Object
|
|
|
|
|
|
// System.AppDomainSetup
|
|
struct AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.String System.AppDomainSetup::application_base
|
|
String_t* ___application_base_0;
|
|
// System.String System.AppDomainSetup::application_name
|
|
String_t* ___application_name_1;
|
|
// System.String System.AppDomainSetup::cache_path
|
|
String_t* ___cache_path_2;
|
|
// System.String System.AppDomainSetup::configuration_file
|
|
String_t* ___configuration_file_3;
|
|
// System.String System.AppDomainSetup::dynamic_base
|
|
String_t* ___dynamic_base_4;
|
|
// System.String System.AppDomainSetup::license_file
|
|
String_t* ___license_file_5;
|
|
// System.String System.AppDomainSetup::private_bin_path
|
|
String_t* ___private_bin_path_6;
|
|
// System.String System.AppDomainSetup::private_bin_path_probe
|
|
String_t* ___private_bin_path_probe_7;
|
|
// System.String System.AppDomainSetup::shadow_copy_directories
|
|
String_t* ___shadow_copy_directories_8;
|
|
// System.String System.AppDomainSetup::shadow_copy_files
|
|
String_t* ___shadow_copy_files_9;
|
|
// System.Boolean System.AppDomainSetup::publisher_policy
|
|
bool ___publisher_policy_10;
|
|
// System.Boolean System.AppDomainSetup::path_changed
|
|
bool ___path_changed_11;
|
|
// System.Int32 System.AppDomainSetup::loader_optimization
|
|
int32_t ___loader_optimization_12;
|
|
// System.Boolean System.AppDomainSetup::disallow_binding_redirects
|
|
bool ___disallow_binding_redirects_13;
|
|
// System.Boolean System.AppDomainSetup::disallow_code_downloads
|
|
bool ___disallow_code_downloads_14;
|
|
// System.Object System.AppDomainSetup::_activationArguments
|
|
RuntimeObject * ____activationArguments_15;
|
|
// System.Object System.AppDomainSetup::domain_initializer
|
|
RuntimeObject * ___domain_initializer_16;
|
|
// System.Object System.AppDomainSetup::application_trust
|
|
RuntimeObject * ___application_trust_17;
|
|
// System.String[] System.AppDomainSetup::domain_initializer_args
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___domain_initializer_args_18;
|
|
// System.Boolean System.AppDomainSetup::disallow_appbase_probe
|
|
bool ___disallow_appbase_probe_19;
|
|
// System.Byte[] System.AppDomainSetup::configuration_bytes
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___configuration_bytes_20;
|
|
// System.Byte[] System.AppDomainSetup::serialized_non_primitives
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___serialized_non_primitives_21;
|
|
// System.String System.AppDomainSetup::<TargetFrameworkName>k__BackingField
|
|
String_t* ___U3CTargetFrameworkNameU3Ek__BackingField_22;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_application_base_0() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___application_base_0)); }
|
|
inline String_t* get_application_base_0() const { return ___application_base_0; }
|
|
inline String_t** get_address_of_application_base_0() { return &___application_base_0; }
|
|
inline void set_application_base_0(String_t* value)
|
|
{
|
|
___application_base_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___application_base_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_application_name_1() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___application_name_1)); }
|
|
inline String_t* get_application_name_1() const { return ___application_name_1; }
|
|
inline String_t** get_address_of_application_name_1() { return &___application_name_1; }
|
|
inline void set_application_name_1(String_t* value)
|
|
{
|
|
___application_name_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___application_name_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_cache_path_2() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___cache_path_2)); }
|
|
inline String_t* get_cache_path_2() const { return ___cache_path_2; }
|
|
inline String_t** get_address_of_cache_path_2() { return &___cache_path_2; }
|
|
inline void set_cache_path_2(String_t* value)
|
|
{
|
|
___cache_path_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___cache_path_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_configuration_file_3() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___configuration_file_3)); }
|
|
inline String_t* get_configuration_file_3() const { return ___configuration_file_3; }
|
|
inline String_t** get_address_of_configuration_file_3() { return &___configuration_file_3; }
|
|
inline void set_configuration_file_3(String_t* value)
|
|
{
|
|
___configuration_file_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___configuration_file_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_dynamic_base_4() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___dynamic_base_4)); }
|
|
inline String_t* get_dynamic_base_4() const { return ___dynamic_base_4; }
|
|
inline String_t** get_address_of_dynamic_base_4() { return &___dynamic_base_4; }
|
|
inline void set_dynamic_base_4(String_t* value)
|
|
{
|
|
___dynamic_base_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___dynamic_base_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_license_file_5() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___license_file_5)); }
|
|
inline String_t* get_license_file_5() const { return ___license_file_5; }
|
|
inline String_t** get_address_of_license_file_5() { return &___license_file_5; }
|
|
inline void set_license_file_5(String_t* value)
|
|
{
|
|
___license_file_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___license_file_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_private_bin_path_6() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___private_bin_path_6)); }
|
|
inline String_t* get_private_bin_path_6() const { return ___private_bin_path_6; }
|
|
inline String_t** get_address_of_private_bin_path_6() { return &___private_bin_path_6; }
|
|
inline void set_private_bin_path_6(String_t* value)
|
|
{
|
|
___private_bin_path_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___private_bin_path_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_private_bin_path_probe_7() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___private_bin_path_probe_7)); }
|
|
inline String_t* get_private_bin_path_probe_7() const { return ___private_bin_path_probe_7; }
|
|
inline String_t** get_address_of_private_bin_path_probe_7() { return &___private_bin_path_probe_7; }
|
|
inline void set_private_bin_path_probe_7(String_t* value)
|
|
{
|
|
___private_bin_path_probe_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___private_bin_path_probe_7), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_shadow_copy_directories_8() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___shadow_copy_directories_8)); }
|
|
inline String_t* get_shadow_copy_directories_8() const { return ___shadow_copy_directories_8; }
|
|
inline String_t** get_address_of_shadow_copy_directories_8() { return &___shadow_copy_directories_8; }
|
|
inline void set_shadow_copy_directories_8(String_t* value)
|
|
{
|
|
___shadow_copy_directories_8 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___shadow_copy_directories_8), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_shadow_copy_files_9() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___shadow_copy_files_9)); }
|
|
inline String_t* get_shadow_copy_files_9() const { return ___shadow_copy_files_9; }
|
|
inline String_t** get_address_of_shadow_copy_files_9() { return &___shadow_copy_files_9; }
|
|
inline void set_shadow_copy_files_9(String_t* value)
|
|
{
|
|
___shadow_copy_files_9 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___shadow_copy_files_9), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_publisher_policy_10() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___publisher_policy_10)); }
|
|
inline bool get_publisher_policy_10() const { return ___publisher_policy_10; }
|
|
inline bool* get_address_of_publisher_policy_10() { return &___publisher_policy_10; }
|
|
inline void set_publisher_policy_10(bool value)
|
|
{
|
|
___publisher_policy_10 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_path_changed_11() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___path_changed_11)); }
|
|
inline bool get_path_changed_11() const { return ___path_changed_11; }
|
|
inline bool* get_address_of_path_changed_11() { return &___path_changed_11; }
|
|
inline void set_path_changed_11(bool value)
|
|
{
|
|
___path_changed_11 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_loader_optimization_12() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___loader_optimization_12)); }
|
|
inline int32_t get_loader_optimization_12() const { return ___loader_optimization_12; }
|
|
inline int32_t* get_address_of_loader_optimization_12() { return &___loader_optimization_12; }
|
|
inline void set_loader_optimization_12(int32_t value)
|
|
{
|
|
___loader_optimization_12 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_disallow_binding_redirects_13() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___disallow_binding_redirects_13)); }
|
|
inline bool get_disallow_binding_redirects_13() const { return ___disallow_binding_redirects_13; }
|
|
inline bool* get_address_of_disallow_binding_redirects_13() { return &___disallow_binding_redirects_13; }
|
|
inline void set_disallow_binding_redirects_13(bool value)
|
|
{
|
|
___disallow_binding_redirects_13 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_disallow_code_downloads_14() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___disallow_code_downloads_14)); }
|
|
inline bool get_disallow_code_downloads_14() const { return ___disallow_code_downloads_14; }
|
|
inline bool* get_address_of_disallow_code_downloads_14() { return &___disallow_code_downloads_14; }
|
|
inline void set_disallow_code_downloads_14(bool value)
|
|
{
|
|
___disallow_code_downloads_14 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__activationArguments_15() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ____activationArguments_15)); }
|
|
inline RuntimeObject * get__activationArguments_15() const { return ____activationArguments_15; }
|
|
inline RuntimeObject ** get_address_of__activationArguments_15() { return &____activationArguments_15; }
|
|
inline void set__activationArguments_15(RuntimeObject * value)
|
|
{
|
|
____activationArguments_15 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____activationArguments_15), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_domain_initializer_16() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___domain_initializer_16)); }
|
|
inline RuntimeObject * get_domain_initializer_16() const { return ___domain_initializer_16; }
|
|
inline RuntimeObject ** get_address_of_domain_initializer_16() { return &___domain_initializer_16; }
|
|
inline void set_domain_initializer_16(RuntimeObject * value)
|
|
{
|
|
___domain_initializer_16 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___domain_initializer_16), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_application_trust_17() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___application_trust_17)); }
|
|
inline RuntimeObject * get_application_trust_17() const { return ___application_trust_17; }
|
|
inline RuntimeObject ** get_address_of_application_trust_17() { return &___application_trust_17; }
|
|
inline void set_application_trust_17(RuntimeObject * value)
|
|
{
|
|
___application_trust_17 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___application_trust_17), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_domain_initializer_args_18() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___domain_initializer_args_18)); }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_domain_initializer_args_18() const { return ___domain_initializer_args_18; }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_domain_initializer_args_18() { return &___domain_initializer_args_18; }
|
|
inline void set_domain_initializer_args_18(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
|
|
{
|
|
___domain_initializer_args_18 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___domain_initializer_args_18), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_disallow_appbase_probe_19() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___disallow_appbase_probe_19)); }
|
|
inline bool get_disallow_appbase_probe_19() const { return ___disallow_appbase_probe_19; }
|
|
inline bool* get_address_of_disallow_appbase_probe_19() { return &___disallow_appbase_probe_19; }
|
|
inline void set_disallow_appbase_probe_19(bool value)
|
|
{
|
|
___disallow_appbase_probe_19 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_configuration_bytes_20() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___configuration_bytes_20)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_configuration_bytes_20() const { return ___configuration_bytes_20; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_configuration_bytes_20() { return &___configuration_bytes_20; }
|
|
inline void set_configuration_bytes_20(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___configuration_bytes_20 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___configuration_bytes_20), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_serialized_non_primitives_21() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___serialized_non_primitives_21)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_serialized_non_primitives_21() const { return ___serialized_non_primitives_21; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_serialized_non_primitives_21() { return &___serialized_non_primitives_21; }
|
|
inline void set_serialized_non_primitives_21(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___serialized_non_primitives_21 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___serialized_non_primitives_21), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_U3CTargetFrameworkNameU3Ek__BackingField_22() { return static_cast<int32_t>(offsetof(AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306, ___U3CTargetFrameworkNameU3Ek__BackingField_22)); }
|
|
inline String_t* get_U3CTargetFrameworkNameU3Ek__BackingField_22() const { return ___U3CTargetFrameworkNameU3Ek__BackingField_22; }
|
|
inline String_t** get_address_of_U3CTargetFrameworkNameU3Ek__BackingField_22() { return &___U3CTargetFrameworkNameU3Ek__BackingField_22; }
|
|
inline void set_U3CTargetFrameworkNameU3Ek__BackingField_22(String_t* value)
|
|
{
|
|
___U3CTargetFrameworkNameU3Ek__BackingField_22 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___U3CTargetFrameworkNameU3Ek__BackingField_22), (void*)value);
|
|
}
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.AppDomainSetup
|
|
struct AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306_marshaled_pinvoke
|
|
{
|
|
char* ___application_base_0;
|
|
char* ___application_name_1;
|
|
char* ___cache_path_2;
|
|
char* ___configuration_file_3;
|
|
char* ___dynamic_base_4;
|
|
char* ___license_file_5;
|
|
char* ___private_bin_path_6;
|
|
char* ___private_bin_path_probe_7;
|
|
char* ___shadow_copy_directories_8;
|
|
char* ___shadow_copy_files_9;
|
|
int32_t ___publisher_policy_10;
|
|
int32_t ___path_changed_11;
|
|
int32_t ___loader_optimization_12;
|
|
int32_t ___disallow_binding_redirects_13;
|
|
int32_t ___disallow_code_downloads_14;
|
|
Il2CppIUnknown* ____activationArguments_15;
|
|
Il2CppIUnknown* ___domain_initializer_16;
|
|
Il2CppIUnknown* ___application_trust_17;
|
|
char** ___domain_initializer_args_18;
|
|
int32_t ___disallow_appbase_probe_19;
|
|
Il2CppSafeArray/*NONE*/* ___configuration_bytes_20;
|
|
Il2CppSafeArray/*NONE*/* ___serialized_non_primitives_21;
|
|
char* ___U3CTargetFrameworkNameU3Ek__BackingField_22;
|
|
};
|
|
// Native definition for COM marshalling of System.AppDomainSetup
|
|
struct AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306_marshaled_com
|
|
{
|
|
Il2CppChar* ___application_base_0;
|
|
Il2CppChar* ___application_name_1;
|
|
Il2CppChar* ___cache_path_2;
|
|
Il2CppChar* ___configuration_file_3;
|
|
Il2CppChar* ___dynamic_base_4;
|
|
Il2CppChar* ___license_file_5;
|
|
Il2CppChar* ___private_bin_path_6;
|
|
Il2CppChar* ___private_bin_path_probe_7;
|
|
Il2CppChar* ___shadow_copy_directories_8;
|
|
Il2CppChar* ___shadow_copy_files_9;
|
|
int32_t ___publisher_policy_10;
|
|
int32_t ___path_changed_11;
|
|
int32_t ___loader_optimization_12;
|
|
int32_t ___disallow_binding_redirects_13;
|
|
int32_t ___disallow_code_downloads_14;
|
|
Il2CppIUnknown* ____activationArguments_15;
|
|
Il2CppIUnknown* ___domain_initializer_16;
|
|
Il2CppIUnknown* ___application_trust_17;
|
|
Il2CppChar** ___domain_initializer_args_18;
|
|
int32_t ___disallow_appbase_probe_19;
|
|
Il2CppSafeArray/*NONE*/* ___configuration_bytes_20;
|
|
Il2CppSafeArray/*NONE*/* ___serialized_non_primitives_21;
|
|
Il2CppChar* ___U3CTargetFrameworkNameU3Ek__BackingField_22;
|
|
};
|
|
struct Il2CppArrayBounds;
|
|
|
|
// System.Array
|
|
|
|
|
|
// System.Attribute
|
|
struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 : public RuntimeObject
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.Collections.ArrayList
|
|
struct ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Object[] System.Collections.ArrayList::_items
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____items_0;
|
|
// System.Int32 System.Collections.ArrayList::_size
|
|
int32_t ____size_1;
|
|
// System.Int32 System.Collections.ArrayList::_version
|
|
int32_t ____version_2;
|
|
// System.Object System.Collections.ArrayList::_syncRoot
|
|
RuntimeObject * ____syncRoot_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__items_0() { return static_cast<int32_t>(offsetof(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4, ____items_0)); }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__items_0() const { return ____items_0; }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__items_0() { return &____items_0; }
|
|
inline void set__items_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
|
|
{
|
|
____items_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____items_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__size_1() { return static_cast<int32_t>(offsetof(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4, ____size_1)); }
|
|
inline int32_t get__size_1() const { return ____size_1; }
|
|
inline int32_t* get_address_of__size_1() { return &____size_1; }
|
|
inline void set__size_1(int32_t value)
|
|
{
|
|
____size_1 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4, ____version_2)); }
|
|
inline int32_t get__version_2() const { return ____version_2; }
|
|
inline int32_t* get_address_of__version_2() { return &____version_2; }
|
|
inline void set__version_2(int32_t value)
|
|
{
|
|
____version_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__syncRoot_3() { return static_cast<int32_t>(offsetof(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4, ____syncRoot_3)); }
|
|
inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; }
|
|
inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; }
|
|
inline void set__syncRoot_3(RuntimeObject * value)
|
|
{
|
|
____syncRoot_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_3), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_StaticFields
|
|
{
|
|
public:
|
|
// System.Object[] System.Collections.ArrayList::emptyArray
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___emptyArray_4;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_emptyArray_4() { return static_cast<int32_t>(offsetof(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_StaticFields, ___emptyArray_4)); }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_emptyArray_4() const { return ___emptyArray_4; }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_emptyArray_4() { return &___emptyArray_4; }
|
|
inline void set_emptyArray_4(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
|
|
{
|
|
___emptyArray_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___emptyArray_4), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Collections.Generic.List`1<System.ComponentModel.MaskedTextProvider_CharDescriptor>
|
|
struct List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 : public RuntimeObject
|
|
{
|
|
public:
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
CharDescriptorU5BU5D_tBD0DFC4BA13FD2351CDD1C9B59E7720AB4736EC2* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject * ____syncRoot_4;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t534EACBABA93D935E71506BB9B9529485F1E0966, ____items_1)); }
|
|
inline CharDescriptorU5BU5D_tBD0DFC4BA13FD2351CDD1C9B59E7720AB4736EC2* get__items_1() const { return ____items_1; }
|
|
inline CharDescriptorU5BU5D_tBD0DFC4BA13FD2351CDD1C9B59E7720AB4736EC2** get_address_of__items_1() { return &____items_1; }
|
|
inline void set__items_1(CharDescriptorU5BU5D_tBD0DFC4BA13FD2351CDD1C9B59E7720AB4736EC2* value)
|
|
{
|
|
____items_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t534EACBABA93D935E71506BB9B9529485F1E0966, ____size_2)); }
|
|
inline int32_t get__size_2() const { return ____size_2; }
|
|
inline int32_t* get_address_of__size_2() { return &____size_2; }
|
|
inline void set__size_2(int32_t value)
|
|
{
|
|
____size_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t534EACBABA93D935E71506BB9B9529485F1E0966, ____version_3)); }
|
|
inline int32_t get__version_3() const { return ____version_3; }
|
|
inline int32_t* get_address_of__version_3() { return &____version_3; }
|
|
inline void set__version_3(int32_t value)
|
|
{
|
|
____version_3 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t534EACBABA93D935E71506BB9B9529485F1E0966, ____syncRoot_4)); }
|
|
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
|
|
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
|
|
inline void set__syncRoot_4(RuntimeObject * value)
|
|
{
|
|
____syncRoot_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct List_1_t534EACBABA93D935E71506BB9B9529485F1E0966_StaticFields
|
|
{
|
|
public:
|
|
// T[] System.Collections.Generic.List`1::_emptyArray
|
|
CharDescriptorU5BU5D_tBD0DFC4BA13FD2351CDD1C9B59E7720AB4736EC2* ____emptyArray_5;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t534EACBABA93D935E71506BB9B9529485F1E0966_StaticFields, ____emptyArray_5)); }
|
|
inline CharDescriptorU5BU5D_tBD0DFC4BA13FD2351CDD1C9B59E7720AB4736EC2* get__emptyArray_5() const { return ____emptyArray_5; }
|
|
inline CharDescriptorU5BU5D_tBD0DFC4BA13FD2351CDD1C9B59E7720AB4736EC2** get_address_of__emptyArray_5() { return &____emptyArray_5; }
|
|
inline void set__emptyArray_5(CharDescriptorU5BU5D_tBD0DFC4BA13FD2351CDD1C9B59E7720AB4736EC2* value)
|
|
{
|
|
____emptyArray_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Collections.Generic.List`1<System.Enum>
|
|
struct List_1_t0A40881AA73F2F363AD72BF7C074350FD9178030 : public RuntimeObject
|
|
{
|
|
public:
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
EnumU5BU5D_t89BCD01877A8CDBF7729DE77C6185E8DC1432BCA* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject * ____syncRoot_4;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t0A40881AA73F2F363AD72BF7C074350FD9178030, ____items_1)); }
|
|
inline EnumU5BU5D_t89BCD01877A8CDBF7729DE77C6185E8DC1432BCA* get__items_1() const { return ____items_1; }
|
|
inline EnumU5BU5D_t89BCD01877A8CDBF7729DE77C6185E8DC1432BCA** get_address_of__items_1() { return &____items_1; }
|
|
inline void set__items_1(EnumU5BU5D_t89BCD01877A8CDBF7729DE77C6185E8DC1432BCA* value)
|
|
{
|
|
____items_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t0A40881AA73F2F363AD72BF7C074350FD9178030, ____size_2)); }
|
|
inline int32_t get__size_2() const { return ____size_2; }
|
|
inline int32_t* get_address_of__size_2() { return &____size_2; }
|
|
inline void set__size_2(int32_t value)
|
|
{
|
|
____size_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t0A40881AA73F2F363AD72BF7C074350FD9178030, ____version_3)); }
|
|
inline int32_t get__version_3() const { return ____version_3; }
|
|
inline int32_t* get_address_of__version_3() { return &____version_3; }
|
|
inline void set__version_3(int32_t value)
|
|
{
|
|
____version_3 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t0A40881AA73F2F363AD72BF7C074350FD9178030, ____syncRoot_4)); }
|
|
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
|
|
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
|
|
inline void set__syncRoot_4(RuntimeObject * value)
|
|
{
|
|
____syncRoot_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct List_1_t0A40881AA73F2F363AD72BF7C074350FD9178030_StaticFields
|
|
{
|
|
public:
|
|
// T[] System.Collections.Generic.List`1::_emptyArray
|
|
EnumU5BU5D_t89BCD01877A8CDBF7729DE77C6185E8DC1432BCA* ____emptyArray_5;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t0A40881AA73F2F363AD72BF7C074350FD9178030_StaticFields, ____emptyArray_5)); }
|
|
inline EnumU5BU5D_t89BCD01877A8CDBF7729DE77C6185E8DC1432BCA* get__emptyArray_5() const { return ____emptyArray_5; }
|
|
inline EnumU5BU5D_t89BCD01877A8CDBF7729DE77C6185E8DC1432BCA** get_address_of__emptyArray_5() { return &____emptyArray_5; }
|
|
inline void set__emptyArray_5(EnumU5BU5D_t89BCD01877A8CDBF7729DE77C6185E8DC1432BCA* value)
|
|
{
|
|
____emptyArray_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Collections.Generic.List`1<System.Int32>
|
|
struct List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 : public RuntimeObject
|
|
{
|
|
public:
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject * ____syncRoot_4;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226, ____items_1)); }
|
|
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get__items_1() const { return ____items_1; }
|
|
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of__items_1() { return &____items_1; }
|
|
inline void set__items_1(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
|
|
{
|
|
____items_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226, ____size_2)); }
|
|
inline int32_t get__size_2() const { return ____size_2; }
|
|
inline int32_t* get_address_of__size_2() { return &____size_2; }
|
|
inline void set__size_2(int32_t value)
|
|
{
|
|
____size_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226, ____version_3)); }
|
|
inline int32_t get__version_3() const { return ____version_3; }
|
|
inline int32_t* get_address_of__version_3() { return &____version_3; }
|
|
inline void set__version_3(int32_t value)
|
|
{
|
|
____version_3 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226, ____syncRoot_4)); }
|
|
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
|
|
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
|
|
inline void set__syncRoot_4(RuntimeObject * value)
|
|
{
|
|
____syncRoot_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226_StaticFields
|
|
{
|
|
public:
|
|
// T[] System.Collections.Generic.List`1::_emptyArray
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ____emptyArray_5;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226_StaticFields, ____emptyArray_5)); }
|
|
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get__emptyArray_5() const { return ____emptyArray_5; }
|
|
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of__emptyArray_5() { return &____emptyArray_5; }
|
|
inline void set__emptyArray_5(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
|
|
{
|
|
____emptyArray_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Collections.Generic.List`1<System.Object>
|
|
struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D : public RuntimeObject
|
|
{
|
|
public:
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject * ____syncRoot_4;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____items_1)); }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__items_1() const { return ____items_1; }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__items_1() { return &____items_1; }
|
|
inline void set__items_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
|
|
{
|
|
____items_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____size_2)); }
|
|
inline int32_t get__size_2() const { return ____size_2; }
|
|
inline int32_t* get_address_of__size_2() { return &____size_2; }
|
|
inline void set__size_2(int32_t value)
|
|
{
|
|
____size_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____version_3)); }
|
|
inline int32_t get__version_3() const { return ____version_3; }
|
|
inline int32_t* get_address_of__version_3() { return &____version_3; }
|
|
inline void set__version_3(int32_t value)
|
|
{
|
|
____version_3 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____syncRoot_4)); }
|
|
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
|
|
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
|
|
inline void set__syncRoot_4(RuntimeObject * value)
|
|
{
|
|
____syncRoot_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_StaticFields
|
|
{
|
|
public:
|
|
// T[] System.Collections.Generic.List`1::_emptyArray
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____emptyArray_5;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_StaticFields, ____emptyArray_5)); }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__emptyArray_5() const { return ____emptyArray_5; }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__emptyArray_5() { return &____emptyArray_5; }
|
|
inline void set__emptyArray_5(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
|
|
{
|
|
____emptyArray_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Collections.Specialized.HybridDictionary
|
|
struct HybridDictionary_t885F953154C575D3408650DCE5D0B76F1EE4E549 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Collections.Specialized.ListDictionary System.Collections.Specialized.HybridDictionary::list
|
|
ListDictionary_tE68C8A5DB37EB10F3AA958AB3BF214346402074D * ___list_0;
|
|
// System.Collections.Hashtable System.Collections.Specialized.HybridDictionary::hashtable
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___hashtable_1;
|
|
// System.Boolean System.Collections.Specialized.HybridDictionary::caseInsensitive
|
|
bool ___caseInsensitive_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(HybridDictionary_t885F953154C575D3408650DCE5D0B76F1EE4E549, ___list_0)); }
|
|
inline ListDictionary_tE68C8A5DB37EB10F3AA958AB3BF214346402074D * get_list_0() const { return ___list_0; }
|
|
inline ListDictionary_tE68C8A5DB37EB10F3AA958AB3BF214346402074D ** get_address_of_list_0() { return &___list_0; }
|
|
inline void set_list_0(ListDictionary_tE68C8A5DB37EB10F3AA958AB3BF214346402074D * value)
|
|
{
|
|
___list_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_hashtable_1() { return static_cast<int32_t>(offsetof(HybridDictionary_t885F953154C575D3408650DCE5D0B76F1EE4E549, ___hashtable_1)); }
|
|
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_hashtable_1() const { return ___hashtable_1; }
|
|
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_hashtable_1() { return &___hashtable_1; }
|
|
inline void set_hashtable_1(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
|
|
{
|
|
___hashtable_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___hashtable_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_caseInsensitive_2() { return static_cast<int32_t>(offsetof(HybridDictionary_t885F953154C575D3408650DCE5D0B76F1EE4E549, ___caseInsensitive_2)); }
|
|
inline bool get_caseInsensitive_2() const { return ___caseInsensitive_2; }
|
|
inline bool* get_address_of_caseInsensitive_2() { return &___caseInsensitive_2; }
|
|
inline void set_caseInsensitive_2(bool value)
|
|
{
|
|
___caseInsensitive_2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.ArraySubsetEnumerator
|
|
struct ArraySubsetEnumerator_tA39E27E02B80287A51F09D2875F1A3AF86768BDA : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Array System.ComponentModel.ArraySubsetEnumerator::array
|
|
RuntimeArray * ___array_0;
|
|
// System.Int32 System.ComponentModel.ArraySubsetEnumerator::total
|
|
int32_t ___total_1;
|
|
// System.Int32 System.ComponentModel.ArraySubsetEnumerator::current
|
|
int32_t ___current_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_array_0() { return static_cast<int32_t>(offsetof(ArraySubsetEnumerator_tA39E27E02B80287A51F09D2875F1A3AF86768BDA, ___array_0)); }
|
|
inline RuntimeArray * get_array_0() const { return ___array_0; }
|
|
inline RuntimeArray ** get_address_of_array_0() { return &___array_0; }
|
|
inline void set_array_0(RuntimeArray * value)
|
|
{
|
|
___array_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___array_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_total_1() { return static_cast<int32_t>(offsetof(ArraySubsetEnumerator_tA39E27E02B80287A51F09D2875F1A3AF86768BDA, ___total_1)); }
|
|
inline int32_t get_total_1() const { return ___total_1; }
|
|
inline int32_t* get_address_of_total_1() { return &___total_1; }
|
|
inline void set_total_1(int32_t value)
|
|
{
|
|
___total_1 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_current_2() { return static_cast<int32_t>(offsetof(ArraySubsetEnumerator_tA39E27E02B80287A51F09D2875F1A3AF86768BDA, ___current_2)); }
|
|
inline int32_t get_current_2() const { return ___current_2; }
|
|
inline int32_t* get_address_of_current_2() { return &___current_2; }
|
|
inline void set_current_2(int32_t value)
|
|
{
|
|
___current_2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.AttributeCollection
|
|
struct AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Attribute[] System.ComponentModel.AttributeCollection::_attributes
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ____attributes_2;
|
|
// System.ComponentModel.AttributeCollection_AttributeEntry[] System.ComponentModel.AttributeCollection::_foundAttributeTypes
|
|
AttributeEntryU5BU5D_t82EF07E3984B106E346A6B35336772424C0FCB5A* ____foundAttributeTypes_5;
|
|
// System.Int32 System.ComponentModel.AttributeCollection::_index
|
|
int32_t ____index_6;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__attributes_2() { return static_cast<int32_t>(offsetof(AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE, ____attributes_2)); }
|
|
inline AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* get__attributes_2() const { return ____attributes_2; }
|
|
inline AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17** get_address_of__attributes_2() { return &____attributes_2; }
|
|
inline void set__attributes_2(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* value)
|
|
{
|
|
____attributes_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____attributes_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__foundAttributeTypes_5() { return static_cast<int32_t>(offsetof(AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE, ____foundAttributeTypes_5)); }
|
|
inline AttributeEntryU5BU5D_t82EF07E3984B106E346A6B35336772424C0FCB5A* get__foundAttributeTypes_5() const { return ____foundAttributeTypes_5; }
|
|
inline AttributeEntryU5BU5D_t82EF07E3984B106E346A6B35336772424C0FCB5A** get_address_of__foundAttributeTypes_5() { return &____foundAttributeTypes_5; }
|
|
inline void set__foundAttributeTypes_5(AttributeEntryU5BU5D_t82EF07E3984B106E346A6B35336772424C0FCB5A* value)
|
|
{
|
|
____foundAttributeTypes_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____foundAttributeTypes_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__index_6() { return static_cast<int32_t>(offsetof(AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE, ____index_6)); }
|
|
inline int32_t get__index_6() const { return ____index_6; }
|
|
inline int32_t* get_address_of__index_6() { return &____index_6; }
|
|
inline void set__index_6(int32_t value)
|
|
{
|
|
____index_6 = value;
|
|
}
|
|
};
|
|
|
|
struct AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE_StaticFields
|
|
{
|
|
public:
|
|
// System.ComponentModel.AttributeCollection System.ComponentModel.AttributeCollection::Empty
|
|
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * ___Empty_0;
|
|
// System.Collections.Hashtable System.ComponentModel.AttributeCollection::_defaultAttributes
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ____defaultAttributes_1;
|
|
// System.Object System.ComponentModel.AttributeCollection::internalSyncObject
|
|
RuntimeObject * ___internalSyncObject_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE_StaticFields, ___Empty_0)); }
|
|
inline AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * get_Empty_0() const { return ___Empty_0; }
|
|
inline AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE ** get_address_of_Empty_0() { return &___Empty_0; }
|
|
inline void set_Empty_0(AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * value)
|
|
{
|
|
___Empty_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Empty_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__defaultAttributes_1() { return static_cast<int32_t>(offsetof(AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE_StaticFields, ____defaultAttributes_1)); }
|
|
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get__defaultAttributes_1() const { return ____defaultAttributes_1; }
|
|
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of__defaultAttributes_1() { return &____defaultAttributes_1; }
|
|
inline void set__defaultAttributes_1(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
|
|
{
|
|
____defaultAttributes_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____defaultAttributes_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_internalSyncObject_3() { return static_cast<int32_t>(offsetof(AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE_StaticFields, ___internalSyncObject_3)); }
|
|
inline RuntimeObject * get_internalSyncObject_3() const { return ___internalSyncObject_3; }
|
|
inline RuntimeObject ** get_address_of_internalSyncObject_3() { return &___internalSyncObject_3; }
|
|
inline void set_internalSyncObject_3(RuntimeObject * value)
|
|
{
|
|
___internalSyncObject_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___internalSyncObject_3), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.Container
|
|
struct Container_tC98CD69632DEA16FC061454A770CC7D11FFFEEF1 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.ComponentModel.ISite[] System.ComponentModel.Container::sites
|
|
ISiteU5BU5D_t26A1BA57EE8683FC59C3BDD15CA00512F5A520A8* ___sites_0;
|
|
// System.Int32 System.ComponentModel.Container::siteCount
|
|
int32_t ___siteCount_1;
|
|
// System.ComponentModel.ComponentCollection System.ComponentModel.Container::components
|
|
ComponentCollection_tCA923631B2E55E6A831F9D5CF5231113764CB895 * ___components_2;
|
|
// System.ComponentModel.ContainerFilterService System.ComponentModel.Container::filter
|
|
ContainerFilterService_t4E2FD208B28F83EA50EBC66500B7DCA29D38FA19 * ___filter_3;
|
|
// System.Boolean System.ComponentModel.Container::checkedFilter
|
|
bool ___checkedFilter_4;
|
|
// System.Object System.ComponentModel.Container::syncObj
|
|
RuntimeObject * ___syncObj_5;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_sites_0() { return static_cast<int32_t>(offsetof(Container_tC98CD69632DEA16FC061454A770CC7D11FFFEEF1, ___sites_0)); }
|
|
inline ISiteU5BU5D_t26A1BA57EE8683FC59C3BDD15CA00512F5A520A8* get_sites_0() const { return ___sites_0; }
|
|
inline ISiteU5BU5D_t26A1BA57EE8683FC59C3BDD15CA00512F5A520A8** get_address_of_sites_0() { return &___sites_0; }
|
|
inline void set_sites_0(ISiteU5BU5D_t26A1BA57EE8683FC59C3BDD15CA00512F5A520A8* value)
|
|
{
|
|
___sites_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___sites_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_siteCount_1() { return static_cast<int32_t>(offsetof(Container_tC98CD69632DEA16FC061454A770CC7D11FFFEEF1, ___siteCount_1)); }
|
|
inline int32_t get_siteCount_1() const { return ___siteCount_1; }
|
|
inline int32_t* get_address_of_siteCount_1() { return &___siteCount_1; }
|
|
inline void set_siteCount_1(int32_t value)
|
|
{
|
|
___siteCount_1 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_components_2() { return static_cast<int32_t>(offsetof(Container_tC98CD69632DEA16FC061454A770CC7D11FFFEEF1, ___components_2)); }
|
|
inline ComponentCollection_tCA923631B2E55E6A831F9D5CF5231113764CB895 * get_components_2() const { return ___components_2; }
|
|
inline ComponentCollection_tCA923631B2E55E6A831F9D5CF5231113764CB895 ** get_address_of_components_2() { return &___components_2; }
|
|
inline void set_components_2(ComponentCollection_tCA923631B2E55E6A831F9D5CF5231113764CB895 * value)
|
|
{
|
|
___components_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___components_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_filter_3() { return static_cast<int32_t>(offsetof(Container_tC98CD69632DEA16FC061454A770CC7D11FFFEEF1, ___filter_3)); }
|
|
inline ContainerFilterService_t4E2FD208B28F83EA50EBC66500B7DCA29D38FA19 * get_filter_3() const { return ___filter_3; }
|
|
inline ContainerFilterService_t4E2FD208B28F83EA50EBC66500B7DCA29D38FA19 ** get_address_of_filter_3() { return &___filter_3; }
|
|
inline void set_filter_3(ContainerFilterService_t4E2FD208B28F83EA50EBC66500B7DCA29D38FA19 * value)
|
|
{
|
|
___filter_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___filter_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_checkedFilter_4() { return static_cast<int32_t>(offsetof(Container_tC98CD69632DEA16FC061454A770CC7D11FFFEEF1, ___checkedFilter_4)); }
|
|
inline bool get_checkedFilter_4() const { return ___checkedFilter_4; }
|
|
inline bool* get_address_of_checkedFilter_4() { return &___checkedFilter_4; }
|
|
inline void set_checkedFilter_4(bool value)
|
|
{
|
|
___checkedFilter_4 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_syncObj_5() { return static_cast<int32_t>(offsetof(Container_tC98CD69632DEA16FC061454A770CC7D11FFFEEF1, ___syncObj_5)); }
|
|
inline RuntimeObject * get_syncObj_5() const { return ___syncObj_5; }
|
|
inline RuntimeObject ** get_address_of_syncObj_5() { return &___syncObj_5; }
|
|
inline void set_syncObj_5(RuntimeObject * value)
|
|
{
|
|
___syncObj_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___syncObj_5), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.Design.DesigntimeLicenseContextSerializer
|
|
struct DesigntimeLicenseContextSerializer_t613DD72FEBA8711EB6154D704B01A70E11201B5D : public RuntimeObject
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ComponentModel.Design.Serialization.InstanceDescriptor
|
|
struct InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Reflection.MemberInfo System.ComponentModel.Design.Serialization.InstanceDescriptor::member
|
|
MemberInfo_t * ___member_0;
|
|
// System.Collections.ICollection System.ComponentModel.Design.Serialization.InstanceDescriptor::arguments
|
|
RuntimeObject* ___arguments_1;
|
|
// System.Boolean System.ComponentModel.Design.Serialization.InstanceDescriptor::isComplete
|
|
bool ___isComplete_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_member_0() { return static_cast<int32_t>(offsetof(InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6, ___member_0)); }
|
|
inline MemberInfo_t * get_member_0() const { return ___member_0; }
|
|
inline MemberInfo_t ** get_address_of_member_0() { return &___member_0; }
|
|
inline void set_member_0(MemberInfo_t * value)
|
|
{
|
|
___member_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___member_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_arguments_1() { return static_cast<int32_t>(offsetof(InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6, ___arguments_1)); }
|
|
inline RuntimeObject* get_arguments_1() const { return ___arguments_1; }
|
|
inline RuntimeObject** get_address_of_arguments_1() { return &___arguments_1; }
|
|
inline void set_arguments_1(RuntimeObject* value)
|
|
{
|
|
___arguments_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___arguments_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_isComplete_2() { return static_cast<int32_t>(offsetof(InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6, ___isComplete_2)); }
|
|
inline bool get_isComplete_2() const { return ___isComplete_2; }
|
|
inline bool* get_address_of_isComplete_2() { return &___isComplete_2; }
|
|
inline void set_isComplete_2(bool value)
|
|
{
|
|
___isComplete_2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.EventDescriptorCollection
|
|
struct EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.ComponentModel.EventDescriptor[] System.ComponentModel.EventDescriptorCollection::events
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* ___events_0;
|
|
// System.String[] System.ComponentModel.EventDescriptorCollection::namedSort
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___namedSort_1;
|
|
// System.Collections.IComparer System.ComponentModel.EventDescriptorCollection::comparer
|
|
RuntimeObject* ___comparer_2;
|
|
// System.Boolean System.ComponentModel.EventDescriptorCollection::eventsOwned
|
|
bool ___eventsOwned_3;
|
|
// System.Boolean System.ComponentModel.EventDescriptorCollection::needSort
|
|
bool ___needSort_4;
|
|
// System.Int32 System.ComponentModel.EventDescriptorCollection::eventCount
|
|
int32_t ___eventCount_5;
|
|
// System.Boolean System.ComponentModel.EventDescriptorCollection::readOnly
|
|
bool ___readOnly_6;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_events_0() { return static_cast<int32_t>(offsetof(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37, ___events_0)); }
|
|
inline EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* get_events_0() const { return ___events_0; }
|
|
inline EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4** get_address_of_events_0() { return &___events_0; }
|
|
inline void set_events_0(EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* value)
|
|
{
|
|
___events_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___events_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_namedSort_1() { return static_cast<int32_t>(offsetof(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37, ___namedSort_1)); }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_namedSort_1() const { return ___namedSort_1; }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_namedSort_1() { return &___namedSort_1; }
|
|
inline void set_namedSort_1(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
|
|
{
|
|
___namedSort_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___namedSort_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_comparer_2() { return static_cast<int32_t>(offsetof(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37, ___comparer_2)); }
|
|
inline RuntimeObject* get_comparer_2() const { return ___comparer_2; }
|
|
inline RuntimeObject** get_address_of_comparer_2() { return &___comparer_2; }
|
|
inline void set_comparer_2(RuntimeObject* value)
|
|
{
|
|
___comparer_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___comparer_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_eventsOwned_3() { return static_cast<int32_t>(offsetof(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37, ___eventsOwned_3)); }
|
|
inline bool get_eventsOwned_3() const { return ___eventsOwned_3; }
|
|
inline bool* get_address_of_eventsOwned_3() { return &___eventsOwned_3; }
|
|
inline void set_eventsOwned_3(bool value)
|
|
{
|
|
___eventsOwned_3 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_needSort_4() { return static_cast<int32_t>(offsetof(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37, ___needSort_4)); }
|
|
inline bool get_needSort_4() const { return ___needSort_4; }
|
|
inline bool* get_address_of_needSort_4() { return &___needSort_4; }
|
|
inline void set_needSort_4(bool value)
|
|
{
|
|
___needSort_4 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_eventCount_5() { return static_cast<int32_t>(offsetof(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37, ___eventCount_5)); }
|
|
inline int32_t get_eventCount_5() const { return ___eventCount_5; }
|
|
inline int32_t* get_address_of_eventCount_5() { return &___eventCount_5; }
|
|
inline void set_eventCount_5(int32_t value)
|
|
{
|
|
___eventCount_5 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_readOnly_6() { return static_cast<int32_t>(offsetof(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37, ___readOnly_6)); }
|
|
inline bool get_readOnly_6() const { return ___readOnly_6; }
|
|
inline bool* get_address_of_readOnly_6() { return &___readOnly_6; }
|
|
inline void set_readOnly_6(bool value)
|
|
{
|
|
___readOnly_6 = value;
|
|
}
|
|
};
|
|
|
|
struct EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37_StaticFields
|
|
{
|
|
public:
|
|
// System.ComponentModel.EventDescriptorCollection System.ComponentModel.EventDescriptorCollection::Empty
|
|
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * ___Empty_7;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Empty_7() { return static_cast<int32_t>(offsetof(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37_StaticFields, ___Empty_7)); }
|
|
inline EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * get_Empty_7() const { return ___Empty_7; }
|
|
inline EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 ** get_address_of_Empty_7() { return &___Empty_7; }
|
|
inline void set_Empty_7(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * value)
|
|
{
|
|
___Empty_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Empty_7), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.EventHandlerList
|
|
struct EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.ComponentModel.EventHandlerList_ListEntry System.ComponentModel.EventHandlerList::head
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * ___head_0;
|
|
// System.ComponentModel.Component System.ComponentModel.EventHandlerList::parent
|
|
Component_t7AEFE153F6778CF52E1981BC3E811A9604B29473 * ___parent_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_head_0() { return static_cast<int32_t>(offsetof(EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4, ___head_0)); }
|
|
inline ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * get_head_0() const { return ___head_0; }
|
|
inline ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D ** get_address_of_head_0() { return &___head_0; }
|
|
inline void set_head_0(ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * value)
|
|
{
|
|
___head_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___head_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_parent_1() { return static_cast<int32_t>(offsetof(EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4, ___parent_1)); }
|
|
inline Component_t7AEFE153F6778CF52E1981BC3E811A9604B29473 * get_parent_1() const { return ___parent_1; }
|
|
inline Component_t7AEFE153F6778CF52E1981BC3E811A9604B29473 ** get_address_of_parent_1() { return &___parent_1; }
|
|
inline void set_parent_1(Component_t7AEFE153F6778CF52E1981BC3E811A9604B29473 * value)
|
|
{
|
|
___parent_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___parent_1), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.EventHandlerList_ListEntry
|
|
struct ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.ComponentModel.EventHandlerList_ListEntry System.ComponentModel.EventHandlerList_ListEntry::next
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * ___next_0;
|
|
// System.Object System.ComponentModel.EventHandlerList_ListEntry::key
|
|
RuntimeObject * ___key_1;
|
|
// System.Delegate System.ComponentModel.EventHandlerList_ListEntry::handler
|
|
Delegate_t * ___handler_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_next_0() { return static_cast<int32_t>(offsetof(ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D, ___next_0)); }
|
|
inline ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * get_next_0() const { return ___next_0; }
|
|
inline ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D ** get_address_of_next_0() { return &___next_0; }
|
|
inline void set_next_0(ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * value)
|
|
{
|
|
___next_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___next_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_key_1() { return static_cast<int32_t>(offsetof(ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D, ___key_1)); }
|
|
inline RuntimeObject * get_key_1() const { return ___key_1; }
|
|
inline RuntimeObject ** get_address_of_key_1() { return &___key_1; }
|
|
inline void set_key_1(RuntimeObject * value)
|
|
{
|
|
___key_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___key_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_handler_2() { return static_cast<int32_t>(offsetof(ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D, ___handler_2)); }
|
|
inline Delegate_t * get_handler_2() const { return ___handler_2; }
|
|
inline Delegate_t ** get_address_of_handler_2() { return &___handler_2; }
|
|
inline void set_handler_2(Delegate_t * value)
|
|
{
|
|
___handler_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___handler_2), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.InstanceCreationEditor
|
|
struct InstanceCreationEditor_t87E9919F45C092DA810FAC5AEFD200F26A9D7EEA : public RuntimeObject
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ComponentModel.IntSecurity
|
|
struct IntSecurity_t3FC031652848FDE0BB103E7A46BA8DF90840B117 : public RuntimeObject
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ComponentModel.License
|
|
struct License_t9011453B97942387364692C7DFAD2DEDB2160F8C : public RuntimeObject
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ComponentModel.LicenseContext
|
|
struct LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A : public RuntimeObject
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ComponentModel.LicenseManager
|
|
struct LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1 : public RuntimeObject
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
struct LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields
|
|
{
|
|
public:
|
|
// System.Object System.ComponentModel.LicenseManager::selfLock
|
|
RuntimeObject * ___selfLock_0;
|
|
// System.ComponentModel.LicenseContext modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.LicenseManager::context
|
|
LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * ___context_1;
|
|
// System.Object System.ComponentModel.LicenseManager::contextLockHolder
|
|
RuntimeObject * ___contextLockHolder_2;
|
|
// System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.LicenseManager::providers
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___providers_3;
|
|
// System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.LicenseManager::providerInstances
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___providerInstances_4;
|
|
// System.Object System.ComponentModel.LicenseManager::internalSyncObject
|
|
RuntimeObject * ___internalSyncObject_5;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_selfLock_0() { return static_cast<int32_t>(offsetof(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields, ___selfLock_0)); }
|
|
inline RuntimeObject * get_selfLock_0() const { return ___selfLock_0; }
|
|
inline RuntimeObject ** get_address_of_selfLock_0() { return &___selfLock_0; }
|
|
inline void set_selfLock_0(RuntimeObject * value)
|
|
{
|
|
___selfLock_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___selfLock_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_context_1() { return static_cast<int32_t>(offsetof(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields, ___context_1)); }
|
|
inline LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * get_context_1() const { return ___context_1; }
|
|
inline LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A ** get_address_of_context_1() { return &___context_1; }
|
|
inline void set_context_1(LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * value)
|
|
{
|
|
___context_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___context_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_contextLockHolder_2() { return static_cast<int32_t>(offsetof(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields, ___contextLockHolder_2)); }
|
|
inline RuntimeObject * get_contextLockHolder_2() const { return ___contextLockHolder_2; }
|
|
inline RuntimeObject ** get_address_of_contextLockHolder_2() { return &___contextLockHolder_2; }
|
|
inline void set_contextLockHolder_2(RuntimeObject * value)
|
|
{
|
|
___contextLockHolder_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___contextLockHolder_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_providers_3() { return static_cast<int32_t>(offsetof(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields, ___providers_3)); }
|
|
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_providers_3() const { return ___providers_3; }
|
|
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_providers_3() { return &___providers_3; }
|
|
inline void set_providers_3(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
|
|
{
|
|
___providers_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___providers_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_providerInstances_4() { return static_cast<int32_t>(offsetof(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields, ___providerInstances_4)); }
|
|
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_providerInstances_4() const { return ___providerInstances_4; }
|
|
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_providerInstances_4() { return &___providerInstances_4; }
|
|
inline void set_providerInstances_4(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
|
|
{
|
|
___providerInstances_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___providerInstances_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_internalSyncObject_5() { return static_cast<int32_t>(offsetof(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields, ___internalSyncObject_5)); }
|
|
inline RuntimeObject * get_internalSyncObject_5() const { return ___internalSyncObject_5; }
|
|
inline RuntimeObject ** get_address_of_internalSyncObject_5() { return &___internalSyncObject_5; }
|
|
inline void set_internalSyncObject_5(RuntimeObject * value)
|
|
{
|
|
___internalSyncObject_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___internalSyncObject_5), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.LicenseManager_LicenseInteropHelper
|
|
struct LicenseInteropHelper_t528682251600D62797521A8A3CCAD83BD1A47C0E : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.ComponentModel.Design.DesigntimeLicenseContext System.ComponentModel.LicenseManager_LicenseInteropHelper::helperContext
|
|
DesigntimeLicenseContext_tFBEF4E72A1E0E7F03A01D35ADFEE86A23F848AA1 * ___helperContext_4;
|
|
// System.ComponentModel.LicenseContext System.ComponentModel.LicenseManager_LicenseInteropHelper::savedLicenseContext
|
|
LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * ___savedLicenseContext_5;
|
|
// System.Type System.ComponentModel.LicenseManager_LicenseInteropHelper::savedType
|
|
Type_t * ___savedType_6;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_helperContext_4() { return static_cast<int32_t>(offsetof(LicenseInteropHelper_t528682251600D62797521A8A3CCAD83BD1A47C0E, ___helperContext_4)); }
|
|
inline DesigntimeLicenseContext_tFBEF4E72A1E0E7F03A01D35ADFEE86A23F848AA1 * get_helperContext_4() const { return ___helperContext_4; }
|
|
inline DesigntimeLicenseContext_tFBEF4E72A1E0E7F03A01D35ADFEE86A23F848AA1 ** get_address_of_helperContext_4() { return &___helperContext_4; }
|
|
inline void set_helperContext_4(DesigntimeLicenseContext_tFBEF4E72A1E0E7F03A01D35ADFEE86A23F848AA1 * value)
|
|
{
|
|
___helperContext_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___helperContext_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_savedLicenseContext_5() { return static_cast<int32_t>(offsetof(LicenseInteropHelper_t528682251600D62797521A8A3CCAD83BD1A47C0E, ___savedLicenseContext_5)); }
|
|
inline LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * get_savedLicenseContext_5() const { return ___savedLicenseContext_5; }
|
|
inline LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A ** get_address_of_savedLicenseContext_5() { return &___savedLicenseContext_5; }
|
|
inline void set_savedLicenseContext_5(LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * value)
|
|
{
|
|
___savedLicenseContext_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___savedLicenseContext_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_savedType_6() { return static_cast<int32_t>(offsetof(LicenseInteropHelper_t528682251600D62797521A8A3CCAD83BD1A47C0E, ___savedType_6)); }
|
|
inline Type_t * get_savedType_6() const { return ___savedType_6; }
|
|
inline Type_t ** get_address_of_savedType_6() { return &___savedType_6; }
|
|
inline void set_savedType_6(Type_t * value)
|
|
{
|
|
___savedType_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___savedType_6), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.LicenseProvider
|
|
struct LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596 : public RuntimeObject
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ComponentModel.ListSortDescriptionCollection
|
|
struct ListSortDescriptionCollection_t861BA7E63FFEBDC5C46C048FEA7B60EC580964CB : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Collections.ArrayList System.ComponentModel.ListSortDescriptionCollection::sorts
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___sorts_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_sorts_0() { return static_cast<int32_t>(offsetof(ListSortDescriptionCollection_t861BA7E63FFEBDC5C46C048FEA7B60EC580964CB, ___sorts_0)); }
|
|
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * get_sorts_0() const { return ___sorts_0; }
|
|
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** get_address_of_sorts_0() { return &___sorts_0; }
|
|
inline void set_sorts_0(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * value)
|
|
{
|
|
___sorts_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___sorts_0), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.MarshalByValueComponent
|
|
struct MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.ComponentModel.ISite System.ComponentModel.MarshalByValueComponent::site
|
|
RuntimeObject* ___site_1;
|
|
// System.ComponentModel.EventHandlerList System.ComponentModel.MarshalByValueComponent::events
|
|
EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 * ___events_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_site_1() { return static_cast<int32_t>(offsetof(MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B, ___site_1)); }
|
|
inline RuntimeObject* get_site_1() const { return ___site_1; }
|
|
inline RuntimeObject** get_address_of_site_1() { return &___site_1; }
|
|
inline void set_site_1(RuntimeObject* value)
|
|
{
|
|
___site_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___site_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_events_2() { return static_cast<int32_t>(offsetof(MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B, ___events_2)); }
|
|
inline EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 * get_events_2() const { return ___events_2; }
|
|
inline EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 ** get_address_of_events_2() { return &___events_2; }
|
|
inline void set_events_2(EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 * value)
|
|
{
|
|
___events_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___events_2), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B_StaticFields
|
|
{
|
|
public:
|
|
// System.Object System.ComponentModel.MarshalByValueComponent::EventDisposed
|
|
RuntimeObject * ___EventDisposed_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_EventDisposed_0() { return static_cast<int32_t>(offsetof(MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B_StaticFields, ___EventDisposed_0)); }
|
|
inline RuntimeObject * get_EventDisposed_0() const { return ___EventDisposed_0; }
|
|
inline RuntimeObject ** get_address_of_EventDisposed_0() { return &___EventDisposed_0; }
|
|
inline void set_EventDisposed_0(RuntimeObject * value)
|
|
{
|
|
___EventDisposed_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___EventDisposed_0), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.MemberDescriptor
|
|
struct MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.String System.ComponentModel.MemberDescriptor::name
|
|
String_t* ___name_0;
|
|
// System.String System.ComponentModel.MemberDescriptor::displayName
|
|
String_t* ___displayName_1;
|
|
// System.Int32 System.ComponentModel.MemberDescriptor::nameHash
|
|
int32_t ___nameHash_2;
|
|
// System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::attributeCollection
|
|
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * ___attributeCollection_3;
|
|
// System.Attribute[] System.ComponentModel.MemberDescriptor::attributes
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes_4;
|
|
// System.Attribute[] System.ComponentModel.MemberDescriptor::originalAttributes
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___originalAttributes_5;
|
|
// System.Boolean System.ComponentModel.MemberDescriptor::attributesFiltered
|
|
bool ___attributesFiltered_6;
|
|
// System.Boolean System.ComponentModel.MemberDescriptor::attributesFilled
|
|
bool ___attributesFilled_7;
|
|
// System.Int32 System.ComponentModel.MemberDescriptor::metadataVersion
|
|
int32_t ___metadataVersion_8;
|
|
// System.String System.ComponentModel.MemberDescriptor::category
|
|
String_t* ___category_9;
|
|
// System.String System.ComponentModel.MemberDescriptor::description
|
|
String_t* ___description_10;
|
|
// System.Object System.ComponentModel.MemberDescriptor::lockCookie
|
|
RuntimeObject * ___lockCookie_11;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8, ___name_0)); }
|
|
inline String_t* get_name_0() const { return ___name_0; }
|
|
inline String_t** get_address_of_name_0() { return &___name_0; }
|
|
inline void set_name_0(String_t* value)
|
|
{
|
|
___name_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_displayName_1() { return static_cast<int32_t>(offsetof(MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8, ___displayName_1)); }
|
|
inline String_t* get_displayName_1() const { return ___displayName_1; }
|
|
inline String_t** get_address_of_displayName_1() { return &___displayName_1; }
|
|
inline void set_displayName_1(String_t* value)
|
|
{
|
|
___displayName_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___displayName_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_nameHash_2() { return static_cast<int32_t>(offsetof(MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8, ___nameHash_2)); }
|
|
inline int32_t get_nameHash_2() const { return ___nameHash_2; }
|
|
inline int32_t* get_address_of_nameHash_2() { return &___nameHash_2; }
|
|
inline void set_nameHash_2(int32_t value)
|
|
{
|
|
___nameHash_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_attributeCollection_3() { return static_cast<int32_t>(offsetof(MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8, ___attributeCollection_3)); }
|
|
inline AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * get_attributeCollection_3() const { return ___attributeCollection_3; }
|
|
inline AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE ** get_address_of_attributeCollection_3() { return &___attributeCollection_3; }
|
|
inline void set_attributeCollection_3(AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * value)
|
|
{
|
|
___attributeCollection_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___attributeCollection_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_attributes_4() { return static_cast<int32_t>(offsetof(MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8, ___attributes_4)); }
|
|
inline AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* get_attributes_4() const { return ___attributes_4; }
|
|
inline AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17** get_address_of_attributes_4() { return &___attributes_4; }
|
|
inline void set_attributes_4(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* value)
|
|
{
|
|
___attributes_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___attributes_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_originalAttributes_5() { return static_cast<int32_t>(offsetof(MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8, ___originalAttributes_5)); }
|
|
inline AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* get_originalAttributes_5() const { return ___originalAttributes_5; }
|
|
inline AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17** get_address_of_originalAttributes_5() { return &___originalAttributes_5; }
|
|
inline void set_originalAttributes_5(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* value)
|
|
{
|
|
___originalAttributes_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___originalAttributes_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_attributesFiltered_6() { return static_cast<int32_t>(offsetof(MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8, ___attributesFiltered_6)); }
|
|
inline bool get_attributesFiltered_6() const { return ___attributesFiltered_6; }
|
|
inline bool* get_address_of_attributesFiltered_6() { return &___attributesFiltered_6; }
|
|
inline void set_attributesFiltered_6(bool value)
|
|
{
|
|
___attributesFiltered_6 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_attributesFilled_7() { return static_cast<int32_t>(offsetof(MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8, ___attributesFilled_7)); }
|
|
inline bool get_attributesFilled_7() const { return ___attributesFilled_7; }
|
|
inline bool* get_address_of_attributesFilled_7() { return &___attributesFilled_7; }
|
|
inline void set_attributesFilled_7(bool value)
|
|
{
|
|
___attributesFilled_7 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_metadataVersion_8() { return static_cast<int32_t>(offsetof(MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8, ___metadataVersion_8)); }
|
|
inline int32_t get_metadataVersion_8() const { return ___metadataVersion_8; }
|
|
inline int32_t* get_address_of_metadataVersion_8() { return &___metadataVersion_8; }
|
|
inline void set_metadataVersion_8(int32_t value)
|
|
{
|
|
___metadataVersion_8 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_category_9() { return static_cast<int32_t>(offsetof(MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8, ___category_9)); }
|
|
inline String_t* get_category_9() const { return ___category_9; }
|
|
inline String_t** get_address_of_category_9() { return &___category_9; }
|
|
inline void set_category_9(String_t* value)
|
|
{
|
|
___category_9 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___category_9), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_description_10() { return static_cast<int32_t>(offsetof(MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8, ___description_10)); }
|
|
inline String_t* get_description_10() const { return ___description_10; }
|
|
inline String_t** get_address_of_description_10() { return &___description_10; }
|
|
inline void set_description_10(String_t* value)
|
|
{
|
|
___description_10 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___description_10), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_lockCookie_11() { return static_cast<int32_t>(offsetof(MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8, ___lockCookie_11)); }
|
|
inline RuntimeObject * get_lockCookie_11() const { return ___lockCookie_11; }
|
|
inline RuntimeObject ** get_address_of_lockCookie_11() { return &___lockCookie_11; }
|
|
inline void set_lockCookie_11(RuntimeObject * value)
|
|
{
|
|
___lockCookie_11 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___lockCookie_11), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.NestedContainer_Site
|
|
struct Site_t416D1B752B924BEC6C03A474D7DC852F255B3E5A : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.ComponentModel.IComponent System.ComponentModel.NestedContainer_Site::component
|
|
RuntimeObject* ___component_0;
|
|
// System.ComponentModel.NestedContainer System.ComponentModel.NestedContainer_Site::container
|
|
NestedContainer_t08F11932945A6F531D1338CC5A05BAD8D99F8AE9 * ___container_1;
|
|
// System.String System.ComponentModel.NestedContainer_Site::name
|
|
String_t* ___name_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_component_0() { return static_cast<int32_t>(offsetof(Site_t416D1B752B924BEC6C03A474D7DC852F255B3E5A, ___component_0)); }
|
|
inline RuntimeObject* get_component_0() const { return ___component_0; }
|
|
inline RuntimeObject** get_address_of_component_0() { return &___component_0; }
|
|
inline void set_component_0(RuntimeObject* value)
|
|
{
|
|
___component_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___component_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_container_1() { return static_cast<int32_t>(offsetof(Site_t416D1B752B924BEC6C03A474D7DC852F255B3E5A, ___container_1)); }
|
|
inline NestedContainer_t08F11932945A6F531D1338CC5A05BAD8D99F8AE9 * get_container_1() const { return ___container_1; }
|
|
inline NestedContainer_t08F11932945A6F531D1338CC5A05BAD8D99F8AE9 ** get_address_of_container_1() { return &___container_1; }
|
|
inline void set_container_1(NestedContainer_t08F11932945A6F531D1338CC5A05BAD8D99F8AE9 * value)
|
|
{
|
|
___container_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___container_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_name_2() { return static_cast<int32_t>(offsetof(Site_t416D1B752B924BEC6C03A474D7DC852F255B3E5A, ___name_2)); }
|
|
inline String_t* get_name_2() const { return ___name_2; }
|
|
inline String_t** get_address_of_name_2() { return &___name_2; }
|
|
inline void set_name_2(String_t* value)
|
|
{
|
|
___name_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___name_2), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.PropertyDescriptorCollection
|
|
struct PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Collections.IDictionary System.ComponentModel.PropertyDescriptorCollection::cachedFoundProperties
|
|
RuntimeObject* ___cachedFoundProperties_1;
|
|
// System.Boolean System.ComponentModel.PropertyDescriptorCollection::cachedIgnoreCase
|
|
bool ___cachedIgnoreCase_2;
|
|
// System.ComponentModel.PropertyDescriptor[] System.ComponentModel.PropertyDescriptorCollection::properties
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* ___properties_3;
|
|
// System.Int32 System.ComponentModel.PropertyDescriptorCollection::propCount
|
|
int32_t ___propCount_4;
|
|
// System.String[] System.ComponentModel.PropertyDescriptorCollection::namedSort
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___namedSort_5;
|
|
// System.Collections.IComparer System.ComponentModel.PropertyDescriptorCollection::comparer
|
|
RuntimeObject* ___comparer_6;
|
|
// System.Boolean System.ComponentModel.PropertyDescriptorCollection::propsOwned
|
|
bool ___propsOwned_7;
|
|
// System.Boolean System.ComponentModel.PropertyDescriptorCollection::needSort
|
|
bool ___needSort_8;
|
|
// System.Boolean System.ComponentModel.PropertyDescriptorCollection::readOnly
|
|
bool ___readOnly_9;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_cachedFoundProperties_1() { return static_cast<int32_t>(offsetof(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2, ___cachedFoundProperties_1)); }
|
|
inline RuntimeObject* get_cachedFoundProperties_1() const { return ___cachedFoundProperties_1; }
|
|
inline RuntimeObject** get_address_of_cachedFoundProperties_1() { return &___cachedFoundProperties_1; }
|
|
inline void set_cachedFoundProperties_1(RuntimeObject* value)
|
|
{
|
|
___cachedFoundProperties_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___cachedFoundProperties_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_cachedIgnoreCase_2() { return static_cast<int32_t>(offsetof(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2, ___cachedIgnoreCase_2)); }
|
|
inline bool get_cachedIgnoreCase_2() const { return ___cachedIgnoreCase_2; }
|
|
inline bool* get_address_of_cachedIgnoreCase_2() { return &___cachedIgnoreCase_2; }
|
|
inline void set_cachedIgnoreCase_2(bool value)
|
|
{
|
|
___cachedIgnoreCase_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_properties_3() { return static_cast<int32_t>(offsetof(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2, ___properties_3)); }
|
|
inline PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* get_properties_3() const { return ___properties_3; }
|
|
inline PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F** get_address_of_properties_3() { return &___properties_3; }
|
|
inline void set_properties_3(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* value)
|
|
{
|
|
___properties_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___properties_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_propCount_4() { return static_cast<int32_t>(offsetof(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2, ___propCount_4)); }
|
|
inline int32_t get_propCount_4() const { return ___propCount_4; }
|
|
inline int32_t* get_address_of_propCount_4() { return &___propCount_4; }
|
|
inline void set_propCount_4(int32_t value)
|
|
{
|
|
___propCount_4 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_namedSort_5() { return static_cast<int32_t>(offsetof(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2, ___namedSort_5)); }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_namedSort_5() const { return ___namedSort_5; }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_namedSort_5() { return &___namedSort_5; }
|
|
inline void set_namedSort_5(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
|
|
{
|
|
___namedSort_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___namedSort_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2, ___comparer_6)); }
|
|
inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
|
|
inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
|
|
inline void set_comparer_6(RuntimeObject* value)
|
|
{
|
|
___comparer_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_propsOwned_7() { return static_cast<int32_t>(offsetof(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2, ___propsOwned_7)); }
|
|
inline bool get_propsOwned_7() const { return ___propsOwned_7; }
|
|
inline bool* get_address_of_propsOwned_7() { return &___propsOwned_7; }
|
|
inline void set_propsOwned_7(bool value)
|
|
{
|
|
___propsOwned_7 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_needSort_8() { return static_cast<int32_t>(offsetof(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2, ___needSort_8)); }
|
|
inline bool get_needSort_8() const { return ___needSort_8; }
|
|
inline bool* get_address_of_needSort_8() { return &___needSort_8; }
|
|
inline void set_needSort_8(bool value)
|
|
{
|
|
___needSort_8 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_readOnly_9() { return static_cast<int32_t>(offsetof(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2, ___readOnly_9)); }
|
|
inline bool get_readOnly_9() const { return ___readOnly_9; }
|
|
inline bool* get_address_of_readOnly_9() { return &___readOnly_9; }
|
|
inline void set_readOnly_9(bool value)
|
|
{
|
|
___readOnly_9 = value;
|
|
}
|
|
};
|
|
|
|
struct PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2_StaticFields
|
|
{
|
|
public:
|
|
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptorCollection::Empty
|
|
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * ___Empty_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2_StaticFields, ___Empty_0)); }
|
|
inline PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * get_Empty_0() const { return ___Empty_0; }
|
|
inline PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 ** get_address_of_Empty_0() { return &___Empty_0; }
|
|
inline void set_Empty_0(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * value)
|
|
{
|
|
___Empty_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Empty_0), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.PropertyDescriptorCollection_PropertyDescriptorEnumerator
|
|
struct PropertyDescriptorEnumerator_t8DE08E0C89BAD17FE8FD71FD3159C80833CE2D9D : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptorCollection_PropertyDescriptorEnumerator::owner
|
|
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * ___owner_0;
|
|
// System.Int32 System.ComponentModel.PropertyDescriptorCollection_PropertyDescriptorEnumerator::index
|
|
int32_t ___index_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_owner_0() { return static_cast<int32_t>(offsetof(PropertyDescriptorEnumerator_t8DE08E0C89BAD17FE8FD71FD3159C80833CE2D9D, ___owner_0)); }
|
|
inline PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * get_owner_0() const { return ___owner_0; }
|
|
inline PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 ** get_address_of_owner_0() { return &___owner_0; }
|
|
inline void set_owner_0(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * value)
|
|
{
|
|
___owner_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___owner_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(PropertyDescriptorEnumerator_t8DE08E0C89BAD17FE8FD71FD3159C80833CE2D9D, ___index_1)); }
|
|
inline int32_t get_index_1() const { return ___index_1; }
|
|
inline int32_t* get_address_of_index_1() { return &___index_1; }
|
|
inline void set_index_1(int32_t value)
|
|
{
|
|
___index_1 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.TypeConverter_StandardValuesCollection
|
|
struct StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Collections.ICollection System.ComponentModel.TypeConverter_StandardValuesCollection::values
|
|
RuntimeObject* ___values_0;
|
|
// System.Array System.ComponentModel.TypeConverter_StandardValuesCollection::valueArray
|
|
RuntimeArray * ___valueArray_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_values_0() { return static_cast<int32_t>(offsetof(StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3, ___values_0)); }
|
|
inline RuntimeObject* get_values_0() const { return ___values_0; }
|
|
inline RuntimeObject** get_address_of_values_0() { return &___values_0; }
|
|
inline void set_values_0(RuntimeObject* value)
|
|
{
|
|
___values_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___values_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_valueArray_1() { return static_cast<int32_t>(offsetof(StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3, ___valueArray_1)); }
|
|
inline RuntimeArray * get_valueArray_1() const { return ___valueArray_1; }
|
|
inline RuntimeArray ** get_address_of_valueArray_1() { return &___valueArray_1; }
|
|
inline void set_valueArray_1(RuntimeArray * value)
|
|
{
|
|
___valueArray_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___valueArray_1), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.TypeDescriptionProvider
|
|
struct TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.ComponentModel.TypeDescriptionProvider System.ComponentModel.TypeDescriptionProvider::_parent
|
|
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * ____parent_0;
|
|
// System.ComponentModel.TypeDescriptionProvider_EmptyCustomTypeDescriptor System.ComponentModel.TypeDescriptionProvider::_emptyDescriptor
|
|
EmptyCustomTypeDescriptor_tDDCC5072613D7D0405BCCF3D49F3EF7B4E1E7DB8 * ____emptyDescriptor_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__parent_0() { return static_cast<int32_t>(offsetof(TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591, ____parent_0)); }
|
|
inline TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * get__parent_0() const { return ____parent_0; }
|
|
inline TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 ** get_address_of__parent_0() { return &____parent_0; }
|
|
inline void set__parent_0(TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * value)
|
|
{
|
|
____parent_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____parent_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__emptyDescriptor_1() { return static_cast<int32_t>(offsetof(TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591, ____emptyDescriptor_1)); }
|
|
inline EmptyCustomTypeDescriptor_tDDCC5072613D7D0405BCCF3D49F3EF7B4E1E7DB8 * get__emptyDescriptor_1() const { return ____emptyDescriptor_1; }
|
|
inline EmptyCustomTypeDescriptor_tDDCC5072613D7D0405BCCF3D49F3EF7B4E1E7DB8 ** get_address_of__emptyDescriptor_1() { return &____emptyDescriptor_1; }
|
|
inline void set__emptyDescriptor_1(EmptyCustomTypeDescriptor_tDDCC5072613D7D0405BCCF3D49F3EF7B4E1E7DB8 * value)
|
|
{
|
|
____emptyDescriptor_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____emptyDescriptor_1), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.TypeDescriptor
|
|
struct TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF : public RuntimeObject
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
struct TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields
|
|
{
|
|
public:
|
|
// System.ComponentModel.WeakHashtable System.ComponentModel.TypeDescriptor::_providerTable
|
|
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * ____providerTable_0;
|
|
// System.Collections.Hashtable System.ComponentModel.TypeDescriptor::_providerTypeTable
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ____providerTypeTable_1;
|
|
// System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.TypeDescriptor::_defaultProviders
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ____defaultProviders_2;
|
|
// System.ComponentModel.WeakHashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.TypeDescriptor::_associationTable
|
|
WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * ____associationTable_3;
|
|
// System.Int32 System.ComponentModel.TypeDescriptor::_metadataVersion
|
|
int32_t ____metadataVersion_4;
|
|
// System.Int32 System.ComponentModel.TypeDescriptor::_collisionIndex
|
|
int32_t ____collisionIndex_5;
|
|
// System.Diagnostics.BooleanSwitch System.ComponentModel.TypeDescriptor::TraceDescriptor
|
|
BooleanSwitch_t2B51F0E7C50E7DAA74282B51EF9107A2E54723E0 * ___TraceDescriptor_6;
|
|
// System.Guid[] System.ComponentModel.TypeDescriptor::_pipelineInitializeKeys
|
|
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* ____pipelineInitializeKeys_10;
|
|
// System.Guid[] System.ComponentModel.TypeDescriptor::_pipelineMergeKeys
|
|
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* ____pipelineMergeKeys_11;
|
|
// System.Guid[] System.ComponentModel.TypeDescriptor::_pipelineFilterKeys
|
|
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* ____pipelineFilterKeys_12;
|
|
// System.Guid[] System.ComponentModel.TypeDescriptor::_pipelineAttributeFilterKeys
|
|
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* ____pipelineAttributeFilterKeys_13;
|
|
// System.Object System.ComponentModel.TypeDescriptor::_internalSyncObject
|
|
RuntimeObject * ____internalSyncObject_14;
|
|
// System.ComponentModel.RefreshEventHandler System.ComponentModel.TypeDescriptor::Refreshed
|
|
RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * ___Refreshed_15;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__providerTable_0() { return static_cast<int32_t>(offsetof(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields, ____providerTable_0)); }
|
|
inline WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * get__providerTable_0() const { return ____providerTable_0; }
|
|
inline WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF ** get_address_of__providerTable_0() { return &____providerTable_0; }
|
|
inline void set__providerTable_0(WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * value)
|
|
{
|
|
____providerTable_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____providerTable_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__providerTypeTable_1() { return static_cast<int32_t>(offsetof(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields, ____providerTypeTable_1)); }
|
|
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get__providerTypeTable_1() const { return ____providerTypeTable_1; }
|
|
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of__providerTypeTable_1() { return &____providerTypeTable_1; }
|
|
inline void set__providerTypeTable_1(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
|
|
{
|
|
____providerTypeTable_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____providerTypeTable_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__defaultProviders_2() { return static_cast<int32_t>(offsetof(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields, ____defaultProviders_2)); }
|
|
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get__defaultProviders_2() const { return ____defaultProviders_2; }
|
|
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of__defaultProviders_2() { return &____defaultProviders_2; }
|
|
inline void set__defaultProviders_2(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
|
|
{
|
|
____defaultProviders_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____defaultProviders_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__associationTable_3() { return static_cast<int32_t>(offsetof(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields, ____associationTable_3)); }
|
|
inline WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * get__associationTable_3() const { return ____associationTable_3; }
|
|
inline WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF ** get_address_of__associationTable_3() { return &____associationTable_3; }
|
|
inline void set__associationTable_3(WeakHashtable_t230AE0A1A5D5EE8C97A2280405572D83D757B2CF * value)
|
|
{
|
|
____associationTable_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____associationTable_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__metadataVersion_4() { return static_cast<int32_t>(offsetof(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields, ____metadataVersion_4)); }
|
|
inline int32_t get__metadataVersion_4() const { return ____metadataVersion_4; }
|
|
inline int32_t* get_address_of__metadataVersion_4() { return &____metadataVersion_4; }
|
|
inline void set__metadataVersion_4(int32_t value)
|
|
{
|
|
____metadataVersion_4 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__collisionIndex_5() { return static_cast<int32_t>(offsetof(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields, ____collisionIndex_5)); }
|
|
inline int32_t get__collisionIndex_5() const { return ____collisionIndex_5; }
|
|
inline int32_t* get_address_of__collisionIndex_5() { return &____collisionIndex_5; }
|
|
inline void set__collisionIndex_5(int32_t value)
|
|
{
|
|
____collisionIndex_5 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_TraceDescriptor_6() { return static_cast<int32_t>(offsetof(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields, ___TraceDescriptor_6)); }
|
|
inline BooleanSwitch_t2B51F0E7C50E7DAA74282B51EF9107A2E54723E0 * get_TraceDescriptor_6() const { return ___TraceDescriptor_6; }
|
|
inline BooleanSwitch_t2B51F0E7C50E7DAA74282B51EF9107A2E54723E0 ** get_address_of_TraceDescriptor_6() { return &___TraceDescriptor_6; }
|
|
inline void set_TraceDescriptor_6(BooleanSwitch_t2B51F0E7C50E7DAA74282B51EF9107A2E54723E0 * value)
|
|
{
|
|
___TraceDescriptor_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___TraceDescriptor_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__pipelineInitializeKeys_10() { return static_cast<int32_t>(offsetof(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields, ____pipelineInitializeKeys_10)); }
|
|
inline GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* get__pipelineInitializeKeys_10() const { return ____pipelineInitializeKeys_10; }
|
|
inline GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF** get_address_of__pipelineInitializeKeys_10() { return &____pipelineInitializeKeys_10; }
|
|
inline void set__pipelineInitializeKeys_10(GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* value)
|
|
{
|
|
____pipelineInitializeKeys_10 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____pipelineInitializeKeys_10), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__pipelineMergeKeys_11() { return static_cast<int32_t>(offsetof(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields, ____pipelineMergeKeys_11)); }
|
|
inline GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* get__pipelineMergeKeys_11() const { return ____pipelineMergeKeys_11; }
|
|
inline GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF** get_address_of__pipelineMergeKeys_11() { return &____pipelineMergeKeys_11; }
|
|
inline void set__pipelineMergeKeys_11(GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* value)
|
|
{
|
|
____pipelineMergeKeys_11 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____pipelineMergeKeys_11), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__pipelineFilterKeys_12() { return static_cast<int32_t>(offsetof(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields, ____pipelineFilterKeys_12)); }
|
|
inline GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* get__pipelineFilterKeys_12() const { return ____pipelineFilterKeys_12; }
|
|
inline GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF** get_address_of__pipelineFilterKeys_12() { return &____pipelineFilterKeys_12; }
|
|
inline void set__pipelineFilterKeys_12(GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* value)
|
|
{
|
|
____pipelineFilterKeys_12 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____pipelineFilterKeys_12), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__pipelineAttributeFilterKeys_13() { return static_cast<int32_t>(offsetof(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields, ____pipelineAttributeFilterKeys_13)); }
|
|
inline GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* get__pipelineAttributeFilterKeys_13() const { return ____pipelineAttributeFilterKeys_13; }
|
|
inline GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF** get_address_of__pipelineAttributeFilterKeys_13() { return &____pipelineAttributeFilterKeys_13; }
|
|
inline void set__pipelineAttributeFilterKeys_13(GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* value)
|
|
{
|
|
____pipelineAttributeFilterKeys_13 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____pipelineAttributeFilterKeys_13), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__internalSyncObject_14() { return static_cast<int32_t>(offsetof(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields, ____internalSyncObject_14)); }
|
|
inline RuntimeObject * get__internalSyncObject_14() const { return ____internalSyncObject_14; }
|
|
inline RuntimeObject ** get_address_of__internalSyncObject_14() { return &____internalSyncObject_14; }
|
|
inline void set__internalSyncObject_14(RuntimeObject * value)
|
|
{
|
|
____internalSyncObject_14 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____internalSyncObject_14), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Refreshed_15() { return static_cast<int32_t>(offsetof(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields, ___Refreshed_15)); }
|
|
inline RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * get_Refreshed_15() const { return ___Refreshed_15; }
|
|
inline RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 ** get_address_of_Refreshed_15() { return &___Refreshed_15; }
|
|
inline void set_Refreshed_15(RefreshEventHandler_tE1B96D1B5C9580F60558220F9DEBA92333849F27 * value)
|
|
{
|
|
___Refreshed_15 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Refreshed_15), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Diagnostics.Switch
|
|
struct Switch_t9DAA0B271A8AAEC0A2EFE1EE30299CECB4C2002F : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.String System.Diagnostics.Switch::description
|
|
String_t* ___description_0;
|
|
// System.String System.Diagnostics.Switch::displayName
|
|
String_t* ___displayName_1;
|
|
// System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.Diagnostics.Switch::switchValueString
|
|
String_t* ___switchValueString_2;
|
|
// System.String System.Diagnostics.Switch::defaultValue
|
|
String_t* ___defaultValue_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_description_0() { return static_cast<int32_t>(offsetof(Switch_t9DAA0B271A8AAEC0A2EFE1EE30299CECB4C2002F, ___description_0)); }
|
|
inline String_t* get_description_0() const { return ___description_0; }
|
|
inline String_t** get_address_of_description_0() { return &___description_0; }
|
|
inline void set_description_0(String_t* value)
|
|
{
|
|
___description_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___description_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_displayName_1() { return static_cast<int32_t>(offsetof(Switch_t9DAA0B271A8AAEC0A2EFE1EE30299CECB4C2002F, ___displayName_1)); }
|
|
inline String_t* get_displayName_1() const { return ___displayName_1; }
|
|
inline String_t** get_address_of_displayName_1() { return &___displayName_1; }
|
|
inline void set_displayName_1(String_t* value)
|
|
{
|
|
___displayName_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___displayName_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_switchValueString_2() { return static_cast<int32_t>(offsetof(Switch_t9DAA0B271A8AAEC0A2EFE1EE30299CECB4C2002F, ___switchValueString_2)); }
|
|
inline String_t* get_switchValueString_2() const { return ___switchValueString_2; }
|
|
inline String_t** get_address_of_switchValueString_2() { return &___switchValueString_2; }
|
|
inline void set_switchValueString_2(String_t* value)
|
|
{
|
|
___switchValueString_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___switchValueString_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_defaultValue_3() { return static_cast<int32_t>(offsetof(Switch_t9DAA0B271A8AAEC0A2EFE1EE30299CECB4C2002F, ___defaultValue_3)); }
|
|
inline String_t* get_defaultValue_3() const { return ___defaultValue_3; }
|
|
inline String_t** get_address_of_defaultValue_3() { return &___defaultValue_3; }
|
|
inline void set_defaultValue_3(String_t* value)
|
|
{
|
|
___defaultValue_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___defaultValue_3), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct Switch_t9DAA0B271A8AAEC0A2EFE1EE30299CECB4C2002F_StaticFields
|
|
{
|
|
public:
|
|
// System.Collections.Generic.List`1<System.WeakReference> System.Diagnostics.Switch::switches
|
|
List_1_t0B19BE4139518EFD1F11815FD931281B09EA15EF * ___switches_4;
|
|
// System.Int32 System.Diagnostics.Switch::s_LastCollectionCount
|
|
int32_t ___s_LastCollectionCount_5;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_switches_4() { return static_cast<int32_t>(offsetof(Switch_t9DAA0B271A8AAEC0A2EFE1EE30299CECB4C2002F_StaticFields, ___switches_4)); }
|
|
inline List_1_t0B19BE4139518EFD1F11815FD931281B09EA15EF * get_switches_4() const { return ___switches_4; }
|
|
inline List_1_t0B19BE4139518EFD1F11815FD931281B09EA15EF ** get_address_of_switches_4() { return &___switches_4; }
|
|
inline void set_switches_4(List_1_t0B19BE4139518EFD1F11815FD931281B09EA15EF * value)
|
|
{
|
|
___switches_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___switches_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_s_LastCollectionCount_5() { return static_cast<int32_t>(offsetof(Switch_t9DAA0B271A8AAEC0A2EFE1EE30299CECB4C2002F_StaticFields, ___s_LastCollectionCount_5)); }
|
|
inline int32_t get_s_LastCollectionCount_5() const { return ___s_LastCollectionCount_5; }
|
|
inline int32_t* get_address_of_s_LastCollectionCount_5() { return &___s_LastCollectionCount_5; }
|
|
inline void set_s_LastCollectionCount_5(int32_t value)
|
|
{
|
|
___s_LastCollectionCount_5 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.EventArgs
|
|
struct EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E : public RuntimeObject
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
struct EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_StaticFields
|
|
{
|
|
public:
|
|
// System.EventArgs System.EventArgs::Empty
|
|
EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * ___Empty_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_StaticFields, ___Empty_0)); }
|
|
inline EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * get_Empty_0() const { return ___Empty_0; }
|
|
inline EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E ** get_address_of_Empty_0() { return &___Empty_0; }
|
|
inline void set_Empty_0(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * value)
|
|
{
|
|
___Empty_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Empty_0), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Globalization.CultureInfo
|
|
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Boolean System.Globalization.CultureInfo::m_isReadOnly
|
|
bool ___m_isReadOnly_3;
|
|
// System.Int32 System.Globalization.CultureInfo::cultureID
|
|
int32_t ___cultureID_4;
|
|
// System.Int32 System.Globalization.CultureInfo::parent_lcid
|
|
int32_t ___parent_lcid_5;
|
|
// System.Int32 System.Globalization.CultureInfo::datetime_index
|
|
int32_t ___datetime_index_6;
|
|
// System.Int32 System.Globalization.CultureInfo::number_index
|
|
int32_t ___number_index_7;
|
|
// System.Int32 System.Globalization.CultureInfo::default_calendar_type
|
|
int32_t ___default_calendar_type_8;
|
|
// System.Boolean System.Globalization.CultureInfo::m_useUserOverride
|
|
bool ___m_useUserOverride_9;
|
|
// System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::numInfo
|
|
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10;
|
|
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo
|
|
DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11;
|
|
// System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo
|
|
TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12;
|
|
// System.String System.Globalization.CultureInfo::m_name
|
|
String_t* ___m_name_13;
|
|
// System.String System.Globalization.CultureInfo::englishname
|
|
String_t* ___englishname_14;
|
|
// System.String System.Globalization.CultureInfo::nativename
|
|
String_t* ___nativename_15;
|
|
// System.String System.Globalization.CultureInfo::iso3lang
|
|
String_t* ___iso3lang_16;
|
|
// System.String System.Globalization.CultureInfo::iso2lang
|
|
String_t* ___iso2lang_17;
|
|
// System.String System.Globalization.CultureInfo::win3lang
|
|
String_t* ___win3lang_18;
|
|
// System.String System.Globalization.CultureInfo::territory
|
|
String_t* ___territory_19;
|
|
// System.String[] System.Globalization.CultureInfo::native_calendar_names
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___native_calendar_names_20;
|
|
// System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo
|
|
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21;
|
|
// System.Void* System.Globalization.CultureInfo::textinfo_data
|
|
void* ___textinfo_data_22;
|
|
// System.Int32 System.Globalization.CultureInfo::m_dataItem
|
|
int32_t ___m_dataItem_23;
|
|
// System.Globalization.Calendar System.Globalization.CultureInfo::calendar
|
|
Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24;
|
|
// System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___parent_culture_25;
|
|
// System.Boolean System.Globalization.CultureInfo::constructed
|
|
bool ___constructed_26;
|
|
// System.Byte[] System.Globalization.CultureInfo::cached_serialized_form
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___cached_serialized_form_27;
|
|
// System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData
|
|
CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * ___m_cultureData_28;
|
|
// System.Boolean System.Globalization.CultureInfo::m_isInherited
|
|
bool ___m_isInherited_29;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_isReadOnly_3() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_isReadOnly_3)); }
|
|
inline bool get_m_isReadOnly_3() const { return ___m_isReadOnly_3; }
|
|
inline bool* get_address_of_m_isReadOnly_3() { return &___m_isReadOnly_3; }
|
|
inline void set_m_isReadOnly_3(bool value)
|
|
{
|
|
___m_isReadOnly_3 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_cultureID_4() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___cultureID_4)); }
|
|
inline int32_t get_cultureID_4() const { return ___cultureID_4; }
|
|
inline int32_t* get_address_of_cultureID_4() { return &___cultureID_4; }
|
|
inline void set_cultureID_4(int32_t value)
|
|
{
|
|
___cultureID_4 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_parent_lcid_5() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___parent_lcid_5)); }
|
|
inline int32_t get_parent_lcid_5() const { return ___parent_lcid_5; }
|
|
inline int32_t* get_address_of_parent_lcid_5() { return &___parent_lcid_5; }
|
|
inline void set_parent_lcid_5(int32_t value)
|
|
{
|
|
___parent_lcid_5 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_datetime_index_6() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___datetime_index_6)); }
|
|
inline int32_t get_datetime_index_6() const { return ___datetime_index_6; }
|
|
inline int32_t* get_address_of_datetime_index_6() { return &___datetime_index_6; }
|
|
inline void set_datetime_index_6(int32_t value)
|
|
{
|
|
___datetime_index_6 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_number_index_7() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___number_index_7)); }
|
|
inline int32_t get_number_index_7() const { return ___number_index_7; }
|
|
inline int32_t* get_address_of_number_index_7() { return &___number_index_7; }
|
|
inline void set_number_index_7(int32_t value)
|
|
{
|
|
___number_index_7 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_default_calendar_type_8() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___default_calendar_type_8)); }
|
|
inline int32_t get_default_calendar_type_8() const { return ___default_calendar_type_8; }
|
|
inline int32_t* get_address_of_default_calendar_type_8() { return &___default_calendar_type_8; }
|
|
inline void set_default_calendar_type_8(int32_t value)
|
|
{
|
|
___default_calendar_type_8 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_useUserOverride_9() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_useUserOverride_9)); }
|
|
inline bool get_m_useUserOverride_9() const { return ___m_useUserOverride_9; }
|
|
inline bool* get_address_of_m_useUserOverride_9() { return &___m_useUserOverride_9; }
|
|
inline void set_m_useUserOverride_9(bool value)
|
|
{
|
|
___m_useUserOverride_9 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_numInfo_10() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___numInfo_10)); }
|
|
inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * get_numInfo_10() const { return ___numInfo_10; }
|
|
inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 ** get_address_of_numInfo_10() { return &___numInfo_10; }
|
|
inline void set_numInfo_10(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * value)
|
|
{
|
|
___numInfo_10 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___numInfo_10), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_dateTimeInfo_11() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___dateTimeInfo_11)); }
|
|
inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * get_dateTimeInfo_11() const { return ___dateTimeInfo_11; }
|
|
inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** get_address_of_dateTimeInfo_11() { return &___dateTimeInfo_11; }
|
|
inline void set_dateTimeInfo_11(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * value)
|
|
{
|
|
___dateTimeInfo_11 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___dateTimeInfo_11), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_textInfo_12() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___textInfo_12)); }
|
|
inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * get_textInfo_12() const { return ___textInfo_12; }
|
|
inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 ** get_address_of_textInfo_12() { return &___textInfo_12; }
|
|
inline void set_textInfo_12(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * value)
|
|
{
|
|
___textInfo_12 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___textInfo_12), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_name_13() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_name_13)); }
|
|
inline String_t* get_m_name_13() const { return ___m_name_13; }
|
|
inline String_t** get_address_of_m_name_13() { return &___m_name_13; }
|
|
inline void set_m_name_13(String_t* value)
|
|
{
|
|
___m_name_13 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_name_13), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_englishname_14() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___englishname_14)); }
|
|
inline String_t* get_englishname_14() const { return ___englishname_14; }
|
|
inline String_t** get_address_of_englishname_14() { return &___englishname_14; }
|
|
inline void set_englishname_14(String_t* value)
|
|
{
|
|
___englishname_14 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___englishname_14), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_nativename_15() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___nativename_15)); }
|
|
inline String_t* get_nativename_15() const { return ___nativename_15; }
|
|
inline String_t** get_address_of_nativename_15() { return &___nativename_15; }
|
|
inline void set_nativename_15(String_t* value)
|
|
{
|
|
___nativename_15 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___nativename_15), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_iso3lang_16() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___iso3lang_16)); }
|
|
inline String_t* get_iso3lang_16() const { return ___iso3lang_16; }
|
|
inline String_t** get_address_of_iso3lang_16() { return &___iso3lang_16; }
|
|
inline void set_iso3lang_16(String_t* value)
|
|
{
|
|
___iso3lang_16 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___iso3lang_16), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_iso2lang_17() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___iso2lang_17)); }
|
|
inline String_t* get_iso2lang_17() const { return ___iso2lang_17; }
|
|
inline String_t** get_address_of_iso2lang_17() { return &___iso2lang_17; }
|
|
inline void set_iso2lang_17(String_t* value)
|
|
{
|
|
___iso2lang_17 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___iso2lang_17), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_win3lang_18() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___win3lang_18)); }
|
|
inline String_t* get_win3lang_18() const { return ___win3lang_18; }
|
|
inline String_t** get_address_of_win3lang_18() { return &___win3lang_18; }
|
|
inline void set_win3lang_18(String_t* value)
|
|
{
|
|
___win3lang_18 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___win3lang_18), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_territory_19() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___territory_19)); }
|
|
inline String_t* get_territory_19() const { return ___territory_19; }
|
|
inline String_t** get_address_of_territory_19() { return &___territory_19; }
|
|
inline void set_territory_19(String_t* value)
|
|
{
|
|
___territory_19 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___territory_19), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_native_calendar_names_20() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___native_calendar_names_20)); }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_native_calendar_names_20() const { return ___native_calendar_names_20; }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_native_calendar_names_20() { return &___native_calendar_names_20; }
|
|
inline void set_native_calendar_names_20(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
|
|
{
|
|
___native_calendar_names_20 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___native_calendar_names_20), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_compareInfo_21() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___compareInfo_21)); }
|
|
inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * get_compareInfo_21() const { return ___compareInfo_21; }
|
|
inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 ** get_address_of_compareInfo_21() { return &___compareInfo_21; }
|
|
inline void set_compareInfo_21(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * value)
|
|
{
|
|
___compareInfo_21 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___compareInfo_21), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_textinfo_data_22() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___textinfo_data_22)); }
|
|
inline void* get_textinfo_data_22() const { return ___textinfo_data_22; }
|
|
inline void** get_address_of_textinfo_data_22() { return &___textinfo_data_22; }
|
|
inline void set_textinfo_data_22(void* value)
|
|
{
|
|
___textinfo_data_22 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_dataItem_23() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_dataItem_23)); }
|
|
inline int32_t get_m_dataItem_23() const { return ___m_dataItem_23; }
|
|
inline int32_t* get_address_of_m_dataItem_23() { return &___m_dataItem_23; }
|
|
inline void set_m_dataItem_23(int32_t value)
|
|
{
|
|
___m_dataItem_23 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_calendar_24() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___calendar_24)); }
|
|
inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * get_calendar_24() const { return ___calendar_24; }
|
|
inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 ** get_address_of_calendar_24() { return &___calendar_24; }
|
|
inline void set_calendar_24(Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * value)
|
|
{
|
|
___calendar_24 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___calendar_24), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_parent_culture_25() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___parent_culture_25)); }
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_parent_culture_25() const { return ___parent_culture_25; }
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_parent_culture_25() { return &___parent_culture_25; }
|
|
inline void set_parent_culture_25(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
|
|
{
|
|
___parent_culture_25 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___parent_culture_25), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_constructed_26() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___constructed_26)); }
|
|
inline bool get_constructed_26() const { return ___constructed_26; }
|
|
inline bool* get_address_of_constructed_26() { return &___constructed_26; }
|
|
inline void set_constructed_26(bool value)
|
|
{
|
|
___constructed_26 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_cached_serialized_form_27() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___cached_serialized_form_27)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_cached_serialized_form_27() const { return ___cached_serialized_form_27; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_cached_serialized_form_27() { return &___cached_serialized_form_27; }
|
|
inline void set_cached_serialized_form_27(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___cached_serialized_form_27 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___cached_serialized_form_27), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_cultureData_28() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_cultureData_28)); }
|
|
inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * get_m_cultureData_28() const { return ___m_cultureData_28; }
|
|
inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD ** get_address_of_m_cultureData_28() { return &___m_cultureData_28; }
|
|
inline void set_m_cultureData_28(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * value)
|
|
{
|
|
___m_cultureData_28 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_cultureData_28), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_isInherited_29() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_isInherited_29)); }
|
|
inline bool get_m_isInherited_29() const { return ___m_isInherited_29; }
|
|
inline bool* get_address_of_m_isInherited_29() { return &___m_isInherited_29; }
|
|
inline void set_m_isInherited_29(bool value)
|
|
{
|
|
___m_isInherited_29 = value;
|
|
}
|
|
};
|
|
|
|
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields
|
|
{
|
|
public:
|
|
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___invariant_culture_info_0;
|
|
// System.Object System.Globalization.CultureInfo::shared_table_lock
|
|
RuntimeObject * ___shared_table_lock_1;
|
|
// System.Globalization.CultureInfo System.Globalization.CultureInfo::default_current_culture
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___default_current_culture_2;
|
|
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___s_DefaultThreadCurrentUICulture_33;
|
|
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___s_DefaultThreadCurrentCulture_34;
|
|
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_number
|
|
Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * ___shared_by_number_35;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_name
|
|
Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * ___shared_by_name_36;
|
|
// System.Boolean System.Globalization.CultureInfo::IsTaiwanSku
|
|
bool ___IsTaiwanSku_37;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_invariant_culture_info_0() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___invariant_culture_info_0)); }
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_invariant_culture_info_0() const { return ___invariant_culture_info_0; }
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_invariant_culture_info_0() { return &___invariant_culture_info_0; }
|
|
inline void set_invariant_culture_info_0(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
|
|
{
|
|
___invariant_culture_info_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___invariant_culture_info_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_shared_table_lock_1() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_table_lock_1)); }
|
|
inline RuntimeObject * get_shared_table_lock_1() const { return ___shared_table_lock_1; }
|
|
inline RuntimeObject ** get_address_of_shared_table_lock_1() { return &___shared_table_lock_1; }
|
|
inline void set_shared_table_lock_1(RuntimeObject * value)
|
|
{
|
|
___shared_table_lock_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___shared_table_lock_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_default_current_culture_2() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___default_current_culture_2)); }
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_default_current_culture_2() const { return ___default_current_culture_2; }
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_default_current_culture_2() { return &___default_current_culture_2; }
|
|
inline void set_default_current_culture_2(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
|
|
{
|
|
___default_current_culture_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___default_current_culture_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_s_DefaultThreadCurrentUICulture_33() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___s_DefaultThreadCurrentUICulture_33)); }
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_s_DefaultThreadCurrentUICulture_33() const { return ___s_DefaultThreadCurrentUICulture_33; }
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_s_DefaultThreadCurrentUICulture_33() { return &___s_DefaultThreadCurrentUICulture_33; }
|
|
inline void set_s_DefaultThreadCurrentUICulture_33(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
|
|
{
|
|
___s_DefaultThreadCurrentUICulture_33 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentUICulture_33), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_s_DefaultThreadCurrentCulture_34() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___s_DefaultThreadCurrentCulture_34)); }
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_s_DefaultThreadCurrentCulture_34() const { return ___s_DefaultThreadCurrentCulture_34; }
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_s_DefaultThreadCurrentCulture_34() { return &___s_DefaultThreadCurrentCulture_34; }
|
|
inline void set_s_DefaultThreadCurrentCulture_34(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
|
|
{
|
|
___s_DefaultThreadCurrentCulture_34 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentCulture_34), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_shared_by_number_35() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_by_number_35)); }
|
|
inline Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * get_shared_by_number_35() const { return ___shared_by_number_35; }
|
|
inline Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B ** get_address_of_shared_by_number_35() { return &___shared_by_number_35; }
|
|
inline void set_shared_by_number_35(Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * value)
|
|
{
|
|
___shared_by_number_35 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___shared_by_number_35), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_shared_by_name_36() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_by_name_36)); }
|
|
inline Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * get_shared_by_name_36() const { return ___shared_by_name_36; }
|
|
inline Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 ** get_address_of_shared_by_name_36() { return &___shared_by_name_36; }
|
|
inline void set_shared_by_name_36(Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * value)
|
|
{
|
|
___shared_by_name_36 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___shared_by_name_36), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_IsTaiwanSku_37() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___IsTaiwanSku_37)); }
|
|
inline bool get_IsTaiwanSku_37() const { return ___IsTaiwanSku_37; }
|
|
inline bool* get_address_of_IsTaiwanSku_37() { return &___IsTaiwanSku_37; }
|
|
inline void set_IsTaiwanSku_37(bool value)
|
|
{
|
|
___IsTaiwanSku_37 = value;
|
|
}
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.Globalization.CultureInfo
|
|
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke
|
|
{
|
|
int32_t ___m_isReadOnly_3;
|
|
int32_t ___cultureID_4;
|
|
int32_t ___parent_lcid_5;
|
|
int32_t ___datetime_index_6;
|
|
int32_t ___number_index_7;
|
|
int32_t ___default_calendar_type_8;
|
|
int32_t ___m_useUserOverride_9;
|
|
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10;
|
|
DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11;
|
|
TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12;
|
|
char* ___m_name_13;
|
|
char* ___englishname_14;
|
|
char* ___nativename_15;
|
|
char* ___iso3lang_16;
|
|
char* ___iso2lang_17;
|
|
char* ___win3lang_18;
|
|
char* ___territory_19;
|
|
char** ___native_calendar_names_20;
|
|
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21;
|
|
void* ___textinfo_data_22;
|
|
int32_t ___m_dataItem_23;
|
|
Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke* ___parent_culture_25;
|
|
int32_t ___constructed_26;
|
|
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
|
|
CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_pinvoke* ___m_cultureData_28;
|
|
int32_t ___m_isInherited_29;
|
|
};
|
|
// Native definition for COM marshalling of System.Globalization.CultureInfo
|
|
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com
|
|
{
|
|
int32_t ___m_isReadOnly_3;
|
|
int32_t ___cultureID_4;
|
|
int32_t ___parent_lcid_5;
|
|
int32_t ___datetime_index_6;
|
|
int32_t ___number_index_7;
|
|
int32_t ___default_calendar_type_8;
|
|
int32_t ___m_useUserOverride_9;
|
|
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10;
|
|
DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11;
|
|
TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12;
|
|
Il2CppChar* ___m_name_13;
|
|
Il2CppChar* ___englishname_14;
|
|
Il2CppChar* ___nativename_15;
|
|
Il2CppChar* ___iso3lang_16;
|
|
Il2CppChar* ___iso2lang_17;
|
|
Il2CppChar* ___win3lang_18;
|
|
Il2CppChar* ___territory_19;
|
|
Il2CppChar** ___native_calendar_names_20;
|
|
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21;
|
|
void* ___textinfo_data_22;
|
|
int32_t ___m_dataItem_23;
|
|
Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com* ___parent_culture_25;
|
|
int32_t ___constructed_26;
|
|
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
|
|
CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_com* ___m_cultureData_28;
|
|
int32_t ___m_isInherited_29;
|
|
};
|
|
|
|
// System.InvariantComparer
|
|
struct InvariantComparer_tD6EE51C04FB8C0E087AB037E5690FA0E80ECD6DA : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Globalization.CompareInfo System.InvariantComparer::m_compareInfo
|
|
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___m_compareInfo_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_compareInfo_0() { return static_cast<int32_t>(offsetof(InvariantComparer_tD6EE51C04FB8C0E087AB037E5690FA0E80ECD6DA, ___m_compareInfo_0)); }
|
|
inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * get_m_compareInfo_0() const { return ___m_compareInfo_0; }
|
|
inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 ** get_address_of_m_compareInfo_0() { return &___m_compareInfo_0; }
|
|
inline void set_m_compareInfo_0(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * value)
|
|
{
|
|
___m_compareInfo_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_compareInfo_0), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct InvariantComparer_tD6EE51C04FB8C0E087AB037E5690FA0E80ECD6DA_StaticFields
|
|
{
|
|
public:
|
|
// System.InvariantComparer System.InvariantComparer::Default
|
|
InvariantComparer_tD6EE51C04FB8C0E087AB037E5690FA0E80ECD6DA * ___Default_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Default_1() { return static_cast<int32_t>(offsetof(InvariantComparer_tD6EE51C04FB8C0E087AB037E5690FA0E80ECD6DA_StaticFields, ___Default_1)); }
|
|
inline InvariantComparer_tD6EE51C04FB8C0E087AB037E5690FA0E80ECD6DA * get_Default_1() const { return ___Default_1; }
|
|
inline InvariantComparer_tD6EE51C04FB8C0E087AB037E5690FA0E80ECD6DA ** get_address_of_Default_1() { return &___Default_1; }
|
|
inline void set_Default_1(InvariantComparer_tD6EE51C04FB8C0E087AB037E5690FA0E80ECD6DA * value)
|
|
{
|
|
___Default_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Default_1), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.LocalAppContextSwitches
|
|
struct LocalAppContextSwitches_tCB6E2DAC291262684ED9423046B259A428F7B777 : public RuntimeObject
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
struct LocalAppContextSwitches_tCB6E2DAC291262684ED9423046B259A428F7B777_StaticFields
|
|
{
|
|
public:
|
|
// System.Boolean System.LocalAppContextSwitches::MemberDescriptorEqualsReturnsFalseIfEquivalent
|
|
bool ___MemberDescriptorEqualsReturnsFalseIfEquivalent_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_MemberDescriptorEqualsReturnsFalseIfEquivalent_0() { return static_cast<int32_t>(offsetof(LocalAppContextSwitches_tCB6E2DAC291262684ED9423046B259A428F7B777_StaticFields, ___MemberDescriptorEqualsReturnsFalseIfEquivalent_0)); }
|
|
inline bool get_MemberDescriptorEqualsReturnsFalseIfEquivalent_0() const { return ___MemberDescriptorEqualsReturnsFalseIfEquivalent_0; }
|
|
inline bool* get_address_of_MemberDescriptorEqualsReturnsFalseIfEquivalent_0() { return &___MemberDescriptorEqualsReturnsFalseIfEquivalent_0; }
|
|
inline void set_MemberDescriptorEqualsReturnsFalseIfEquivalent_0(bool value)
|
|
{
|
|
___MemberDescriptorEqualsReturnsFalseIfEquivalent_0 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.MarshalByRefObject
|
|
struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Object System.MarshalByRefObject::_identity
|
|
RuntimeObject * ____identity_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__identity_0() { return static_cast<int32_t>(offsetof(MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF, ____identity_0)); }
|
|
inline RuntimeObject * get__identity_0() const { return ____identity_0; }
|
|
inline RuntimeObject ** get_address_of__identity_0() { return &____identity_0; }
|
|
inline void set__identity_0(RuntimeObject * value)
|
|
{
|
|
____identity_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____identity_0), (void*)value);
|
|
}
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.MarshalByRefObject
|
|
struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke
|
|
{
|
|
Il2CppIUnknown* ____identity_0;
|
|
};
|
|
// Native definition for COM marshalling of System.MarshalByRefObject
|
|
struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com
|
|
{
|
|
Il2CppIUnknown* ____identity_0;
|
|
};
|
|
|
|
// System.Net.NetworkCredential
|
|
struct NetworkCredential_tA91C6E62EA0F0915E6E393F5DFD87D03FF2C3062 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.String System.Net.NetworkCredential::m_domain
|
|
String_t* ___m_domain_0;
|
|
// System.String System.Net.NetworkCredential::m_userName
|
|
String_t* ___m_userName_1;
|
|
// System.Security.SecureString System.Net.NetworkCredential::m_password
|
|
SecureString_t0E7DCB36E6C027EA7265B7BDC2E3CAB0BA1FF2E5 * ___m_password_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_domain_0() { return static_cast<int32_t>(offsetof(NetworkCredential_tA91C6E62EA0F0915E6E393F5DFD87D03FF2C3062, ___m_domain_0)); }
|
|
inline String_t* get_m_domain_0() const { return ___m_domain_0; }
|
|
inline String_t** get_address_of_m_domain_0() { return &___m_domain_0; }
|
|
inline void set_m_domain_0(String_t* value)
|
|
{
|
|
___m_domain_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_domain_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_userName_1() { return static_cast<int32_t>(offsetof(NetworkCredential_tA91C6E62EA0F0915E6E393F5DFD87D03FF2C3062, ___m_userName_1)); }
|
|
inline String_t* get_m_userName_1() const { return ___m_userName_1; }
|
|
inline String_t** get_address_of_m_userName_1() { return &___m_userName_1; }
|
|
inline void set_m_userName_1(String_t* value)
|
|
{
|
|
___m_userName_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_userName_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_password_2() { return static_cast<int32_t>(offsetof(NetworkCredential_tA91C6E62EA0F0915E6E393F5DFD87D03FF2C3062, ___m_password_2)); }
|
|
inline SecureString_t0E7DCB36E6C027EA7265B7BDC2E3CAB0BA1FF2E5 * get_m_password_2() const { return ___m_password_2; }
|
|
inline SecureString_t0E7DCB36E6C027EA7265B7BDC2E3CAB0BA1FF2E5 ** get_address_of_m_password_2() { return &___m_password_2; }
|
|
inline void set_m_password_2(SecureString_t0E7DCB36E6C027EA7265B7BDC2E3CAB0BA1FF2E5 * value)
|
|
{
|
|
___m_password_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_password_2), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Reflection.Binder
|
|
struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 : public RuntimeObject
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.Reflection.MemberInfo
|
|
struct MemberInfo_t : public RuntimeObject
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.Runtime.Serialization.SerializationInfo
|
|
struct SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.String[] System.Runtime.Serialization.SerializationInfo::m_members
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___m_members_3;
|
|
// System.Object[] System.Runtime.Serialization.SerializationInfo::m_data
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___m_data_4;
|
|
// System.Type[] System.Runtime.Serialization.SerializationInfo::m_types
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___m_types_5;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Runtime.Serialization.SerializationInfo::m_nameToIndex
|
|
Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * ___m_nameToIndex_6;
|
|
// System.Int32 System.Runtime.Serialization.SerializationInfo::m_currMember
|
|
int32_t ___m_currMember_7;
|
|
// System.Runtime.Serialization.IFormatterConverter System.Runtime.Serialization.SerializationInfo::m_converter
|
|
RuntimeObject* ___m_converter_8;
|
|
// System.String System.Runtime.Serialization.SerializationInfo::m_fullTypeName
|
|
String_t* ___m_fullTypeName_9;
|
|
// System.String System.Runtime.Serialization.SerializationInfo::m_assemName
|
|
String_t* ___m_assemName_10;
|
|
// System.Type System.Runtime.Serialization.SerializationInfo::objectType
|
|
Type_t * ___objectType_11;
|
|
// System.Boolean System.Runtime.Serialization.SerializationInfo::isFullTypeNameSetExplicit
|
|
bool ___isFullTypeNameSetExplicit_12;
|
|
// System.Boolean System.Runtime.Serialization.SerializationInfo::isAssemblyNameSetExplicit
|
|
bool ___isAssemblyNameSetExplicit_13;
|
|
// System.Boolean System.Runtime.Serialization.SerializationInfo::requireSameTokenInPartialTrust
|
|
bool ___requireSameTokenInPartialTrust_14;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_members_3() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_members_3)); }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_m_members_3() const { return ___m_members_3; }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_m_members_3() { return &___m_members_3; }
|
|
inline void set_m_members_3(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
|
|
{
|
|
___m_members_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_members_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_data_4() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_data_4)); }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_m_data_4() const { return ___m_data_4; }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_m_data_4() { return &___m_data_4; }
|
|
inline void set_m_data_4(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
|
|
{
|
|
___m_data_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_data_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_types_5() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_types_5)); }
|
|
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_m_types_5() const { return ___m_types_5; }
|
|
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_m_types_5() { return &___m_types_5; }
|
|
inline void set_m_types_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
|
|
{
|
|
___m_types_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_types_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_nameToIndex_6() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_nameToIndex_6)); }
|
|
inline Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * get_m_nameToIndex_6() const { return ___m_nameToIndex_6; }
|
|
inline Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB ** get_address_of_m_nameToIndex_6() { return &___m_nameToIndex_6; }
|
|
inline void set_m_nameToIndex_6(Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * value)
|
|
{
|
|
___m_nameToIndex_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_nameToIndex_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_currMember_7() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_currMember_7)); }
|
|
inline int32_t get_m_currMember_7() const { return ___m_currMember_7; }
|
|
inline int32_t* get_address_of_m_currMember_7() { return &___m_currMember_7; }
|
|
inline void set_m_currMember_7(int32_t value)
|
|
{
|
|
___m_currMember_7 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_converter_8() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_converter_8)); }
|
|
inline RuntimeObject* get_m_converter_8() const { return ___m_converter_8; }
|
|
inline RuntimeObject** get_address_of_m_converter_8() { return &___m_converter_8; }
|
|
inline void set_m_converter_8(RuntimeObject* value)
|
|
{
|
|
___m_converter_8 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_converter_8), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_fullTypeName_9() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_fullTypeName_9)); }
|
|
inline String_t* get_m_fullTypeName_9() const { return ___m_fullTypeName_9; }
|
|
inline String_t** get_address_of_m_fullTypeName_9() { return &___m_fullTypeName_9; }
|
|
inline void set_m_fullTypeName_9(String_t* value)
|
|
{
|
|
___m_fullTypeName_9 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_fullTypeName_9), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_assemName_10() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_assemName_10)); }
|
|
inline String_t* get_m_assemName_10() const { return ___m_assemName_10; }
|
|
inline String_t** get_address_of_m_assemName_10() { return &___m_assemName_10; }
|
|
inline void set_m_assemName_10(String_t* value)
|
|
{
|
|
___m_assemName_10 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_assemName_10), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_objectType_11() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___objectType_11)); }
|
|
inline Type_t * get_objectType_11() const { return ___objectType_11; }
|
|
inline Type_t ** get_address_of_objectType_11() { return &___objectType_11; }
|
|
inline void set_objectType_11(Type_t * value)
|
|
{
|
|
___objectType_11 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___objectType_11), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_isFullTypeNameSetExplicit_12() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___isFullTypeNameSetExplicit_12)); }
|
|
inline bool get_isFullTypeNameSetExplicit_12() const { return ___isFullTypeNameSetExplicit_12; }
|
|
inline bool* get_address_of_isFullTypeNameSetExplicit_12() { return &___isFullTypeNameSetExplicit_12; }
|
|
inline void set_isFullTypeNameSetExplicit_12(bool value)
|
|
{
|
|
___isFullTypeNameSetExplicit_12 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_isAssemblyNameSetExplicit_13() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___isAssemblyNameSetExplicit_13)); }
|
|
inline bool get_isAssemblyNameSetExplicit_13() const { return ___isAssemblyNameSetExplicit_13; }
|
|
inline bool* get_address_of_isAssemblyNameSetExplicit_13() { return &___isAssemblyNameSetExplicit_13; }
|
|
inline void set_isAssemblyNameSetExplicit_13(bool value)
|
|
{
|
|
___isAssemblyNameSetExplicit_13 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_requireSameTokenInPartialTrust_14() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___requireSameTokenInPartialTrust_14)); }
|
|
inline bool get_requireSameTokenInPartialTrust_14() const { return ___requireSameTokenInPartialTrust_14; }
|
|
inline bool* get_address_of_requireSameTokenInPartialTrust_14() { return &___requireSameTokenInPartialTrust_14; }
|
|
inline void set_requireSameTokenInPartialTrust_14(bool value)
|
|
{
|
|
___requireSameTokenInPartialTrust_14 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.String
|
|
struct String_t : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Int32 System.String::m_stringLength
|
|
int32_t ___m_stringLength_0;
|
|
// System.Char System.String::m_firstChar
|
|
Il2CppChar ___m_firstChar_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
|
|
inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
|
|
inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
|
|
inline void set_m_stringLength_0(int32_t value)
|
|
{
|
|
___m_stringLength_0 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
|
|
inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
|
|
inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
|
|
inline void set_m_firstChar_1(Il2CppChar value)
|
|
{
|
|
___m_firstChar_1 = value;
|
|
}
|
|
};
|
|
|
|
struct String_t_StaticFields
|
|
{
|
|
public:
|
|
// System.String System.String::Empty
|
|
String_t* ___Empty_5;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
|
|
inline String_t* get_Empty_5() const { return ___Empty_5; }
|
|
inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
|
|
inline void set_Empty_5(String_t* value)
|
|
{
|
|
___Empty_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Text.StringBuilder
|
|
struct StringBuilder_t : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Char[] System.Text.StringBuilder::m_ChunkChars
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___m_ChunkChars_0;
|
|
// System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious
|
|
StringBuilder_t * ___m_ChunkPrevious_1;
|
|
// System.Int32 System.Text.StringBuilder::m_ChunkLength
|
|
int32_t ___m_ChunkLength_2;
|
|
// System.Int32 System.Text.StringBuilder::m_ChunkOffset
|
|
int32_t ___m_ChunkOffset_3;
|
|
// System.Int32 System.Text.StringBuilder::m_MaxCapacity
|
|
int32_t ___m_MaxCapacity_4;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_ChunkChars_0() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkChars_0)); }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_m_ChunkChars_0() const { return ___m_ChunkChars_0; }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_m_ChunkChars_0() { return &___m_ChunkChars_0; }
|
|
inline void set_m_ChunkChars_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
|
|
{
|
|
___m_ChunkChars_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkChars_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_ChunkPrevious_1() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkPrevious_1)); }
|
|
inline StringBuilder_t * get_m_ChunkPrevious_1() const { return ___m_ChunkPrevious_1; }
|
|
inline StringBuilder_t ** get_address_of_m_ChunkPrevious_1() { return &___m_ChunkPrevious_1; }
|
|
inline void set_m_ChunkPrevious_1(StringBuilder_t * value)
|
|
{
|
|
___m_ChunkPrevious_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkPrevious_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_ChunkLength_2() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkLength_2)); }
|
|
inline int32_t get_m_ChunkLength_2() const { return ___m_ChunkLength_2; }
|
|
inline int32_t* get_address_of_m_ChunkLength_2() { return &___m_ChunkLength_2; }
|
|
inline void set_m_ChunkLength_2(int32_t value)
|
|
{
|
|
___m_ChunkLength_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_ChunkOffset_3() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkOffset_3)); }
|
|
inline int32_t get_m_ChunkOffset_3() const { return ___m_ChunkOffset_3; }
|
|
inline int32_t* get_address_of_m_ChunkOffset_3() { return &___m_ChunkOffset_3; }
|
|
inline void set_m_ChunkOffset_3(int32_t value)
|
|
{
|
|
___m_ChunkOffset_3 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_MaxCapacity_4() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_MaxCapacity_4)); }
|
|
inline int32_t get_m_MaxCapacity_4() const { return ___m_MaxCapacity_4; }
|
|
inline int32_t* get_address_of_m_MaxCapacity_4() { return &___m_MaxCapacity_4; }
|
|
inline void set_m_MaxCapacity_4(int32_t value)
|
|
{
|
|
___m_MaxCapacity_4 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.ValueType
|
|
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.ValueType
|
|
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_pinvoke
|
|
{
|
|
};
|
|
// Native definition for COM marshalling of System.ValueType
|
|
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_com
|
|
{
|
|
};
|
|
|
|
// System.Boolean
|
|
struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C
|
|
{
|
|
public:
|
|
// System.Boolean System.Boolean::m_value
|
|
bool ___m_value_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C, ___m_value_0)); }
|
|
inline bool get_m_value_0() const { return ___m_value_0; }
|
|
inline bool* get_address_of_m_value_0() { return &___m_value_0; }
|
|
inline void set_m_value_0(bool value)
|
|
{
|
|
___m_value_0 = value;
|
|
}
|
|
};
|
|
|
|
struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields
|
|
{
|
|
public:
|
|
// System.String System.Boolean::TrueString
|
|
String_t* ___TrueString_5;
|
|
// System.String System.Boolean::FalseString
|
|
String_t* ___FalseString_6;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___TrueString_5)); }
|
|
inline String_t* get_TrueString_5() const { return ___TrueString_5; }
|
|
inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
|
|
inline void set_TrueString_5(String_t* value)
|
|
{
|
|
___TrueString_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___FalseString_6)); }
|
|
inline String_t* get_FalseString_6() const { return ___FalseString_6; }
|
|
inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
|
|
inline void set_FalseString_6(String_t* value)
|
|
{
|
|
___FalseString_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Byte
|
|
struct Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07
|
|
{
|
|
public:
|
|
// System.Byte System.Byte::m_value
|
|
uint8_t ___m_value_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07, ___m_value_0)); }
|
|
inline uint8_t get_m_value_0() const { return ___m_value_0; }
|
|
inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; }
|
|
inline void set_m_value_0(uint8_t value)
|
|
{
|
|
___m_value_0 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Char
|
|
struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9
|
|
{
|
|
public:
|
|
// System.Char System.Char::m_value
|
|
Il2CppChar ___m_value_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9, ___m_value_0)); }
|
|
inline Il2CppChar get_m_value_0() const { return ___m_value_0; }
|
|
inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; }
|
|
inline void set_m_value_0(Il2CppChar value)
|
|
{
|
|
___m_value_0 = value;
|
|
}
|
|
};
|
|
|
|
struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields
|
|
{
|
|
public:
|
|
// System.Byte[] System.Char::categoryForLatin1
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___categoryForLatin1_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields, ___categoryForLatin1_3)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; }
|
|
inline void set_categoryForLatin1_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___categoryForLatin1_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Collections.Generic.List`1_Enumerator<System.ComponentModel.MaskedTextProvider_CharDescriptor>
|
|
struct Enumerator_tB1ACA39EC6FB8CAF2F033D767916CAEED114E37C
|
|
{
|
|
public:
|
|
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
|
|
List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 * ___list_0;
|
|
// System.Int32 System.Collections.Generic.List`1_Enumerator::index
|
|
int32_t ___index_1;
|
|
// System.Int32 System.Collections.Generic.List`1_Enumerator::version
|
|
int32_t ___version_2;
|
|
// T System.Collections.Generic.List`1_Enumerator::current
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * ___current_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tB1ACA39EC6FB8CAF2F033D767916CAEED114E37C, ___list_0)); }
|
|
inline List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 * get_list_0() const { return ___list_0; }
|
|
inline List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 ** get_address_of_list_0() { return &___list_0; }
|
|
inline void set_list_0(List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 * value)
|
|
{
|
|
___list_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tB1ACA39EC6FB8CAF2F033D767916CAEED114E37C, ___index_1)); }
|
|
inline int32_t get_index_1() const { return ___index_1; }
|
|
inline int32_t* get_address_of_index_1() { return &___index_1; }
|
|
inline void set_index_1(int32_t value)
|
|
{
|
|
___index_1 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tB1ACA39EC6FB8CAF2F033D767916CAEED114E37C, ___version_2)); }
|
|
inline int32_t get_version_2() const { return ___version_2; }
|
|
inline int32_t* get_address_of_version_2() { return &___version_2; }
|
|
inline void set_version_2(int32_t value)
|
|
{
|
|
___version_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tB1ACA39EC6FB8CAF2F033D767916CAEED114E37C, ___current_3)); }
|
|
inline CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * get_current_3() const { return ___current_3; }
|
|
inline CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D ** get_address_of_current_3() { return &___current_3; }
|
|
inline void set_current_3(CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * value)
|
|
{
|
|
___current_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Collections.Generic.List`1_Enumerator<System.Object>
|
|
struct Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD
|
|
{
|
|
public:
|
|
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
|
|
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * ___list_0;
|
|
// System.Int32 System.Collections.Generic.List`1_Enumerator::index
|
|
int32_t ___index_1;
|
|
// System.Int32 System.Collections.Generic.List`1_Enumerator::version
|
|
int32_t ___version_2;
|
|
// T System.Collections.Generic.List`1_Enumerator::current
|
|
RuntimeObject * ___current_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD, ___list_0)); }
|
|
inline List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * get_list_0() const { return ___list_0; }
|
|
inline List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D ** get_address_of_list_0() { return &___list_0; }
|
|
inline void set_list_0(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * value)
|
|
{
|
|
___list_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD, ___index_1)); }
|
|
inline int32_t get_index_1() const { return ___index_1; }
|
|
inline int32_t* get_address_of_index_1() { return &___index_1; }
|
|
inline void set_index_1(int32_t value)
|
|
{
|
|
___index_1 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD, ___version_2)); }
|
|
inline int32_t get_version_2() const { return ___version_2; }
|
|
inline int32_t* get_address_of_version_2() { return &___version_2; }
|
|
inline void set_version_2(int32_t value)
|
|
{
|
|
___version_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD, ___current_3)); }
|
|
inline RuntimeObject * get_current_3() const { return ___current_3; }
|
|
inline RuntimeObject ** get_address_of_current_3() { return &___current_3; }
|
|
inline void set_current_3(RuntimeObject * value)
|
|
{
|
|
___current_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Collections.Specialized.BitVector32
|
|
struct BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1
|
|
{
|
|
public:
|
|
// System.UInt32 System.Collections.Specialized.BitVector32::data
|
|
uint32_t ___data_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_data_0() { return static_cast<int32_t>(offsetof(BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1, ___data_0)); }
|
|
inline uint32_t get_data_0() const { return ___data_0; }
|
|
inline uint32_t* get_address_of_data_0() { return &___data_0; }
|
|
inline void set_data_0(uint32_t value)
|
|
{
|
|
___data_0 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.BrowsableAttribute
|
|
struct BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
|
|
{
|
|
public:
|
|
// System.Boolean System.ComponentModel.BrowsableAttribute::browsable
|
|
bool ___browsable_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_browsable_3() { return static_cast<int32_t>(offsetof(BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1, ___browsable_3)); }
|
|
inline bool get_browsable_3() const { return ___browsable_3; }
|
|
inline bool* get_address_of_browsable_3() { return &___browsable_3; }
|
|
inline void set_browsable_3(bool value)
|
|
{
|
|
___browsable_3 = value;
|
|
}
|
|
};
|
|
|
|
struct BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1_StaticFields
|
|
{
|
|
public:
|
|
// System.ComponentModel.BrowsableAttribute System.ComponentModel.BrowsableAttribute::Yes
|
|
BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 * ___Yes_0;
|
|
// System.ComponentModel.BrowsableAttribute System.ComponentModel.BrowsableAttribute::No
|
|
BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 * ___No_1;
|
|
// System.ComponentModel.BrowsableAttribute System.ComponentModel.BrowsableAttribute::Default
|
|
BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 * ___Default_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Yes_0() { return static_cast<int32_t>(offsetof(BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1_StaticFields, ___Yes_0)); }
|
|
inline BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 * get_Yes_0() const { return ___Yes_0; }
|
|
inline BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 ** get_address_of_Yes_0() { return &___Yes_0; }
|
|
inline void set_Yes_0(BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 * value)
|
|
{
|
|
___Yes_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Yes_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_No_1() { return static_cast<int32_t>(offsetof(BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1_StaticFields, ___No_1)); }
|
|
inline BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 * get_No_1() const { return ___No_1; }
|
|
inline BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 ** get_address_of_No_1() { return &___No_1; }
|
|
inline void set_No_1(BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 * value)
|
|
{
|
|
___No_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___No_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Default_2() { return static_cast<int32_t>(offsetof(BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1_StaticFields, ___Default_2)); }
|
|
inline BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 * get_Default_2() const { return ___Default_2; }
|
|
inline BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 ** get_address_of_Default_2() { return &___Default_2; }
|
|
inline void set_Default_2(BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 * value)
|
|
{
|
|
___Default_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Default_2), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.CancelEventArgs
|
|
struct CancelEventArgs_t2843141F2893A01C11535CD7E38072CA26D7794D : public EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E
|
|
{
|
|
public:
|
|
// System.Boolean System.ComponentModel.CancelEventArgs::cancel
|
|
bool ___cancel_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_cancel_1() { return static_cast<int32_t>(offsetof(CancelEventArgs_t2843141F2893A01C11535CD7E38072CA26D7794D, ___cancel_1)); }
|
|
inline bool get_cancel_1() const { return ___cancel_1; }
|
|
inline bool* get_address_of_cancel_1() { return &___cancel_1; }
|
|
inline void set_cancel_1(bool value)
|
|
{
|
|
___cancel_1 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.CategoryAttribute
|
|
struct CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
|
|
{
|
|
public:
|
|
// System.Boolean System.ComponentModel.CategoryAttribute::localized
|
|
bool ___localized_14;
|
|
// System.String System.ComponentModel.CategoryAttribute::categoryValue
|
|
String_t* ___categoryValue_15;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_localized_14() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80, ___localized_14)); }
|
|
inline bool get_localized_14() const { return ___localized_14; }
|
|
inline bool* get_address_of_localized_14() { return &___localized_14; }
|
|
inline void set_localized_14(bool value)
|
|
{
|
|
___localized_14 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_categoryValue_15() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80, ___categoryValue_15)); }
|
|
inline String_t* get_categoryValue_15() const { return ___categoryValue_15; }
|
|
inline String_t** get_address_of_categoryValue_15() { return &___categoryValue_15; }
|
|
inline void set_categoryValue_15(String_t* value)
|
|
{
|
|
___categoryValue_15 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___categoryValue_15), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_StaticFields
|
|
{
|
|
public:
|
|
// System.ComponentModel.CategoryAttribute modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.CategoryAttribute::appearance
|
|
CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * ___appearance_0;
|
|
// System.ComponentModel.CategoryAttribute modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.CategoryAttribute::asynchronous
|
|
CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * ___asynchronous_1;
|
|
// System.ComponentModel.CategoryAttribute modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.CategoryAttribute::behavior
|
|
CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * ___behavior_2;
|
|
// System.ComponentModel.CategoryAttribute modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.CategoryAttribute::data
|
|
CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * ___data_3;
|
|
// System.ComponentModel.CategoryAttribute modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.CategoryAttribute::design
|
|
CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * ___design_4;
|
|
// System.ComponentModel.CategoryAttribute modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.CategoryAttribute::action
|
|
CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * ___action_5;
|
|
// System.ComponentModel.CategoryAttribute modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.CategoryAttribute::format
|
|
CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * ___format_6;
|
|
// System.ComponentModel.CategoryAttribute modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.CategoryAttribute::layout
|
|
CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * ___layout_7;
|
|
// System.ComponentModel.CategoryAttribute modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.CategoryAttribute::mouse
|
|
CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * ___mouse_8;
|
|
// System.ComponentModel.CategoryAttribute modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.CategoryAttribute::key
|
|
CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * ___key_9;
|
|
// System.ComponentModel.CategoryAttribute modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.CategoryAttribute::focus
|
|
CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * ___focus_10;
|
|
// System.ComponentModel.CategoryAttribute modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.CategoryAttribute::windowStyle
|
|
CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * ___windowStyle_11;
|
|
// System.ComponentModel.CategoryAttribute modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.CategoryAttribute::dragDrop
|
|
CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * ___dragDrop_12;
|
|
// System.ComponentModel.CategoryAttribute modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.CategoryAttribute::defAttr
|
|
CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * ___defAttr_13;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_appearance_0() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_StaticFields, ___appearance_0)); }
|
|
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * get_appearance_0() const { return ___appearance_0; }
|
|
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 ** get_address_of_appearance_0() { return &___appearance_0; }
|
|
inline void set_appearance_0(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * value)
|
|
{
|
|
___appearance_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___appearance_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_asynchronous_1() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_StaticFields, ___asynchronous_1)); }
|
|
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * get_asynchronous_1() const { return ___asynchronous_1; }
|
|
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 ** get_address_of_asynchronous_1() { return &___asynchronous_1; }
|
|
inline void set_asynchronous_1(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * value)
|
|
{
|
|
___asynchronous_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___asynchronous_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_behavior_2() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_StaticFields, ___behavior_2)); }
|
|
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * get_behavior_2() const { return ___behavior_2; }
|
|
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 ** get_address_of_behavior_2() { return &___behavior_2; }
|
|
inline void set_behavior_2(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * value)
|
|
{
|
|
___behavior_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___behavior_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_data_3() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_StaticFields, ___data_3)); }
|
|
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * get_data_3() const { return ___data_3; }
|
|
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 ** get_address_of_data_3() { return &___data_3; }
|
|
inline void set_data_3(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * value)
|
|
{
|
|
___data_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___data_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_design_4() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_StaticFields, ___design_4)); }
|
|
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * get_design_4() const { return ___design_4; }
|
|
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 ** get_address_of_design_4() { return &___design_4; }
|
|
inline void set_design_4(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * value)
|
|
{
|
|
___design_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___design_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_action_5() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_StaticFields, ___action_5)); }
|
|
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * get_action_5() const { return ___action_5; }
|
|
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 ** get_address_of_action_5() { return &___action_5; }
|
|
inline void set_action_5(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * value)
|
|
{
|
|
___action_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___action_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_format_6() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_StaticFields, ___format_6)); }
|
|
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * get_format_6() const { return ___format_6; }
|
|
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 ** get_address_of_format_6() { return &___format_6; }
|
|
inline void set_format_6(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * value)
|
|
{
|
|
___format_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___format_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_layout_7() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_StaticFields, ___layout_7)); }
|
|
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * get_layout_7() const { return ___layout_7; }
|
|
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 ** get_address_of_layout_7() { return &___layout_7; }
|
|
inline void set_layout_7(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * value)
|
|
{
|
|
___layout_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___layout_7), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_mouse_8() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_StaticFields, ___mouse_8)); }
|
|
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * get_mouse_8() const { return ___mouse_8; }
|
|
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 ** get_address_of_mouse_8() { return &___mouse_8; }
|
|
inline void set_mouse_8(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * value)
|
|
{
|
|
___mouse_8 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___mouse_8), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_key_9() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_StaticFields, ___key_9)); }
|
|
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * get_key_9() const { return ___key_9; }
|
|
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 ** get_address_of_key_9() { return &___key_9; }
|
|
inline void set_key_9(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * value)
|
|
{
|
|
___key_9 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___key_9), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_focus_10() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_StaticFields, ___focus_10)); }
|
|
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * get_focus_10() const { return ___focus_10; }
|
|
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 ** get_address_of_focus_10() { return &___focus_10; }
|
|
inline void set_focus_10(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * value)
|
|
{
|
|
___focus_10 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___focus_10), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_windowStyle_11() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_StaticFields, ___windowStyle_11)); }
|
|
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * get_windowStyle_11() const { return ___windowStyle_11; }
|
|
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 ** get_address_of_windowStyle_11() { return &___windowStyle_11; }
|
|
inline void set_windowStyle_11(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * value)
|
|
{
|
|
___windowStyle_11 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___windowStyle_11), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_dragDrop_12() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_StaticFields, ___dragDrop_12)); }
|
|
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * get_dragDrop_12() const { return ___dragDrop_12; }
|
|
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 ** get_address_of_dragDrop_12() { return &___dragDrop_12; }
|
|
inline void set_dragDrop_12(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * value)
|
|
{
|
|
___dragDrop_12 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___dragDrop_12), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_defAttr_13() { return static_cast<int32_t>(offsetof(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_StaticFields, ___defAttr_13)); }
|
|
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * get_defAttr_13() const { return ___defAttr_13; }
|
|
inline CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 ** get_address_of_defAttr_13() { return &___defAttr_13; }
|
|
inline void set_defAttr_13(CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * value)
|
|
{
|
|
___defAttr_13 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___defAttr_13), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.Component
|
|
struct Component_t7AEFE153F6778CF52E1981BC3E811A9604B29473 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF
|
|
{
|
|
public:
|
|
// System.ComponentModel.ISite System.ComponentModel.Component::site
|
|
RuntimeObject* ___site_2;
|
|
// System.ComponentModel.EventHandlerList System.ComponentModel.Component::events
|
|
EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 * ___events_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_site_2() { return static_cast<int32_t>(offsetof(Component_t7AEFE153F6778CF52E1981BC3E811A9604B29473, ___site_2)); }
|
|
inline RuntimeObject* get_site_2() const { return ___site_2; }
|
|
inline RuntimeObject** get_address_of_site_2() { return &___site_2; }
|
|
inline void set_site_2(RuntimeObject* value)
|
|
{
|
|
___site_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___site_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_events_3() { return static_cast<int32_t>(offsetof(Component_t7AEFE153F6778CF52E1981BC3E811A9604B29473, ___events_3)); }
|
|
inline EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 * get_events_3() const { return ___events_3; }
|
|
inline EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 ** get_address_of_events_3() { return &___events_3; }
|
|
inline void set_events_3(EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 * value)
|
|
{
|
|
___events_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___events_3), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct Component_t7AEFE153F6778CF52E1981BC3E811A9604B29473_StaticFields
|
|
{
|
|
public:
|
|
// System.Object System.ComponentModel.Component::EventDisposed
|
|
RuntimeObject * ___EventDisposed_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_EventDisposed_1() { return static_cast<int32_t>(offsetof(Component_t7AEFE153F6778CF52E1981BC3E811A9604B29473_StaticFields, ___EventDisposed_1)); }
|
|
inline RuntimeObject * get_EventDisposed_1() const { return ___EventDisposed_1; }
|
|
inline RuntimeObject ** get_address_of_EventDisposed_1() { return &___EventDisposed_1; }
|
|
inline void set_EventDisposed_1(RuntimeObject * value)
|
|
{
|
|
___EventDisposed_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___EventDisposed_1), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.DelegatingTypeDescriptionProvider
|
|
struct DelegatingTypeDescriptionProvider_t1479D886AEC7B0D4A74E19212E904337D5505A56 : public TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591
|
|
{
|
|
public:
|
|
// System.Type System.ComponentModel.DelegatingTypeDescriptionProvider::_type
|
|
Type_t * ____type_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__type_2() { return static_cast<int32_t>(offsetof(DelegatingTypeDescriptionProvider_t1479D886AEC7B0D4A74E19212E904337D5505A56, ____type_2)); }
|
|
inline Type_t * get__type_2() const { return ____type_2; }
|
|
inline Type_t ** get_address_of__type_2() { return &____type_2; }
|
|
inline void set__type_2(Type_t * value)
|
|
{
|
|
____type_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____type_2), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.DescriptionAttribute
|
|
struct DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
|
|
{
|
|
public:
|
|
// System.String System.ComponentModel.DescriptionAttribute::description
|
|
String_t* ___description_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_description_1() { return static_cast<int32_t>(offsetof(DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75, ___description_1)); }
|
|
inline String_t* get_description_1() const { return ___description_1; }
|
|
inline String_t** get_address_of_description_1() { return &___description_1; }
|
|
inline void set_description_1(String_t* value)
|
|
{
|
|
___description_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___description_1), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75_StaticFields
|
|
{
|
|
public:
|
|
// System.ComponentModel.DescriptionAttribute System.ComponentModel.DescriptionAttribute::Default
|
|
DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75 * ___Default_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Default_0() { return static_cast<int32_t>(offsetof(DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75_StaticFields, ___Default_0)); }
|
|
inline DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75 * get_Default_0() const { return ___Default_0; }
|
|
inline DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75 ** get_address_of_Default_0() { return &___Default_0; }
|
|
inline void set_Default_0(DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75 * value)
|
|
{
|
|
___Default_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Default_0), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.Design.DesigntimeLicenseContext
|
|
struct DesigntimeLicenseContext_tFBEF4E72A1E0E7F03A01D35ADFEE86A23F848AA1 : public LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A
|
|
{
|
|
public:
|
|
// System.Collections.Hashtable System.ComponentModel.Design.DesigntimeLicenseContext::savedLicenseKeys
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___savedLicenseKeys_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_savedLicenseKeys_0() { return static_cast<int32_t>(offsetof(DesigntimeLicenseContext_tFBEF4E72A1E0E7F03A01D35ADFEE86A23F848AA1, ___savedLicenseKeys_0)); }
|
|
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_savedLicenseKeys_0() const { return ___savedLicenseKeys_0; }
|
|
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_savedLicenseKeys_0() { return &___savedLicenseKeys_0; }
|
|
inline void set_savedLicenseKeys_0(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
|
|
{
|
|
___savedLicenseKeys_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___savedLicenseKeys_0), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.Design.RuntimeLicenseContext
|
|
struct RuntimeLicenseContext_t1367392EED5E28C90B5128BF01CA0B846120C641 : public LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A
|
|
{
|
|
public:
|
|
// System.Collections.Hashtable System.ComponentModel.Design.RuntimeLicenseContext::savedLicenseKeys
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___savedLicenseKeys_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_savedLicenseKeys_1() { return static_cast<int32_t>(offsetof(RuntimeLicenseContext_t1367392EED5E28C90B5128BF01CA0B846120C641, ___savedLicenseKeys_1)); }
|
|
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_savedLicenseKeys_1() const { return ___savedLicenseKeys_1; }
|
|
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_savedLicenseKeys_1() { return &___savedLicenseKeys_1; }
|
|
inline void set_savedLicenseKeys_1(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
|
|
{
|
|
___savedLicenseKeys_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___savedLicenseKeys_1), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct RuntimeLicenseContext_t1367392EED5E28C90B5128BF01CA0B846120C641_StaticFields
|
|
{
|
|
public:
|
|
// System.Diagnostics.TraceSwitch System.ComponentModel.Design.RuntimeLicenseContext::RuntimeLicenseContextSwitch
|
|
TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8 * ___RuntimeLicenseContextSwitch_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_RuntimeLicenseContextSwitch_0() { return static_cast<int32_t>(offsetof(RuntimeLicenseContext_t1367392EED5E28C90B5128BF01CA0B846120C641_StaticFields, ___RuntimeLicenseContextSwitch_0)); }
|
|
inline TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8 * get_RuntimeLicenseContextSwitch_0() const { return ___RuntimeLicenseContextSwitch_0; }
|
|
inline TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8 ** get_address_of_RuntimeLicenseContextSwitch_0() { return &___RuntimeLicenseContextSwitch_0; }
|
|
inline void set_RuntimeLicenseContextSwitch_0(TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8 * value)
|
|
{
|
|
___RuntimeLicenseContextSwitch_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___RuntimeLicenseContextSwitch_0), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.Design.Serialization.RootDesignerSerializerAttribute
|
|
struct RootDesignerSerializerAttribute_tD5A87C7E5CB002D859780E1BEF96D7E1214CC0AA : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
|
|
{
|
|
public:
|
|
// System.Boolean System.ComponentModel.Design.Serialization.RootDesignerSerializerAttribute::reloadable
|
|
bool ___reloadable_0;
|
|
// System.String System.ComponentModel.Design.Serialization.RootDesignerSerializerAttribute::serializerTypeName
|
|
String_t* ___serializerTypeName_1;
|
|
// System.String System.ComponentModel.Design.Serialization.RootDesignerSerializerAttribute::serializerBaseTypeName
|
|
String_t* ___serializerBaseTypeName_2;
|
|
// System.String System.ComponentModel.Design.Serialization.RootDesignerSerializerAttribute::typeId
|
|
String_t* ___typeId_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_reloadable_0() { return static_cast<int32_t>(offsetof(RootDesignerSerializerAttribute_tD5A87C7E5CB002D859780E1BEF96D7E1214CC0AA, ___reloadable_0)); }
|
|
inline bool get_reloadable_0() const { return ___reloadable_0; }
|
|
inline bool* get_address_of_reloadable_0() { return &___reloadable_0; }
|
|
inline void set_reloadable_0(bool value)
|
|
{
|
|
___reloadable_0 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_serializerTypeName_1() { return static_cast<int32_t>(offsetof(RootDesignerSerializerAttribute_tD5A87C7E5CB002D859780E1BEF96D7E1214CC0AA, ___serializerTypeName_1)); }
|
|
inline String_t* get_serializerTypeName_1() const { return ___serializerTypeName_1; }
|
|
inline String_t** get_address_of_serializerTypeName_1() { return &___serializerTypeName_1; }
|
|
inline void set_serializerTypeName_1(String_t* value)
|
|
{
|
|
___serializerTypeName_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___serializerTypeName_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_serializerBaseTypeName_2() { return static_cast<int32_t>(offsetof(RootDesignerSerializerAttribute_tD5A87C7E5CB002D859780E1BEF96D7E1214CC0AA, ___serializerBaseTypeName_2)); }
|
|
inline String_t* get_serializerBaseTypeName_2() const { return ___serializerBaseTypeName_2; }
|
|
inline String_t** get_address_of_serializerBaseTypeName_2() { return &___serializerBaseTypeName_2; }
|
|
inline void set_serializerBaseTypeName_2(String_t* value)
|
|
{
|
|
___serializerBaseTypeName_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___serializerBaseTypeName_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_typeId_3() { return static_cast<int32_t>(offsetof(RootDesignerSerializerAttribute_tD5A87C7E5CB002D859780E1BEF96D7E1214CC0AA, ___typeId_3)); }
|
|
inline String_t* get_typeId_3() const { return ___typeId_3; }
|
|
inline String_t** get_address_of_typeId_3() { return &___typeId_3; }
|
|
inline void set_typeId_3(String_t* value)
|
|
{
|
|
___typeId_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___typeId_3), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.DesignOnlyAttribute
|
|
struct DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
|
|
{
|
|
public:
|
|
// System.Boolean System.ComponentModel.DesignOnlyAttribute::isDesignOnly
|
|
bool ___isDesignOnly_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_isDesignOnly_0() { return static_cast<int32_t>(offsetof(DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06, ___isDesignOnly_0)); }
|
|
inline bool get_isDesignOnly_0() const { return ___isDesignOnly_0; }
|
|
inline bool* get_address_of_isDesignOnly_0() { return &___isDesignOnly_0; }
|
|
inline void set_isDesignOnly_0(bool value)
|
|
{
|
|
___isDesignOnly_0 = value;
|
|
}
|
|
};
|
|
|
|
struct DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_StaticFields
|
|
{
|
|
public:
|
|
// System.ComponentModel.DesignOnlyAttribute System.ComponentModel.DesignOnlyAttribute::Yes
|
|
DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * ___Yes_1;
|
|
// System.ComponentModel.DesignOnlyAttribute System.ComponentModel.DesignOnlyAttribute::No
|
|
DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * ___No_2;
|
|
// System.ComponentModel.DesignOnlyAttribute System.ComponentModel.DesignOnlyAttribute::Default
|
|
DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * ___Default_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Yes_1() { return static_cast<int32_t>(offsetof(DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_StaticFields, ___Yes_1)); }
|
|
inline DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * get_Yes_1() const { return ___Yes_1; }
|
|
inline DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 ** get_address_of_Yes_1() { return &___Yes_1; }
|
|
inline void set_Yes_1(DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * value)
|
|
{
|
|
___Yes_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Yes_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_No_2() { return static_cast<int32_t>(offsetof(DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_StaticFields, ___No_2)); }
|
|
inline DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * get_No_2() const { return ___No_2; }
|
|
inline DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 ** get_address_of_No_2() { return &___No_2; }
|
|
inline void set_No_2(DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * value)
|
|
{
|
|
___No_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___No_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Default_3() { return static_cast<int32_t>(offsetof(DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_StaticFields, ___Default_3)); }
|
|
inline DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * get_Default_3() const { return ___Default_3; }
|
|
inline DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 ** get_address_of_Default_3() { return &___Default_3; }
|
|
inline void set_Default_3(DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * value)
|
|
{
|
|
___Default_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Default_3), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.DesignTimeVisibleAttribute
|
|
struct DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
|
|
{
|
|
public:
|
|
// System.Boolean System.ComponentModel.DesignTimeVisibleAttribute::visible
|
|
bool ___visible_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_visible_0() { return static_cast<int32_t>(offsetof(DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466, ___visible_0)); }
|
|
inline bool get_visible_0() const { return ___visible_0; }
|
|
inline bool* get_address_of_visible_0() { return &___visible_0; }
|
|
inline void set_visible_0(bool value)
|
|
{
|
|
___visible_0 = value;
|
|
}
|
|
};
|
|
|
|
struct DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466_StaticFields
|
|
{
|
|
public:
|
|
// System.ComponentModel.DesignTimeVisibleAttribute System.ComponentModel.DesignTimeVisibleAttribute::Yes
|
|
DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 * ___Yes_1;
|
|
// System.ComponentModel.DesignTimeVisibleAttribute System.ComponentModel.DesignTimeVisibleAttribute::No
|
|
DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 * ___No_2;
|
|
// System.ComponentModel.DesignTimeVisibleAttribute System.ComponentModel.DesignTimeVisibleAttribute::Default
|
|
DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 * ___Default_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Yes_1() { return static_cast<int32_t>(offsetof(DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466_StaticFields, ___Yes_1)); }
|
|
inline DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 * get_Yes_1() const { return ___Yes_1; }
|
|
inline DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 ** get_address_of_Yes_1() { return &___Yes_1; }
|
|
inline void set_Yes_1(DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 * value)
|
|
{
|
|
___Yes_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Yes_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_No_2() { return static_cast<int32_t>(offsetof(DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466_StaticFields, ___No_2)); }
|
|
inline DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 * get_No_2() const { return ___No_2; }
|
|
inline DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 ** get_address_of_No_2() { return &___No_2; }
|
|
inline void set_No_2(DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 * value)
|
|
{
|
|
___No_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___No_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Default_3() { return static_cast<int32_t>(offsetof(DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466_StaticFields, ___Default_3)); }
|
|
inline DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 * get_Default_3() const { return ___Default_3; }
|
|
inline DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 ** get_address_of_Default_3() { return &___Default_3; }
|
|
inline void set_Default_3(DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 * value)
|
|
{
|
|
___Default_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Default_3), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.DesignerAttribute
|
|
struct DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
|
|
{
|
|
public:
|
|
// System.String System.ComponentModel.DesignerAttribute::designerTypeName
|
|
String_t* ___designerTypeName_0;
|
|
// System.String System.ComponentModel.DesignerAttribute::designerBaseTypeName
|
|
String_t* ___designerBaseTypeName_1;
|
|
// System.String System.ComponentModel.DesignerAttribute::typeId
|
|
String_t* ___typeId_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_designerTypeName_0() { return static_cast<int32_t>(offsetof(DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0, ___designerTypeName_0)); }
|
|
inline String_t* get_designerTypeName_0() const { return ___designerTypeName_0; }
|
|
inline String_t** get_address_of_designerTypeName_0() { return &___designerTypeName_0; }
|
|
inline void set_designerTypeName_0(String_t* value)
|
|
{
|
|
___designerTypeName_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___designerTypeName_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_designerBaseTypeName_1() { return static_cast<int32_t>(offsetof(DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0, ___designerBaseTypeName_1)); }
|
|
inline String_t* get_designerBaseTypeName_1() const { return ___designerBaseTypeName_1; }
|
|
inline String_t** get_address_of_designerBaseTypeName_1() { return &___designerBaseTypeName_1; }
|
|
inline void set_designerBaseTypeName_1(String_t* value)
|
|
{
|
|
___designerBaseTypeName_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___designerBaseTypeName_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_typeId_2() { return static_cast<int32_t>(offsetof(DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0, ___typeId_2)); }
|
|
inline String_t* get_typeId_2() const { return ___typeId_2; }
|
|
inline String_t** get_address_of_typeId_2() { return &___typeId_2; }
|
|
inline void set_typeId_2(String_t* value)
|
|
{
|
|
___typeId_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___typeId_2), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.DesignerCategoryAttribute
|
|
struct DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
|
|
{
|
|
public:
|
|
// System.String System.ComponentModel.DesignerCategoryAttribute::category
|
|
String_t* ___category_0;
|
|
// System.String System.ComponentModel.DesignerCategoryAttribute::typeId
|
|
String_t* ___typeId_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_category_0() { return static_cast<int32_t>(offsetof(DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA, ___category_0)); }
|
|
inline String_t* get_category_0() const { return ___category_0; }
|
|
inline String_t** get_address_of_category_0() { return &___category_0; }
|
|
inline void set_category_0(String_t* value)
|
|
{
|
|
___category_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___category_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_typeId_1() { return static_cast<int32_t>(offsetof(DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA, ___typeId_1)); }
|
|
inline String_t* get_typeId_1() const { return ___typeId_1; }
|
|
inline String_t** get_address_of_typeId_1() { return &___typeId_1; }
|
|
inline void set_typeId_1(String_t* value)
|
|
{
|
|
___typeId_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___typeId_1), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA_StaticFields
|
|
{
|
|
public:
|
|
// System.ComponentModel.DesignerCategoryAttribute System.ComponentModel.DesignerCategoryAttribute::Component
|
|
DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA * ___Component_2;
|
|
// System.ComponentModel.DesignerCategoryAttribute System.ComponentModel.DesignerCategoryAttribute::Default
|
|
DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA * ___Default_3;
|
|
// System.ComponentModel.DesignerCategoryAttribute System.ComponentModel.DesignerCategoryAttribute::Form
|
|
DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA * ___Form_4;
|
|
// System.ComponentModel.DesignerCategoryAttribute System.ComponentModel.DesignerCategoryAttribute::Generic
|
|
DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA * ___Generic_5;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Component_2() { return static_cast<int32_t>(offsetof(DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA_StaticFields, ___Component_2)); }
|
|
inline DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA * get_Component_2() const { return ___Component_2; }
|
|
inline DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA ** get_address_of_Component_2() { return &___Component_2; }
|
|
inline void set_Component_2(DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA * value)
|
|
{
|
|
___Component_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Component_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Default_3() { return static_cast<int32_t>(offsetof(DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA_StaticFields, ___Default_3)); }
|
|
inline DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA * get_Default_3() const { return ___Default_3; }
|
|
inline DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA ** get_address_of_Default_3() { return &___Default_3; }
|
|
inline void set_Default_3(DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA * value)
|
|
{
|
|
___Default_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Default_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Form_4() { return static_cast<int32_t>(offsetof(DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA_StaticFields, ___Form_4)); }
|
|
inline DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA * get_Form_4() const { return ___Form_4; }
|
|
inline DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA ** get_address_of_Form_4() { return &___Form_4; }
|
|
inline void set_Form_4(DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA * value)
|
|
{
|
|
___Form_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Form_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Generic_5() { return static_cast<int32_t>(offsetof(DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA_StaticFields, ___Generic_5)); }
|
|
inline DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA * get_Generic_5() const { return ___Generic_5; }
|
|
inline DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA ** get_address_of_Generic_5() { return &___Generic_5; }
|
|
inline void set_Generic_5(DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA * value)
|
|
{
|
|
___Generic_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Generic_5), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.DisplayNameAttribute
|
|
struct DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
|
|
{
|
|
public:
|
|
// System.String System.ComponentModel.DisplayNameAttribute::_displayName
|
|
String_t* ____displayName_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__displayName_1() { return static_cast<int32_t>(offsetof(DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE, ____displayName_1)); }
|
|
inline String_t* get__displayName_1() const { return ____displayName_1; }
|
|
inline String_t** get_address_of__displayName_1() { return &____displayName_1; }
|
|
inline void set__displayName_1(String_t* value)
|
|
{
|
|
____displayName_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____displayName_1), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE_StaticFields
|
|
{
|
|
public:
|
|
// System.ComponentModel.DisplayNameAttribute System.ComponentModel.DisplayNameAttribute::Default
|
|
DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE * ___Default_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Default_0() { return static_cast<int32_t>(offsetof(DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE_StaticFields, ___Default_0)); }
|
|
inline DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE * get_Default_0() const { return ___Default_0; }
|
|
inline DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE ** get_address_of_Default_0() { return &___Default_0; }
|
|
inline void set_Default_0(DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE * value)
|
|
{
|
|
___Default_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Default_0), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.EditorAttribute
|
|
struct EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
|
|
{
|
|
public:
|
|
// System.String System.ComponentModel.EditorAttribute::baseTypeName
|
|
String_t* ___baseTypeName_0;
|
|
// System.String System.ComponentModel.EditorAttribute::typeName
|
|
String_t* ___typeName_1;
|
|
// System.String System.ComponentModel.EditorAttribute::typeId
|
|
String_t* ___typeId_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_baseTypeName_0() { return static_cast<int32_t>(offsetof(EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5, ___baseTypeName_0)); }
|
|
inline String_t* get_baseTypeName_0() const { return ___baseTypeName_0; }
|
|
inline String_t** get_address_of_baseTypeName_0() { return &___baseTypeName_0; }
|
|
inline void set_baseTypeName_0(String_t* value)
|
|
{
|
|
___baseTypeName_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___baseTypeName_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_typeName_1() { return static_cast<int32_t>(offsetof(EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5, ___typeName_1)); }
|
|
inline String_t* get_typeName_1() const { return ___typeName_1; }
|
|
inline String_t** get_address_of_typeName_1() { return &___typeName_1; }
|
|
inline void set_typeName_1(String_t* value)
|
|
{
|
|
___typeName_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___typeName_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_typeId_2() { return static_cast<int32_t>(offsetof(EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5, ___typeId_2)); }
|
|
inline String_t* get_typeId_2() const { return ___typeId_2; }
|
|
inline String_t** get_address_of_typeId_2() { return &___typeId_2; }
|
|
inline void set_typeId_2(String_t* value)
|
|
{
|
|
___typeId_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___typeId_2), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.EventDescriptor
|
|
struct EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 : public MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ComponentModel.ExtenderProvidedPropertyAttribute
|
|
struct ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
|
|
{
|
|
public:
|
|
// System.ComponentModel.PropertyDescriptor System.ComponentModel.ExtenderProvidedPropertyAttribute::extenderProperty
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___extenderProperty_0;
|
|
// System.ComponentModel.IExtenderProvider System.ComponentModel.ExtenderProvidedPropertyAttribute::provider
|
|
RuntimeObject* ___provider_1;
|
|
// System.Type System.ComponentModel.ExtenderProvidedPropertyAttribute::receiverType
|
|
Type_t * ___receiverType_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_extenderProperty_0() { return static_cast<int32_t>(offsetof(ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68, ___extenderProperty_0)); }
|
|
inline PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * get_extenderProperty_0() const { return ___extenderProperty_0; }
|
|
inline PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D ** get_address_of_extenderProperty_0() { return &___extenderProperty_0; }
|
|
inline void set_extenderProperty_0(PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * value)
|
|
{
|
|
___extenderProperty_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___extenderProperty_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_provider_1() { return static_cast<int32_t>(offsetof(ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68, ___provider_1)); }
|
|
inline RuntimeObject* get_provider_1() const { return ___provider_1; }
|
|
inline RuntimeObject** get_address_of_provider_1() { return &___provider_1; }
|
|
inline void set_provider_1(RuntimeObject* value)
|
|
{
|
|
___provider_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___provider_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_receiverType_2() { return static_cast<int32_t>(offsetof(ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68, ___receiverType_2)); }
|
|
inline Type_t * get_receiverType_2() const { return ___receiverType_2; }
|
|
inline Type_t ** get_address_of_receiverType_2() { return &___receiverType_2; }
|
|
inline void set_receiverType_2(Type_t * value)
|
|
{
|
|
___receiverType_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___receiverType_2), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.HandledEventArgs
|
|
struct HandledEventArgs_t26999700606DD7EC365648A50C9E3E15EFCAC2DF : public EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E
|
|
{
|
|
public:
|
|
// System.Boolean System.ComponentModel.HandledEventArgs::handled
|
|
bool ___handled_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_handled_1() { return static_cast<int32_t>(offsetof(HandledEventArgs_t26999700606DD7EC365648A50C9E3E15EFCAC2DF, ___handled_1)); }
|
|
inline bool get_handled_1() const { return ___handled_1; }
|
|
inline bool* get_address_of_handled_1() { return &___handled_1; }
|
|
inline void set_handled_1(bool value)
|
|
{
|
|
___handled_1 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.ImmutableObjectAttribute
|
|
struct ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
|
|
{
|
|
public:
|
|
// System.Boolean System.ComponentModel.ImmutableObjectAttribute::immutable
|
|
bool ___immutable_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_immutable_3() { return static_cast<int32_t>(offsetof(ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492, ___immutable_3)); }
|
|
inline bool get_immutable_3() const { return ___immutable_3; }
|
|
inline bool* get_address_of_immutable_3() { return &___immutable_3; }
|
|
inline void set_immutable_3(bool value)
|
|
{
|
|
___immutable_3 = value;
|
|
}
|
|
};
|
|
|
|
struct ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492_StaticFields
|
|
{
|
|
public:
|
|
// System.ComponentModel.ImmutableObjectAttribute System.ComponentModel.ImmutableObjectAttribute::Yes
|
|
ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 * ___Yes_0;
|
|
// System.ComponentModel.ImmutableObjectAttribute System.ComponentModel.ImmutableObjectAttribute::No
|
|
ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 * ___No_1;
|
|
// System.ComponentModel.ImmutableObjectAttribute System.ComponentModel.ImmutableObjectAttribute::Default
|
|
ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 * ___Default_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Yes_0() { return static_cast<int32_t>(offsetof(ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492_StaticFields, ___Yes_0)); }
|
|
inline ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 * get_Yes_0() const { return ___Yes_0; }
|
|
inline ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 ** get_address_of_Yes_0() { return &___Yes_0; }
|
|
inline void set_Yes_0(ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 * value)
|
|
{
|
|
___Yes_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Yes_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_No_1() { return static_cast<int32_t>(offsetof(ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492_StaticFields, ___No_1)); }
|
|
inline ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 * get_No_1() const { return ___No_1; }
|
|
inline ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 ** get_address_of_No_1() { return &___No_1; }
|
|
inline void set_No_1(ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 * value)
|
|
{
|
|
___No_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___No_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Default_2() { return static_cast<int32_t>(offsetof(ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492_StaticFields, ___Default_2)); }
|
|
inline ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 * get_Default_2() const { return ___Default_2; }
|
|
inline ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 ** get_address_of_Default_2() { return &___Default_2; }
|
|
inline void set_Default_2(ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 * value)
|
|
{
|
|
___Default_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Default_2), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.InitializationEventAttribute
|
|
struct InitializationEventAttribute_t66A3424618601597D5221545AA27CCAE24DC19B1 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
|
|
{
|
|
public:
|
|
// System.String System.ComponentModel.InitializationEventAttribute::eventName
|
|
String_t* ___eventName_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_eventName_0() { return static_cast<int32_t>(offsetof(InitializationEventAttribute_t66A3424618601597D5221545AA27CCAE24DC19B1, ___eventName_0)); }
|
|
inline String_t* get_eventName_0() const { return ___eventName_0; }
|
|
inline String_t** get_address_of_eventName_0() { return &___eventName_0; }
|
|
inline void set_eventName_0(String_t* value)
|
|
{
|
|
___eventName_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___eventName_0), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.InstallerTypeAttribute
|
|
struct InstallerTypeAttribute_t69E2B80148C986610B0F88883070C0BAD2A2B755 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
|
|
{
|
|
public:
|
|
// System.String System.ComponentModel.InstallerTypeAttribute::_typeName
|
|
String_t* ____typeName_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__typeName_0() { return static_cast<int32_t>(offsetof(InstallerTypeAttribute_t69E2B80148C986610B0F88883070C0BAD2A2B755, ____typeName_0)); }
|
|
inline String_t* get__typeName_0() const { return ____typeName_0; }
|
|
inline String_t** get_address_of__typeName_0() { return &____typeName_0; }
|
|
inline void set__typeName_0(String_t* value)
|
|
{
|
|
____typeName_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____typeName_0), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.LicFileLicenseProvider
|
|
struct LicFileLicenseProvider_t458B091F8501C2890FD617BB025AB49DC494076F : public LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ComponentModel.LicFileLicenseProvider_LicFileLicense
|
|
struct LicFileLicense_t5AF4C870B7DF7EE91D6C0FA5DA1354763EF9E5FF : public License_t9011453B97942387364692C7DFAD2DEDB2160F8C
|
|
{
|
|
public:
|
|
// System.String System.ComponentModel.LicFileLicenseProvider_LicFileLicense::key
|
|
String_t* ___key_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(LicFileLicense_t5AF4C870B7DF7EE91D6C0FA5DA1354763EF9E5FF, ___key_0)); }
|
|
inline String_t* get_key_0() const { return ___key_0; }
|
|
inline String_t** get_address_of_key_0() { return &___key_0; }
|
|
inline void set_key_0(String_t* value)
|
|
{
|
|
___key_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.LicenseProviderAttribute
|
|
struct LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
|
|
{
|
|
public:
|
|
// System.Type System.ComponentModel.LicenseProviderAttribute::licenseProviderType
|
|
Type_t * ___licenseProviderType_1;
|
|
// System.String System.ComponentModel.LicenseProviderAttribute::licenseProviderName
|
|
String_t* ___licenseProviderName_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_licenseProviderType_1() { return static_cast<int32_t>(offsetof(LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D, ___licenseProviderType_1)); }
|
|
inline Type_t * get_licenseProviderType_1() const { return ___licenseProviderType_1; }
|
|
inline Type_t ** get_address_of_licenseProviderType_1() { return &___licenseProviderType_1; }
|
|
inline void set_licenseProviderType_1(Type_t * value)
|
|
{
|
|
___licenseProviderType_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___licenseProviderType_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_licenseProviderName_2() { return static_cast<int32_t>(offsetof(LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D, ___licenseProviderName_2)); }
|
|
inline String_t* get_licenseProviderName_2() const { return ___licenseProviderName_2; }
|
|
inline String_t** get_address_of_licenseProviderName_2() { return &___licenseProviderName_2; }
|
|
inline void set_licenseProviderName_2(String_t* value)
|
|
{
|
|
___licenseProviderName_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___licenseProviderName_2), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D_StaticFields
|
|
{
|
|
public:
|
|
// System.ComponentModel.LicenseProviderAttribute System.ComponentModel.LicenseProviderAttribute::Default
|
|
LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D * ___Default_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Default_0() { return static_cast<int32_t>(offsetof(LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D_StaticFields, ___Default_0)); }
|
|
inline LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D * get_Default_0() const { return ___Default_0; }
|
|
inline LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D ** get_address_of_Default_0() { return &___Default_0; }
|
|
inline void set_Default_0(LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D * value)
|
|
{
|
|
___Default_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Default_0), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.ListBindableAttribute
|
|
struct ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
|
|
{
|
|
public:
|
|
// System.Boolean System.ComponentModel.ListBindableAttribute::listBindable
|
|
bool ___listBindable_3;
|
|
// System.Boolean System.ComponentModel.ListBindableAttribute::isDefault
|
|
bool ___isDefault_4;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_listBindable_3() { return static_cast<int32_t>(offsetof(ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2, ___listBindable_3)); }
|
|
inline bool get_listBindable_3() const { return ___listBindable_3; }
|
|
inline bool* get_address_of_listBindable_3() { return &___listBindable_3; }
|
|
inline void set_listBindable_3(bool value)
|
|
{
|
|
___listBindable_3 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_isDefault_4() { return static_cast<int32_t>(offsetof(ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2, ___isDefault_4)); }
|
|
inline bool get_isDefault_4() const { return ___isDefault_4; }
|
|
inline bool* get_address_of_isDefault_4() { return &___isDefault_4; }
|
|
inline void set_isDefault_4(bool value)
|
|
{
|
|
___isDefault_4 = value;
|
|
}
|
|
};
|
|
|
|
struct ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2_StaticFields
|
|
{
|
|
public:
|
|
// System.ComponentModel.ListBindableAttribute System.ComponentModel.ListBindableAttribute::Yes
|
|
ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 * ___Yes_0;
|
|
// System.ComponentModel.ListBindableAttribute System.ComponentModel.ListBindableAttribute::No
|
|
ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 * ___No_1;
|
|
// System.ComponentModel.ListBindableAttribute System.ComponentModel.ListBindableAttribute::Default
|
|
ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 * ___Default_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Yes_0() { return static_cast<int32_t>(offsetof(ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2_StaticFields, ___Yes_0)); }
|
|
inline ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 * get_Yes_0() const { return ___Yes_0; }
|
|
inline ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 ** get_address_of_Yes_0() { return &___Yes_0; }
|
|
inline void set_Yes_0(ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 * value)
|
|
{
|
|
___Yes_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Yes_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_No_1() { return static_cast<int32_t>(offsetof(ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2_StaticFields, ___No_1)); }
|
|
inline ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 * get_No_1() const { return ___No_1; }
|
|
inline ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 ** get_address_of_No_1() { return &___No_1; }
|
|
inline void set_No_1(ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 * value)
|
|
{
|
|
___No_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___No_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Default_2() { return static_cast<int32_t>(offsetof(ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2_StaticFields, ___Default_2)); }
|
|
inline ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 * get_Default_2() const { return ___Default_2; }
|
|
inline ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 ** get_address_of_Default_2() { return &___Default_2; }
|
|
inline void set_Default_2(ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 * value)
|
|
{
|
|
___Default_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Default_2), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.LocalizableAttribute
|
|
struct LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
|
|
{
|
|
public:
|
|
// System.Boolean System.ComponentModel.LocalizableAttribute::isLocalizable
|
|
bool ___isLocalizable_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_isLocalizable_0() { return static_cast<int32_t>(offsetof(LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F, ___isLocalizable_0)); }
|
|
inline bool get_isLocalizable_0() const { return ___isLocalizable_0; }
|
|
inline bool* get_address_of_isLocalizable_0() { return &___isLocalizable_0; }
|
|
inline void set_isLocalizable_0(bool value)
|
|
{
|
|
___isLocalizable_0 = value;
|
|
}
|
|
};
|
|
|
|
struct LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F_StaticFields
|
|
{
|
|
public:
|
|
// System.ComponentModel.LocalizableAttribute System.ComponentModel.LocalizableAttribute::Yes
|
|
LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F * ___Yes_1;
|
|
// System.ComponentModel.LocalizableAttribute System.ComponentModel.LocalizableAttribute::No
|
|
LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F * ___No_2;
|
|
// System.ComponentModel.LocalizableAttribute System.ComponentModel.LocalizableAttribute::Default
|
|
LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F * ___Default_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Yes_1() { return static_cast<int32_t>(offsetof(LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F_StaticFields, ___Yes_1)); }
|
|
inline LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F * get_Yes_1() const { return ___Yes_1; }
|
|
inline LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F ** get_address_of_Yes_1() { return &___Yes_1; }
|
|
inline void set_Yes_1(LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F * value)
|
|
{
|
|
___Yes_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Yes_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_No_2() { return static_cast<int32_t>(offsetof(LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F_StaticFields, ___No_2)); }
|
|
inline LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F * get_No_2() const { return ___No_2; }
|
|
inline LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F ** get_address_of_No_2() { return &___No_2; }
|
|
inline void set_No_2(LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F * value)
|
|
{
|
|
___No_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___No_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Default_3() { return static_cast<int32_t>(offsetof(LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F_StaticFields, ___Default_3)); }
|
|
inline LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F * get_Default_3() const { return ___Default_3; }
|
|
inline LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F ** get_address_of_Default_3() { return &___Default_3; }
|
|
inline void set_Default_3(LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F * value)
|
|
{
|
|
___Default_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Default_3), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.LookupBindingPropertiesAttribute
|
|
struct LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
|
|
{
|
|
public:
|
|
// System.String System.ComponentModel.LookupBindingPropertiesAttribute::dataSource
|
|
String_t* ___dataSource_0;
|
|
// System.String System.ComponentModel.LookupBindingPropertiesAttribute::displayMember
|
|
String_t* ___displayMember_1;
|
|
// System.String System.ComponentModel.LookupBindingPropertiesAttribute::valueMember
|
|
String_t* ___valueMember_2;
|
|
// System.String System.ComponentModel.LookupBindingPropertiesAttribute::lookupMember
|
|
String_t* ___lookupMember_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_dataSource_0() { return static_cast<int32_t>(offsetof(LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B, ___dataSource_0)); }
|
|
inline String_t* get_dataSource_0() const { return ___dataSource_0; }
|
|
inline String_t** get_address_of_dataSource_0() { return &___dataSource_0; }
|
|
inline void set_dataSource_0(String_t* value)
|
|
{
|
|
___dataSource_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___dataSource_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_displayMember_1() { return static_cast<int32_t>(offsetof(LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B, ___displayMember_1)); }
|
|
inline String_t* get_displayMember_1() const { return ___displayMember_1; }
|
|
inline String_t** get_address_of_displayMember_1() { return &___displayMember_1; }
|
|
inline void set_displayMember_1(String_t* value)
|
|
{
|
|
___displayMember_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___displayMember_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_valueMember_2() { return static_cast<int32_t>(offsetof(LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B, ___valueMember_2)); }
|
|
inline String_t* get_valueMember_2() const { return ___valueMember_2; }
|
|
inline String_t** get_address_of_valueMember_2() { return &___valueMember_2; }
|
|
inline void set_valueMember_2(String_t* value)
|
|
{
|
|
___valueMember_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___valueMember_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_lookupMember_3() { return static_cast<int32_t>(offsetof(LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B, ___lookupMember_3)); }
|
|
inline String_t* get_lookupMember_3() const { return ___lookupMember_3; }
|
|
inline String_t** get_address_of_lookupMember_3() { return &___lookupMember_3; }
|
|
inline void set_lookupMember_3(String_t* value)
|
|
{
|
|
___lookupMember_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___lookupMember_3), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B_StaticFields
|
|
{
|
|
public:
|
|
// System.ComponentModel.LookupBindingPropertiesAttribute System.ComponentModel.LookupBindingPropertiesAttribute::Default
|
|
LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B * ___Default_4;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Default_4() { return static_cast<int32_t>(offsetof(LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B_StaticFields, ___Default_4)); }
|
|
inline LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B * get_Default_4() const { return ___Default_4; }
|
|
inline LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B ** get_address_of_Default_4() { return &___Default_4; }
|
|
inline void set_Default_4(LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B * value)
|
|
{
|
|
___Default_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Default_4), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.MergablePropertyAttribute
|
|
struct MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
|
|
{
|
|
public:
|
|
// System.Boolean System.ComponentModel.MergablePropertyAttribute::allowMerge
|
|
bool ___allowMerge_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_allowMerge_3() { return static_cast<int32_t>(offsetof(MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909, ___allowMerge_3)); }
|
|
inline bool get_allowMerge_3() const { return ___allowMerge_3; }
|
|
inline bool* get_address_of_allowMerge_3() { return &___allowMerge_3; }
|
|
inline void set_allowMerge_3(bool value)
|
|
{
|
|
___allowMerge_3 = value;
|
|
}
|
|
};
|
|
|
|
struct MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909_StaticFields
|
|
{
|
|
public:
|
|
// System.ComponentModel.MergablePropertyAttribute System.ComponentModel.MergablePropertyAttribute::Yes
|
|
MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 * ___Yes_0;
|
|
// System.ComponentModel.MergablePropertyAttribute System.ComponentModel.MergablePropertyAttribute::No
|
|
MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 * ___No_1;
|
|
// System.ComponentModel.MergablePropertyAttribute System.ComponentModel.MergablePropertyAttribute::Default
|
|
MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 * ___Default_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Yes_0() { return static_cast<int32_t>(offsetof(MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909_StaticFields, ___Yes_0)); }
|
|
inline MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 * get_Yes_0() const { return ___Yes_0; }
|
|
inline MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 ** get_address_of_Yes_0() { return &___Yes_0; }
|
|
inline void set_Yes_0(MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 * value)
|
|
{
|
|
___Yes_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Yes_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_No_1() { return static_cast<int32_t>(offsetof(MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909_StaticFields, ___No_1)); }
|
|
inline MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 * get_No_1() const { return ___No_1; }
|
|
inline MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 ** get_address_of_No_1() { return &___No_1; }
|
|
inline void set_No_1(MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 * value)
|
|
{
|
|
___No_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___No_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Default_2() { return static_cast<int32_t>(offsetof(MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909_StaticFields, ___Default_2)); }
|
|
inline MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 * get_Default_2() const { return ___Default_2; }
|
|
inline MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 ** get_address_of_Default_2() { return &___Default_2; }
|
|
inline void set_Default_2(MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 * value)
|
|
{
|
|
___Default_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Default_2), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.NestedContainer
|
|
struct NestedContainer_t08F11932945A6F531D1338CC5A05BAD8D99F8AE9 : public Container_tC98CD69632DEA16FC061454A770CC7D11FFFEEF1
|
|
{
|
|
public:
|
|
// System.ComponentModel.IComponent System.ComponentModel.NestedContainer::_owner
|
|
RuntimeObject* ____owner_6;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__owner_6() { return static_cast<int32_t>(offsetof(NestedContainer_t08F11932945A6F531D1338CC5A05BAD8D99F8AE9, ____owner_6)); }
|
|
inline RuntimeObject* get__owner_6() const { return ____owner_6; }
|
|
inline RuntimeObject** get_address_of__owner_6() { return &____owner_6; }
|
|
inline void set__owner_6(RuntimeObject* value)
|
|
{
|
|
____owner_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____owner_6), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.NotifyParentPropertyAttribute
|
|
struct NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
|
|
{
|
|
public:
|
|
// System.Boolean System.ComponentModel.NotifyParentPropertyAttribute::notifyParent
|
|
bool ___notifyParent_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_notifyParent_3() { return static_cast<int32_t>(offsetof(NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68, ___notifyParent_3)); }
|
|
inline bool get_notifyParent_3() const { return ___notifyParent_3; }
|
|
inline bool* get_address_of_notifyParent_3() { return &___notifyParent_3; }
|
|
inline void set_notifyParent_3(bool value)
|
|
{
|
|
___notifyParent_3 = value;
|
|
}
|
|
};
|
|
|
|
struct NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68_StaticFields
|
|
{
|
|
public:
|
|
// System.ComponentModel.NotifyParentPropertyAttribute System.ComponentModel.NotifyParentPropertyAttribute::Yes
|
|
NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68 * ___Yes_0;
|
|
// System.ComponentModel.NotifyParentPropertyAttribute System.ComponentModel.NotifyParentPropertyAttribute::No
|
|
NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68 * ___No_1;
|
|
// System.ComponentModel.NotifyParentPropertyAttribute System.ComponentModel.NotifyParentPropertyAttribute::Default
|
|
NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68 * ___Default_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Yes_0() { return static_cast<int32_t>(offsetof(NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68_StaticFields, ___Yes_0)); }
|
|
inline NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68 * get_Yes_0() const { return ___Yes_0; }
|
|
inline NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68 ** get_address_of_Yes_0() { return &___Yes_0; }
|
|
inline void set_Yes_0(NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68 * value)
|
|
{
|
|
___Yes_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Yes_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_No_1() { return static_cast<int32_t>(offsetof(NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68_StaticFields, ___No_1)); }
|
|
inline NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68 * get_No_1() const { return ___No_1; }
|
|
inline NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68 ** get_address_of_No_1() { return &___No_1; }
|
|
inline void set_No_1(NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68 * value)
|
|
{
|
|
___No_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___No_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Default_2() { return static_cast<int32_t>(offsetof(NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68_StaticFields, ___Default_2)); }
|
|
inline NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68 * get_Default_2() const { return ___Default_2; }
|
|
inline NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68 ** get_address_of_Default_2() { return &___Default_2; }
|
|
inline void set_Default_2(NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68 * value)
|
|
{
|
|
___Default_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Default_2), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.ParenthesizePropertyNameAttribute
|
|
struct ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
|
|
{
|
|
public:
|
|
// System.Boolean System.ComponentModel.ParenthesizePropertyNameAttribute::needParenthesis
|
|
bool ___needParenthesis_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_needParenthesis_1() { return static_cast<int32_t>(offsetof(ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114, ___needParenthesis_1)); }
|
|
inline bool get_needParenthesis_1() const { return ___needParenthesis_1; }
|
|
inline bool* get_address_of_needParenthesis_1() { return &___needParenthesis_1; }
|
|
inline void set_needParenthesis_1(bool value)
|
|
{
|
|
___needParenthesis_1 = value;
|
|
}
|
|
};
|
|
|
|
struct ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114_StaticFields
|
|
{
|
|
public:
|
|
// System.ComponentModel.ParenthesizePropertyNameAttribute System.ComponentModel.ParenthesizePropertyNameAttribute::Default
|
|
ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114 * ___Default_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Default_0() { return static_cast<int32_t>(offsetof(ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114_StaticFields, ___Default_0)); }
|
|
inline ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114 * get_Default_0() const { return ___Default_0; }
|
|
inline ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114 ** get_address_of_Default_0() { return &___Default_0; }
|
|
inline void set_Default_0(ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114 * value)
|
|
{
|
|
___Default_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Default_0), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.PasswordPropertyTextAttribute
|
|
struct PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
|
|
{
|
|
public:
|
|
// System.Boolean System.ComponentModel.PasswordPropertyTextAttribute::_password
|
|
bool ____password_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__password_3() { return static_cast<int32_t>(offsetof(PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1, ____password_3)); }
|
|
inline bool get__password_3() const { return ____password_3; }
|
|
inline bool* get_address_of__password_3() { return &____password_3; }
|
|
inline void set__password_3(bool value)
|
|
{
|
|
____password_3 = value;
|
|
}
|
|
};
|
|
|
|
struct PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1_StaticFields
|
|
{
|
|
public:
|
|
// System.ComponentModel.PasswordPropertyTextAttribute System.ComponentModel.PasswordPropertyTextAttribute::Yes
|
|
PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1 * ___Yes_0;
|
|
// System.ComponentModel.PasswordPropertyTextAttribute System.ComponentModel.PasswordPropertyTextAttribute::No
|
|
PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1 * ___No_1;
|
|
// System.ComponentModel.PasswordPropertyTextAttribute System.ComponentModel.PasswordPropertyTextAttribute::Default
|
|
PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1 * ___Default_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Yes_0() { return static_cast<int32_t>(offsetof(PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1_StaticFields, ___Yes_0)); }
|
|
inline PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1 * get_Yes_0() const { return ___Yes_0; }
|
|
inline PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1 ** get_address_of_Yes_0() { return &___Yes_0; }
|
|
inline void set_Yes_0(PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1 * value)
|
|
{
|
|
___Yes_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Yes_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_No_1() { return static_cast<int32_t>(offsetof(PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1_StaticFields, ___No_1)); }
|
|
inline PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1 * get_No_1() const { return ___No_1; }
|
|
inline PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1 ** get_address_of_No_1() { return &___No_1; }
|
|
inline void set_No_1(PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1 * value)
|
|
{
|
|
___No_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___No_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Default_2() { return static_cast<int32_t>(offsetof(PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1_StaticFields, ___Default_2)); }
|
|
inline PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1 * get_Default_2() const { return ___Default_2; }
|
|
inline PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1 ** get_address_of_Default_2() { return &___Default_2; }
|
|
inline void set_Default_2(PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1 * value)
|
|
{
|
|
___Default_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Default_2), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.ProgressChangedEventArgs
|
|
struct ProgressChangedEventArgs_tC79597AB8E4151EDFF627F615FE36B8D91811F3F : public EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E
|
|
{
|
|
public:
|
|
// System.Int32 System.ComponentModel.ProgressChangedEventArgs::progressPercentage
|
|
int32_t ___progressPercentage_1;
|
|
// System.Object System.ComponentModel.ProgressChangedEventArgs::userState
|
|
RuntimeObject * ___userState_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_progressPercentage_1() { return static_cast<int32_t>(offsetof(ProgressChangedEventArgs_tC79597AB8E4151EDFF627F615FE36B8D91811F3F, ___progressPercentage_1)); }
|
|
inline int32_t get_progressPercentage_1() const { return ___progressPercentage_1; }
|
|
inline int32_t* get_address_of_progressPercentage_1() { return &___progressPercentage_1; }
|
|
inline void set_progressPercentage_1(int32_t value)
|
|
{
|
|
___progressPercentage_1 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_userState_2() { return static_cast<int32_t>(offsetof(ProgressChangedEventArgs_tC79597AB8E4151EDFF627F615FE36B8D91811F3F, ___userState_2)); }
|
|
inline RuntimeObject * get_userState_2() const { return ___userState_2; }
|
|
inline RuntimeObject ** get_address_of_userState_2() { return &___userState_2; }
|
|
inline void set_userState_2(RuntimeObject * value)
|
|
{
|
|
___userState_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___userState_2), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.PropertyChangedEventArgs
|
|
struct PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46 : public EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E
|
|
{
|
|
public:
|
|
// System.String System.ComponentModel.PropertyChangedEventArgs::propertyName
|
|
String_t* ___propertyName_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_propertyName_1() { return static_cast<int32_t>(offsetof(PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46, ___propertyName_1)); }
|
|
inline String_t* get_propertyName_1() const { return ___propertyName_1; }
|
|
inline String_t** get_address_of_propertyName_1() { return &___propertyName_1; }
|
|
inline void set_propertyName_1(String_t* value)
|
|
{
|
|
___propertyName_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___propertyName_1), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.PropertyChangingEventArgs
|
|
struct PropertyChangingEventArgs_tF5EE6A07599A5560DB307BC199120416F0615DBA : public EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E
|
|
{
|
|
public:
|
|
// System.String System.ComponentModel.PropertyChangingEventArgs::propertyName
|
|
String_t* ___propertyName_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_propertyName_1() { return static_cast<int32_t>(offsetof(PropertyChangingEventArgs_tF5EE6A07599A5560DB307BC199120416F0615DBA, ___propertyName_1)); }
|
|
inline String_t* get_propertyName_1() const { return ___propertyName_1; }
|
|
inline String_t** get_address_of_propertyName_1() { return &___propertyName_1; }
|
|
inline void set_propertyName_1(String_t* value)
|
|
{
|
|
___propertyName_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___propertyName_1), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.PropertyDescriptor
|
|
struct PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D : public MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8
|
|
{
|
|
public:
|
|
// System.ComponentModel.TypeConverter System.ComponentModel.PropertyDescriptor::converter
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * ___converter_12;
|
|
// System.Collections.Hashtable System.ComponentModel.PropertyDescriptor::valueChangedHandlers
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___valueChangedHandlers_13;
|
|
// System.Object[] System.ComponentModel.PropertyDescriptor::editors
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___editors_14;
|
|
// System.Type[] System.ComponentModel.PropertyDescriptor::editorTypes
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___editorTypes_15;
|
|
// System.Int32 System.ComponentModel.PropertyDescriptor::editorCount
|
|
int32_t ___editorCount_16;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_converter_12() { return static_cast<int32_t>(offsetof(PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D, ___converter_12)); }
|
|
inline TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * get_converter_12() const { return ___converter_12; }
|
|
inline TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB ** get_address_of_converter_12() { return &___converter_12; }
|
|
inline void set_converter_12(TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * value)
|
|
{
|
|
___converter_12 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___converter_12), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_valueChangedHandlers_13() { return static_cast<int32_t>(offsetof(PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D, ___valueChangedHandlers_13)); }
|
|
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_valueChangedHandlers_13() const { return ___valueChangedHandlers_13; }
|
|
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_valueChangedHandlers_13() { return &___valueChangedHandlers_13; }
|
|
inline void set_valueChangedHandlers_13(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
|
|
{
|
|
___valueChangedHandlers_13 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___valueChangedHandlers_13), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_editors_14() { return static_cast<int32_t>(offsetof(PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D, ___editors_14)); }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_editors_14() const { return ___editors_14; }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_editors_14() { return &___editors_14; }
|
|
inline void set_editors_14(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
|
|
{
|
|
___editors_14 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___editors_14), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_editorTypes_15() { return static_cast<int32_t>(offsetof(PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D, ___editorTypes_15)); }
|
|
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_editorTypes_15() const { return ___editorTypes_15; }
|
|
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_editorTypes_15() { return &___editorTypes_15; }
|
|
inline void set_editorTypes_15(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
|
|
{
|
|
___editorTypes_15 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___editorTypes_15), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_editorCount_16() { return static_cast<int32_t>(offsetof(PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D, ___editorCount_16)); }
|
|
inline int32_t get_editorCount_16() const { return ___editorCount_16; }
|
|
inline int32_t* get_address_of_editorCount_16() { return &___editorCount_16; }
|
|
inline void set_editorCount_16(int32_t value)
|
|
{
|
|
___editorCount_16 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.ReadOnlyAttribute
|
|
struct ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
|
|
{
|
|
public:
|
|
// System.Boolean System.ComponentModel.ReadOnlyAttribute::isReadOnly
|
|
bool ___isReadOnly_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_isReadOnly_0() { return static_cast<int32_t>(offsetof(ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B, ___isReadOnly_0)); }
|
|
inline bool get_isReadOnly_0() const { return ___isReadOnly_0; }
|
|
inline bool* get_address_of_isReadOnly_0() { return &___isReadOnly_0; }
|
|
inline void set_isReadOnly_0(bool value)
|
|
{
|
|
___isReadOnly_0 = value;
|
|
}
|
|
};
|
|
|
|
struct ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_StaticFields
|
|
{
|
|
public:
|
|
// System.ComponentModel.ReadOnlyAttribute System.ComponentModel.ReadOnlyAttribute::Yes
|
|
ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * ___Yes_1;
|
|
// System.ComponentModel.ReadOnlyAttribute System.ComponentModel.ReadOnlyAttribute::No
|
|
ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * ___No_2;
|
|
// System.ComponentModel.ReadOnlyAttribute System.ComponentModel.ReadOnlyAttribute::Default
|
|
ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * ___Default_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Yes_1() { return static_cast<int32_t>(offsetof(ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_StaticFields, ___Yes_1)); }
|
|
inline ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * get_Yes_1() const { return ___Yes_1; }
|
|
inline ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B ** get_address_of_Yes_1() { return &___Yes_1; }
|
|
inline void set_Yes_1(ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * value)
|
|
{
|
|
___Yes_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Yes_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_No_2() { return static_cast<int32_t>(offsetof(ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_StaticFields, ___No_2)); }
|
|
inline ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * get_No_2() const { return ___No_2; }
|
|
inline ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B ** get_address_of_No_2() { return &___No_2; }
|
|
inline void set_No_2(ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * value)
|
|
{
|
|
___No_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___No_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Default_3() { return static_cast<int32_t>(offsetof(ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_StaticFields, ___Default_3)); }
|
|
inline ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * get_Default_3() const { return ___Default_3; }
|
|
inline ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B ** get_address_of_Default_3() { return &___Default_3; }
|
|
inline void set_Default_3(ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * value)
|
|
{
|
|
___Default_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Default_3), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.TypeConverterAttribute
|
|
struct TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
|
|
{
|
|
public:
|
|
// System.String System.ComponentModel.TypeConverterAttribute::typeName
|
|
String_t* ___typeName_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_typeName_0() { return static_cast<int32_t>(offsetof(TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8, ___typeName_0)); }
|
|
inline String_t* get_typeName_0() const { return ___typeName_0; }
|
|
inline String_t** get_address_of_typeName_0() { return &___typeName_0; }
|
|
inline void set_typeName_0(String_t* value)
|
|
{
|
|
___typeName_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___typeName_0), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8_StaticFields
|
|
{
|
|
public:
|
|
// System.ComponentModel.TypeConverterAttribute System.ComponentModel.TypeConverterAttribute::Default
|
|
TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * ___Default_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Default_1() { return static_cast<int32_t>(offsetof(TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8_StaticFields, ___Default_1)); }
|
|
inline TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * get_Default_1() const { return ___Default_1; }
|
|
inline TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 ** get_address_of_Default_1() { return &___Default_1; }
|
|
inline void set_Default_1(TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * value)
|
|
{
|
|
___Default_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Default_1), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Diagnostics.TraceSwitch
|
|
struct TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8 : public Switch_t9DAA0B271A8AAEC0A2EFE1EE30299CECB4C2002F
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.Double
|
|
struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409
|
|
{
|
|
public:
|
|
// System.Double System.Double::m_value
|
|
double ___m_value_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, ___m_value_0)); }
|
|
inline double get_m_value_0() const { return ___m_value_0; }
|
|
inline double* get_address_of_m_value_0() { return &___m_value_0; }
|
|
inline void set_m_value_0(double value)
|
|
{
|
|
___m_value_0 = value;
|
|
}
|
|
};
|
|
|
|
struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields
|
|
{
|
|
public:
|
|
// System.Double System.Double::NegativeZero
|
|
double ___NegativeZero_7;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_NegativeZero_7() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields, ___NegativeZero_7)); }
|
|
inline double get_NegativeZero_7() const { return ___NegativeZero_7; }
|
|
inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; }
|
|
inline void set_NegativeZero_7(double value)
|
|
{
|
|
___NegativeZero_7 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Enum
|
|
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 : public ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields
|
|
{
|
|
public:
|
|
// System.Char[] System.Enum::enumSeperatorCharArray
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___enumSeperatorCharArray_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields, ___enumSeperatorCharArray_0)); }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
|
|
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
|
|
{
|
|
___enumSeperatorCharArray_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
|
|
}
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.Enum
|
|
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke
|
|
{
|
|
};
|
|
// Native definition for COM marshalling of System.Enum
|
|
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com
|
|
{
|
|
};
|
|
|
|
// System.Guid
|
|
struct Guid_t
|
|
{
|
|
public:
|
|
// System.Int32 System.Guid::_a
|
|
int32_t ____a_1;
|
|
// System.Int16 System.Guid::_b
|
|
int16_t ____b_2;
|
|
// System.Int16 System.Guid::_c
|
|
int16_t ____c_3;
|
|
// System.Byte System.Guid::_d
|
|
uint8_t ____d_4;
|
|
// System.Byte System.Guid::_e
|
|
uint8_t ____e_5;
|
|
// System.Byte System.Guid::_f
|
|
uint8_t ____f_6;
|
|
// System.Byte System.Guid::_g
|
|
uint8_t ____g_7;
|
|
// System.Byte System.Guid::_h
|
|
uint8_t ____h_8;
|
|
// System.Byte System.Guid::_i
|
|
uint8_t ____i_9;
|
|
// System.Byte System.Guid::_j
|
|
uint8_t ____j_10;
|
|
// System.Byte System.Guid::_k
|
|
uint8_t ____k_11;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__a_1() { return static_cast<int32_t>(offsetof(Guid_t, ____a_1)); }
|
|
inline int32_t get__a_1() const { return ____a_1; }
|
|
inline int32_t* get_address_of__a_1() { return &____a_1; }
|
|
inline void set__a_1(int32_t value)
|
|
{
|
|
____a_1 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__b_2() { return static_cast<int32_t>(offsetof(Guid_t, ____b_2)); }
|
|
inline int16_t get__b_2() const { return ____b_2; }
|
|
inline int16_t* get_address_of__b_2() { return &____b_2; }
|
|
inline void set__b_2(int16_t value)
|
|
{
|
|
____b_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__c_3() { return static_cast<int32_t>(offsetof(Guid_t, ____c_3)); }
|
|
inline int16_t get__c_3() const { return ____c_3; }
|
|
inline int16_t* get_address_of__c_3() { return &____c_3; }
|
|
inline void set__c_3(int16_t value)
|
|
{
|
|
____c_3 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__d_4() { return static_cast<int32_t>(offsetof(Guid_t, ____d_4)); }
|
|
inline uint8_t get__d_4() const { return ____d_4; }
|
|
inline uint8_t* get_address_of__d_4() { return &____d_4; }
|
|
inline void set__d_4(uint8_t value)
|
|
{
|
|
____d_4 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__e_5() { return static_cast<int32_t>(offsetof(Guid_t, ____e_5)); }
|
|
inline uint8_t get__e_5() const { return ____e_5; }
|
|
inline uint8_t* get_address_of__e_5() { return &____e_5; }
|
|
inline void set__e_5(uint8_t value)
|
|
{
|
|
____e_5 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__f_6() { return static_cast<int32_t>(offsetof(Guid_t, ____f_6)); }
|
|
inline uint8_t get__f_6() const { return ____f_6; }
|
|
inline uint8_t* get_address_of__f_6() { return &____f_6; }
|
|
inline void set__f_6(uint8_t value)
|
|
{
|
|
____f_6 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__g_7() { return static_cast<int32_t>(offsetof(Guid_t, ____g_7)); }
|
|
inline uint8_t get__g_7() const { return ____g_7; }
|
|
inline uint8_t* get_address_of__g_7() { return &____g_7; }
|
|
inline void set__g_7(uint8_t value)
|
|
{
|
|
____g_7 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__h_8() { return static_cast<int32_t>(offsetof(Guid_t, ____h_8)); }
|
|
inline uint8_t get__h_8() const { return ____h_8; }
|
|
inline uint8_t* get_address_of__h_8() { return &____h_8; }
|
|
inline void set__h_8(uint8_t value)
|
|
{
|
|
____h_8 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__i_9() { return static_cast<int32_t>(offsetof(Guid_t, ____i_9)); }
|
|
inline uint8_t get__i_9() const { return ____i_9; }
|
|
inline uint8_t* get_address_of__i_9() { return &____i_9; }
|
|
inline void set__i_9(uint8_t value)
|
|
{
|
|
____i_9 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__j_10() { return static_cast<int32_t>(offsetof(Guid_t, ____j_10)); }
|
|
inline uint8_t get__j_10() const { return ____j_10; }
|
|
inline uint8_t* get_address_of__j_10() { return &____j_10; }
|
|
inline void set__j_10(uint8_t value)
|
|
{
|
|
____j_10 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__k_11() { return static_cast<int32_t>(offsetof(Guid_t, ____k_11)); }
|
|
inline uint8_t get__k_11() const { return ____k_11; }
|
|
inline uint8_t* get_address_of__k_11() { return &____k_11; }
|
|
inline void set__k_11(uint8_t value)
|
|
{
|
|
____k_11 = value;
|
|
}
|
|
};
|
|
|
|
struct Guid_t_StaticFields
|
|
{
|
|
public:
|
|
// System.Guid System.Guid::Empty
|
|
Guid_t ___Empty_0;
|
|
// System.Object System.Guid::_rngAccess
|
|
RuntimeObject * ____rngAccess_12;
|
|
// System.Security.Cryptography.RandomNumberGenerator System.Guid::_rng
|
|
RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * ____rng_13;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ___Empty_0)); }
|
|
inline Guid_t get_Empty_0() const { return ___Empty_0; }
|
|
inline Guid_t * get_address_of_Empty_0() { return &___Empty_0; }
|
|
inline void set_Empty_0(Guid_t value)
|
|
{
|
|
___Empty_0 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__rngAccess_12() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rngAccess_12)); }
|
|
inline RuntimeObject * get__rngAccess_12() const { return ____rngAccess_12; }
|
|
inline RuntimeObject ** get_address_of__rngAccess_12() { return &____rngAccess_12; }
|
|
inline void set__rngAccess_12(RuntimeObject * value)
|
|
{
|
|
____rngAccess_12 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____rngAccess_12), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__rng_13() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rng_13)); }
|
|
inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * get__rng_13() const { return ____rng_13; }
|
|
inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 ** get_address_of__rng_13() { return &____rng_13; }
|
|
inline void set__rng_13(RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * value)
|
|
{
|
|
____rng_13 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____rng_13), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.IO.Stream
|
|
struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF
|
|
{
|
|
public:
|
|
// System.IO.Stream_ReadWriteTask System.IO.Stream::_activeReadWriteTask
|
|
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * ____activeReadWriteTask_2;
|
|
// System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore
|
|
SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * ____asyncActiveSemaphore_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__activeReadWriteTask_2() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7, ____activeReadWriteTask_2)); }
|
|
inline ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * get__activeReadWriteTask_2() const { return ____activeReadWriteTask_2; }
|
|
inline ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 ** get_address_of__activeReadWriteTask_2() { return &____activeReadWriteTask_2; }
|
|
inline void set__activeReadWriteTask_2(ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * value)
|
|
{
|
|
____activeReadWriteTask_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____activeReadWriteTask_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__asyncActiveSemaphore_3() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7, ____asyncActiveSemaphore_3)); }
|
|
inline SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * get__asyncActiveSemaphore_3() const { return ____asyncActiveSemaphore_3; }
|
|
inline SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 ** get_address_of__asyncActiveSemaphore_3() { return &____asyncActiveSemaphore_3; }
|
|
inline void set__asyncActiveSemaphore_3(SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * value)
|
|
{
|
|
____asyncActiveSemaphore_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____asyncActiveSemaphore_3), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_StaticFields
|
|
{
|
|
public:
|
|
// System.IO.Stream System.IO.Stream::Null
|
|
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___Null_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Null_1() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_StaticFields, ___Null_1)); }
|
|
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get_Null_1() const { return ___Null_1; }
|
|
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of_Null_1() { return &___Null_1; }
|
|
inline void set_Null_1(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * value)
|
|
{
|
|
___Null_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Null_1), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.IO.TextReader
|
|
struct TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
struct TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields
|
|
{
|
|
public:
|
|
// System.Func`2<System.Object,System.String> System.IO.TextReader::_ReadLineDelegate
|
|
Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF * ____ReadLineDelegate_1;
|
|
// System.Func`2<System.Object,System.Int32> System.IO.TextReader::_ReadDelegate
|
|
Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * ____ReadDelegate_2;
|
|
// System.IO.TextReader System.IO.TextReader::Null
|
|
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ___Null_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__ReadLineDelegate_1() { return static_cast<int32_t>(offsetof(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields, ____ReadLineDelegate_1)); }
|
|
inline Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF * get__ReadLineDelegate_1() const { return ____ReadLineDelegate_1; }
|
|
inline Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF ** get_address_of__ReadLineDelegate_1() { return &____ReadLineDelegate_1; }
|
|
inline void set__ReadLineDelegate_1(Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF * value)
|
|
{
|
|
____ReadLineDelegate_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____ReadLineDelegate_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__ReadDelegate_2() { return static_cast<int32_t>(offsetof(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields, ____ReadDelegate_2)); }
|
|
inline Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * get__ReadDelegate_2() const { return ____ReadDelegate_2; }
|
|
inline Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 ** get_address_of__ReadDelegate_2() { return &____ReadDelegate_2; }
|
|
inline void set__ReadDelegate_2(Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * value)
|
|
{
|
|
____ReadDelegate_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____ReadDelegate_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Null_3() { return static_cast<int32_t>(offsetof(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields, ___Null_3)); }
|
|
inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * get_Null_3() const { return ___Null_3; }
|
|
inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A ** get_address_of_Null_3() { return &___Null_3; }
|
|
inline void set_Null_3(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * value)
|
|
{
|
|
___Null_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Null_3), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Int16
|
|
struct Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D
|
|
{
|
|
public:
|
|
// System.Int16 System.Int16::m_value
|
|
int16_t ___m_value_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, ___m_value_0)); }
|
|
inline int16_t get_m_value_0() const { return ___m_value_0; }
|
|
inline int16_t* get_address_of_m_value_0() { return &___m_value_0; }
|
|
inline void set_m_value_0(int16_t value)
|
|
{
|
|
___m_value_0 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Int32
|
|
struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102
|
|
{
|
|
public:
|
|
// System.Int32 System.Int32::m_value
|
|
int32_t ___m_value_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_t585191389E07734F19F3156FF88FB3EF4800D102, ___m_value_0)); }
|
|
inline int32_t get_m_value_0() const { return ___m_value_0; }
|
|
inline int32_t* get_address_of_m_value_0() { return &___m_value_0; }
|
|
inline void set_m_value_0(int32_t value)
|
|
{
|
|
___m_value_0 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Int64
|
|
struct Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436
|
|
{
|
|
public:
|
|
// System.Int64 System.Int64::m_value
|
|
int64_t ___m_value_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, ___m_value_0)); }
|
|
inline int64_t get_m_value_0() const { return ___m_value_0; }
|
|
inline int64_t* get_address_of_m_value_0() { return &___m_value_0; }
|
|
inline void set_m_value_0(int64_t value)
|
|
{
|
|
___m_value_0 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.IntPtr
|
|
struct IntPtr_t
|
|
{
|
|
public:
|
|
// System.Void* System.IntPtr::m_value
|
|
void* ___m_value_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
|
|
inline void* get_m_value_0() const { return ___m_value_0; }
|
|
inline void** get_address_of_m_value_0() { return &___m_value_0; }
|
|
inline void set_m_value_0(void* value)
|
|
{
|
|
___m_value_0 = value;
|
|
}
|
|
};
|
|
|
|
struct IntPtr_t_StaticFields
|
|
{
|
|
public:
|
|
// System.IntPtr System.IntPtr::Zero
|
|
intptr_t ___Zero_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
|
|
inline intptr_t get_Zero_1() const { return ___Zero_1; }
|
|
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
|
|
inline void set_Zero_1(intptr_t value)
|
|
{
|
|
___Zero_1 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Net.SystemNetworkCredential
|
|
struct SystemNetworkCredential_t99999F24C6F16257357D06725EC0365F1666875F : public NetworkCredential_tA91C6E62EA0F0915E6E393F5DFD87D03FF2C3062
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
struct SystemNetworkCredential_t99999F24C6F16257357D06725EC0365F1666875F_StaticFields
|
|
{
|
|
public:
|
|
// System.Net.SystemNetworkCredential System.Net.SystemNetworkCredential::defaultCredential
|
|
SystemNetworkCredential_t99999F24C6F16257357D06725EC0365F1666875F * ___defaultCredential_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_defaultCredential_3() { return static_cast<int32_t>(offsetof(SystemNetworkCredential_t99999F24C6F16257357D06725EC0365F1666875F_StaticFields, ___defaultCredential_3)); }
|
|
inline SystemNetworkCredential_t99999F24C6F16257357D06725EC0365F1666875F * get_defaultCredential_3() const { return ___defaultCredential_3; }
|
|
inline SystemNetworkCredential_t99999F24C6F16257357D06725EC0365F1666875F ** get_address_of_defaultCredential_3() { return &___defaultCredential_3; }
|
|
inline void set_defaultCredential_3(SystemNetworkCredential_t99999F24C6F16257357D06725EC0365F1666875F * value)
|
|
{
|
|
___defaultCredential_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___defaultCredential_3), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Nullable`1<System.Boolean>
|
|
struct Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793
|
|
{
|
|
public:
|
|
// T System.Nullable`1::value
|
|
bool ___value_0;
|
|
// System.Boolean System.Nullable`1::has_value
|
|
bool ___has_value_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793, ___value_0)); }
|
|
inline bool get_value_0() const { return ___value_0; }
|
|
inline bool* get_address_of_value_0() { return &___value_0; }
|
|
inline void set_value_0(bool value)
|
|
{
|
|
___value_0 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793, ___has_value_1)); }
|
|
inline bool get_has_value_1() const { return ___has_value_1; }
|
|
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
|
|
inline void set_has_value_1(bool value)
|
|
{
|
|
___has_value_1 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Reflection.FieldInfo
|
|
struct FieldInfo_t : public MemberInfo_t
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.Reflection.MethodBase
|
|
struct MethodBase_t : public MemberInfo_t
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.Reflection.ParameterModifier
|
|
struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E
|
|
{
|
|
public:
|
|
// System.Boolean[] System.Reflection.ParameterModifier::_byRef
|
|
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ____byRef_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__byRef_0() { return static_cast<int32_t>(offsetof(ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E, ____byRef_0)); }
|
|
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* get__byRef_0() const { return ____byRef_0; }
|
|
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040** get_address_of__byRef_0() { return &____byRef_0; }
|
|
inline void set__byRef_0(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* value)
|
|
{
|
|
____byRef_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____byRef_0), (void*)value);
|
|
}
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.Reflection.ParameterModifier
|
|
struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_marshaled_pinvoke
|
|
{
|
|
int32_t* ____byRef_0;
|
|
};
|
|
// Native definition for COM marshalling of System.Reflection.ParameterModifier
|
|
struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_marshaled_com
|
|
{
|
|
int32_t* ____byRef_0;
|
|
};
|
|
|
|
// System.Reflection.PropertyInfo
|
|
struct PropertyInfo_t : public MemberInfo_t
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.Void
|
|
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017
|
|
{
|
|
public:
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1];
|
|
};
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.AppDomain
|
|
struct AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF
|
|
{
|
|
public:
|
|
// System.IntPtr System.AppDomain::_mono_app_domain
|
|
intptr_t ____mono_app_domain_1;
|
|
// System.Object System.AppDomain::_evidence
|
|
RuntimeObject * ____evidence_6;
|
|
// System.Object System.AppDomain::_granted
|
|
RuntimeObject * ____granted_7;
|
|
// System.Int32 System.AppDomain::_principalPolicy
|
|
int32_t ____principalPolicy_8;
|
|
// System.AssemblyLoadEventHandler System.AppDomain::AssemblyLoad
|
|
AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9 * ___AssemblyLoad_11;
|
|
// System.ResolveEventHandler System.AppDomain::AssemblyResolve
|
|
ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * ___AssemblyResolve_12;
|
|
// System.EventHandler System.AppDomain::DomainUnload
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * ___DomainUnload_13;
|
|
// System.EventHandler System.AppDomain::ProcessExit
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * ___ProcessExit_14;
|
|
// System.ResolveEventHandler System.AppDomain::ResourceResolve
|
|
ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * ___ResourceResolve_15;
|
|
// System.ResolveEventHandler System.AppDomain::TypeResolve
|
|
ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * ___TypeResolve_16;
|
|
// System.UnhandledExceptionEventHandler System.AppDomain::UnhandledException
|
|
UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * ___UnhandledException_17;
|
|
// System.EventHandler`1<System.Runtime.ExceptionServices.FirstChanceExceptionEventArgs> System.AppDomain::FirstChanceException
|
|
EventHandler_1_t1E35ED2E29145994C6C03E57601C6D48C61083FF * ___FirstChanceException_18;
|
|
// System.Object System.AppDomain::_domain_manager
|
|
RuntimeObject * ____domain_manager_19;
|
|
// System.ResolveEventHandler System.AppDomain::ReflectionOnlyAssemblyResolve
|
|
ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * ___ReflectionOnlyAssemblyResolve_20;
|
|
// System.Object System.AppDomain::_activation
|
|
RuntimeObject * ____activation_21;
|
|
// System.Object System.AppDomain::_applicationIdentity
|
|
RuntimeObject * ____applicationIdentity_22;
|
|
// System.Collections.Generic.List`1<System.String> System.AppDomain::compatibility_switch
|
|
List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * ___compatibility_switch_23;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__mono_app_domain_1() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ____mono_app_domain_1)); }
|
|
inline intptr_t get__mono_app_domain_1() const { return ____mono_app_domain_1; }
|
|
inline intptr_t* get_address_of__mono_app_domain_1() { return &____mono_app_domain_1; }
|
|
inline void set__mono_app_domain_1(intptr_t value)
|
|
{
|
|
____mono_app_domain_1 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__evidence_6() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ____evidence_6)); }
|
|
inline RuntimeObject * get__evidence_6() const { return ____evidence_6; }
|
|
inline RuntimeObject ** get_address_of__evidence_6() { return &____evidence_6; }
|
|
inline void set__evidence_6(RuntimeObject * value)
|
|
{
|
|
____evidence_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____evidence_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__granted_7() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ____granted_7)); }
|
|
inline RuntimeObject * get__granted_7() const { return ____granted_7; }
|
|
inline RuntimeObject ** get_address_of__granted_7() { return &____granted_7; }
|
|
inline void set__granted_7(RuntimeObject * value)
|
|
{
|
|
____granted_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____granted_7), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__principalPolicy_8() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ____principalPolicy_8)); }
|
|
inline int32_t get__principalPolicy_8() const { return ____principalPolicy_8; }
|
|
inline int32_t* get_address_of__principalPolicy_8() { return &____principalPolicy_8; }
|
|
inline void set__principalPolicy_8(int32_t value)
|
|
{
|
|
____principalPolicy_8 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_AssemblyLoad_11() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___AssemblyLoad_11)); }
|
|
inline AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9 * get_AssemblyLoad_11() const { return ___AssemblyLoad_11; }
|
|
inline AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9 ** get_address_of_AssemblyLoad_11() { return &___AssemblyLoad_11; }
|
|
inline void set_AssemblyLoad_11(AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9 * value)
|
|
{
|
|
___AssemblyLoad_11 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___AssemblyLoad_11), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_AssemblyResolve_12() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___AssemblyResolve_12)); }
|
|
inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * get_AssemblyResolve_12() const { return ___AssemblyResolve_12; }
|
|
inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 ** get_address_of_AssemblyResolve_12() { return &___AssemblyResolve_12; }
|
|
inline void set_AssemblyResolve_12(ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * value)
|
|
{
|
|
___AssemblyResolve_12 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___AssemblyResolve_12), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_DomainUnload_13() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___DomainUnload_13)); }
|
|
inline EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * get_DomainUnload_13() const { return ___DomainUnload_13; }
|
|
inline EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C ** get_address_of_DomainUnload_13() { return &___DomainUnload_13; }
|
|
inline void set_DomainUnload_13(EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * value)
|
|
{
|
|
___DomainUnload_13 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___DomainUnload_13), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_ProcessExit_14() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___ProcessExit_14)); }
|
|
inline EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * get_ProcessExit_14() const { return ___ProcessExit_14; }
|
|
inline EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C ** get_address_of_ProcessExit_14() { return &___ProcessExit_14; }
|
|
inline void set_ProcessExit_14(EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * value)
|
|
{
|
|
___ProcessExit_14 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___ProcessExit_14), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_ResourceResolve_15() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___ResourceResolve_15)); }
|
|
inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * get_ResourceResolve_15() const { return ___ResourceResolve_15; }
|
|
inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 ** get_address_of_ResourceResolve_15() { return &___ResourceResolve_15; }
|
|
inline void set_ResourceResolve_15(ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * value)
|
|
{
|
|
___ResourceResolve_15 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___ResourceResolve_15), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_TypeResolve_16() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___TypeResolve_16)); }
|
|
inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * get_TypeResolve_16() const { return ___TypeResolve_16; }
|
|
inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 ** get_address_of_TypeResolve_16() { return &___TypeResolve_16; }
|
|
inline void set_TypeResolve_16(ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * value)
|
|
{
|
|
___TypeResolve_16 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___TypeResolve_16), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_UnhandledException_17() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___UnhandledException_17)); }
|
|
inline UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * get_UnhandledException_17() const { return ___UnhandledException_17; }
|
|
inline UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE ** get_address_of_UnhandledException_17() { return &___UnhandledException_17; }
|
|
inline void set_UnhandledException_17(UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * value)
|
|
{
|
|
___UnhandledException_17 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___UnhandledException_17), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_FirstChanceException_18() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___FirstChanceException_18)); }
|
|
inline EventHandler_1_t1E35ED2E29145994C6C03E57601C6D48C61083FF * get_FirstChanceException_18() const { return ___FirstChanceException_18; }
|
|
inline EventHandler_1_t1E35ED2E29145994C6C03E57601C6D48C61083FF ** get_address_of_FirstChanceException_18() { return &___FirstChanceException_18; }
|
|
inline void set_FirstChanceException_18(EventHandler_1_t1E35ED2E29145994C6C03E57601C6D48C61083FF * value)
|
|
{
|
|
___FirstChanceException_18 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___FirstChanceException_18), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__domain_manager_19() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ____domain_manager_19)); }
|
|
inline RuntimeObject * get__domain_manager_19() const { return ____domain_manager_19; }
|
|
inline RuntimeObject ** get_address_of__domain_manager_19() { return &____domain_manager_19; }
|
|
inline void set__domain_manager_19(RuntimeObject * value)
|
|
{
|
|
____domain_manager_19 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____domain_manager_19), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_ReflectionOnlyAssemblyResolve_20() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___ReflectionOnlyAssemblyResolve_20)); }
|
|
inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * get_ReflectionOnlyAssemblyResolve_20() const { return ___ReflectionOnlyAssemblyResolve_20; }
|
|
inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 ** get_address_of_ReflectionOnlyAssemblyResolve_20() { return &___ReflectionOnlyAssemblyResolve_20; }
|
|
inline void set_ReflectionOnlyAssemblyResolve_20(ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * value)
|
|
{
|
|
___ReflectionOnlyAssemblyResolve_20 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___ReflectionOnlyAssemblyResolve_20), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__activation_21() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ____activation_21)); }
|
|
inline RuntimeObject * get__activation_21() const { return ____activation_21; }
|
|
inline RuntimeObject ** get_address_of__activation_21() { return &____activation_21; }
|
|
inline void set__activation_21(RuntimeObject * value)
|
|
{
|
|
____activation_21 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____activation_21), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__applicationIdentity_22() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ____applicationIdentity_22)); }
|
|
inline RuntimeObject * get__applicationIdentity_22() const { return ____applicationIdentity_22; }
|
|
inline RuntimeObject ** get_address_of__applicationIdentity_22() { return &____applicationIdentity_22; }
|
|
inline void set__applicationIdentity_22(RuntimeObject * value)
|
|
{
|
|
____applicationIdentity_22 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____applicationIdentity_22), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_compatibility_switch_23() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___compatibility_switch_23)); }
|
|
inline List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * get_compatibility_switch_23() const { return ___compatibility_switch_23; }
|
|
inline List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 ** get_address_of_compatibility_switch_23() { return &___compatibility_switch_23; }
|
|
inline void set_compatibility_switch_23(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * value)
|
|
{
|
|
___compatibility_switch_23 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___compatibility_switch_23), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_StaticFields
|
|
{
|
|
public:
|
|
// System.String System.AppDomain::_process_guid
|
|
String_t* ____process_guid_2;
|
|
// System.AppDomain System.AppDomain::default_domain
|
|
AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * ___default_domain_10;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__process_guid_2() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_StaticFields, ____process_guid_2)); }
|
|
inline String_t* get__process_guid_2() const { return ____process_guid_2; }
|
|
inline String_t** get_address_of__process_guid_2() { return &____process_guid_2; }
|
|
inline void set__process_guid_2(String_t* value)
|
|
{
|
|
____process_guid_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____process_guid_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_default_domain_10() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_StaticFields, ___default_domain_10)); }
|
|
inline AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * get_default_domain_10() const { return ___default_domain_10; }
|
|
inline AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 ** get_address_of_default_domain_10() { return &___default_domain_10; }
|
|
inline void set_default_domain_10(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * value)
|
|
{
|
|
___default_domain_10 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___default_domain_10), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_ThreadStaticFields
|
|
{
|
|
public:
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Object> System.AppDomain::type_resolve_in_progress
|
|
Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * ___type_resolve_in_progress_3;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Object> System.AppDomain::assembly_resolve_in_progress
|
|
Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * ___assembly_resolve_in_progress_4;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Object> System.AppDomain::assembly_resolve_in_progress_refonly
|
|
Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * ___assembly_resolve_in_progress_refonly_5;
|
|
// System.Object System.AppDomain::_principal
|
|
RuntimeObject * ____principal_9;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_type_resolve_in_progress_3() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_ThreadStaticFields, ___type_resolve_in_progress_3)); }
|
|
inline Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * get_type_resolve_in_progress_3() const { return ___type_resolve_in_progress_3; }
|
|
inline Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA ** get_address_of_type_resolve_in_progress_3() { return &___type_resolve_in_progress_3; }
|
|
inline void set_type_resolve_in_progress_3(Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * value)
|
|
{
|
|
___type_resolve_in_progress_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___type_resolve_in_progress_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_assembly_resolve_in_progress_4() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_ThreadStaticFields, ___assembly_resolve_in_progress_4)); }
|
|
inline Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * get_assembly_resolve_in_progress_4() const { return ___assembly_resolve_in_progress_4; }
|
|
inline Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA ** get_address_of_assembly_resolve_in_progress_4() { return &___assembly_resolve_in_progress_4; }
|
|
inline void set_assembly_resolve_in_progress_4(Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * value)
|
|
{
|
|
___assembly_resolve_in_progress_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___assembly_resolve_in_progress_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_assembly_resolve_in_progress_refonly_5() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_ThreadStaticFields, ___assembly_resolve_in_progress_refonly_5)); }
|
|
inline Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * get_assembly_resolve_in_progress_refonly_5() const { return ___assembly_resolve_in_progress_refonly_5; }
|
|
inline Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA ** get_address_of_assembly_resolve_in_progress_refonly_5() { return &___assembly_resolve_in_progress_refonly_5; }
|
|
inline void set_assembly_resolve_in_progress_refonly_5(Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * value)
|
|
{
|
|
___assembly_resolve_in_progress_refonly_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___assembly_resolve_in_progress_refonly_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__principal_9() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_ThreadStaticFields, ____principal_9)); }
|
|
inline RuntimeObject * get__principal_9() const { return ____principal_9; }
|
|
inline RuntimeObject ** get_address_of__principal_9() { return &____principal_9; }
|
|
inline void set__principal_9(RuntimeObject * value)
|
|
{
|
|
____principal_9 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____principal_9), (void*)value);
|
|
}
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.AppDomain
|
|
struct AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_marshaled_pinvoke : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke
|
|
{
|
|
intptr_t ____mono_app_domain_1;
|
|
Il2CppIUnknown* ____evidence_6;
|
|
Il2CppIUnknown* ____granted_7;
|
|
int32_t ____principalPolicy_8;
|
|
Il2CppMethodPointer ___AssemblyLoad_11;
|
|
Il2CppMethodPointer ___AssemblyResolve_12;
|
|
Il2CppMethodPointer ___DomainUnload_13;
|
|
Il2CppMethodPointer ___ProcessExit_14;
|
|
Il2CppMethodPointer ___ResourceResolve_15;
|
|
Il2CppMethodPointer ___TypeResolve_16;
|
|
Il2CppMethodPointer ___UnhandledException_17;
|
|
Il2CppMethodPointer ___FirstChanceException_18;
|
|
Il2CppIUnknown* ____domain_manager_19;
|
|
Il2CppMethodPointer ___ReflectionOnlyAssemblyResolve_20;
|
|
Il2CppIUnknown* ____activation_21;
|
|
Il2CppIUnknown* ____applicationIdentity_22;
|
|
List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * ___compatibility_switch_23;
|
|
};
|
|
// Native definition for COM marshalling of System.AppDomain
|
|
struct AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_marshaled_com : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com
|
|
{
|
|
intptr_t ____mono_app_domain_1;
|
|
Il2CppIUnknown* ____evidence_6;
|
|
Il2CppIUnknown* ____granted_7;
|
|
int32_t ____principalPolicy_8;
|
|
Il2CppMethodPointer ___AssemblyLoad_11;
|
|
Il2CppMethodPointer ___AssemblyResolve_12;
|
|
Il2CppMethodPointer ___DomainUnload_13;
|
|
Il2CppMethodPointer ___ProcessExit_14;
|
|
Il2CppMethodPointer ___ResourceResolve_15;
|
|
Il2CppMethodPointer ___TypeResolve_16;
|
|
Il2CppMethodPointer ___UnhandledException_17;
|
|
Il2CppMethodPointer ___FirstChanceException_18;
|
|
Il2CppIUnknown* ____domain_manager_19;
|
|
Il2CppMethodPointer ___ReflectionOnlyAssemblyResolve_20;
|
|
Il2CppIUnknown* ____activation_21;
|
|
Il2CppIUnknown* ____applicationIdentity_22;
|
|
List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * ___compatibility_switch_23;
|
|
};
|
|
|
|
// System.Collections.Hashtable
|
|
struct Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Collections.Hashtable_bucket[] System.Collections.Hashtable::buckets
|
|
bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* ___buckets_0;
|
|
// System.Int32 System.Collections.Hashtable::count
|
|
int32_t ___count_1;
|
|
// System.Int32 System.Collections.Hashtable::occupancy
|
|
int32_t ___occupancy_2;
|
|
// System.Int32 System.Collections.Hashtable::loadsize
|
|
int32_t ___loadsize_3;
|
|
// System.Single System.Collections.Hashtable::loadFactor
|
|
float ___loadFactor_4;
|
|
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::version
|
|
int32_t ___version_5;
|
|
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::isWriterInProgress
|
|
bool ___isWriterInProgress_6;
|
|
// System.Collections.ICollection System.Collections.Hashtable::keys
|
|
RuntimeObject* ___keys_7;
|
|
// System.Collections.ICollection System.Collections.Hashtable::values
|
|
RuntimeObject* ___values_8;
|
|
// System.Collections.IEqualityComparer System.Collections.Hashtable::_keycomparer
|
|
RuntimeObject* ____keycomparer_9;
|
|
// System.Object System.Collections.Hashtable::_syncRoot
|
|
RuntimeObject * ____syncRoot_10;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___buckets_0)); }
|
|
inline bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* get_buckets_0() const { return ___buckets_0; }
|
|
inline bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A** get_address_of_buckets_0() { return &___buckets_0; }
|
|
inline void set_buckets_0(bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* value)
|
|
{
|
|
___buckets_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_count_1() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___count_1)); }
|
|
inline int32_t get_count_1() const { return ___count_1; }
|
|
inline int32_t* get_address_of_count_1() { return &___count_1; }
|
|
inline void set_count_1(int32_t value)
|
|
{
|
|
___count_1 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_occupancy_2() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___occupancy_2)); }
|
|
inline int32_t get_occupancy_2() const { return ___occupancy_2; }
|
|
inline int32_t* get_address_of_occupancy_2() { return &___occupancy_2; }
|
|
inline void set_occupancy_2(int32_t value)
|
|
{
|
|
___occupancy_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_loadsize_3() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___loadsize_3)); }
|
|
inline int32_t get_loadsize_3() const { return ___loadsize_3; }
|
|
inline int32_t* get_address_of_loadsize_3() { return &___loadsize_3; }
|
|
inline void set_loadsize_3(int32_t value)
|
|
{
|
|
___loadsize_3 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_loadFactor_4() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___loadFactor_4)); }
|
|
inline float get_loadFactor_4() const { return ___loadFactor_4; }
|
|
inline float* get_address_of_loadFactor_4() { return &___loadFactor_4; }
|
|
inline void set_loadFactor_4(float value)
|
|
{
|
|
___loadFactor_4 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_version_5() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___version_5)); }
|
|
inline int32_t get_version_5() const { return ___version_5; }
|
|
inline int32_t* get_address_of_version_5() { return &___version_5; }
|
|
inline void set_version_5(int32_t value)
|
|
{
|
|
___version_5 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_isWriterInProgress_6() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___isWriterInProgress_6)); }
|
|
inline bool get_isWriterInProgress_6() const { return ___isWriterInProgress_6; }
|
|
inline bool* get_address_of_isWriterInProgress_6() { return &___isWriterInProgress_6; }
|
|
inline void set_isWriterInProgress_6(bool value)
|
|
{
|
|
___isWriterInProgress_6 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___keys_7)); }
|
|
inline RuntimeObject* get_keys_7() const { return ___keys_7; }
|
|
inline RuntimeObject** get_address_of_keys_7() { return &___keys_7; }
|
|
inline void set_keys_7(RuntimeObject* value)
|
|
{
|
|
___keys_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___values_8)); }
|
|
inline RuntimeObject* get_values_8() const { return ___values_8; }
|
|
inline RuntimeObject** get_address_of_values_8() { return &___values_8; }
|
|
inline void set_values_8(RuntimeObject* value)
|
|
{
|
|
___values_8 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__keycomparer_9() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ____keycomparer_9)); }
|
|
inline RuntimeObject* get__keycomparer_9() const { return ____keycomparer_9; }
|
|
inline RuntimeObject** get_address_of__keycomparer_9() { return &____keycomparer_9; }
|
|
inline void set__keycomparer_9(RuntimeObject* value)
|
|
{
|
|
____keycomparer_9 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____keycomparer_9), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__syncRoot_10() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ____syncRoot_10)); }
|
|
inline RuntimeObject * get__syncRoot_10() const { return ____syncRoot_10; }
|
|
inline RuntimeObject ** get_address_of__syncRoot_10() { return &____syncRoot_10; }
|
|
inline void set__syncRoot_10(RuntimeObject * value)
|
|
{
|
|
____syncRoot_10 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_10), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.BindableSupport
|
|
struct BindableSupport_t08F85344F8C2B7F5F78146A953644FF6972D4E29
|
|
{
|
|
public:
|
|
// System.Int32 System.ComponentModel.BindableSupport::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindableSupport_t08F85344F8C2B7F5F78146A953644FF6972D4E29, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.DesignerSerializationVisibility
|
|
struct DesignerSerializationVisibility_tCD99EB7FAAE0F69CABCFCE53E16C39DDCB2FFC5A
|
|
{
|
|
public:
|
|
// System.Int32 System.ComponentModel.DesignerSerializationVisibility::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DesignerSerializationVisibility_tCD99EB7FAAE0F69CABCFCE53E16C39DDCB2FFC5A, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.DoWorkEventArgs
|
|
struct DoWorkEventArgs_t66930F141A21B5E954CE70A24AD0446E2CD5F606 : public CancelEventArgs_t2843141F2893A01C11535CD7E38072CA26D7794D
|
|
{
|
|
public:
|
|
// System.Object System.ComponentModel.DoWorkEventArgs::result
|
|
RuntimeObject * ___result_2;
|
|
// System.Object System.ComponentModel.DoWorkEventArgs::argument
|
|
RuntimeObject * ___argument_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_result_2() { return static_cast<int32_t>(offsetof(DoWorkEventArgs_t66930F141A21B5E954CE70A24AD0446E2CD5F606, ___result_2)); }
|
|
inline RuntimeObject * get_result_2() const { return ___result_2; }
|
|
inline RuntimeObject ** get_address_of_result_2() { return &___result_2; }
|
|
inline void set_result_2(RuntimeObject * value)
|
|
{
|
|
___result_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___result_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_argument_3() { return static_cast<int32_t>(offsetof(DoWorkEventArgs_t66930F141A21B5E954CE70A24AD0446E2CD5F606, ___argument_3)); }
|
|
inline RuntimeObject * get_argument_3() const { return ___argument_3; }
|
|
inline RuntimeObject ** get_address_of_argument_3() { return &___argument_3; }
|
|
inline void set_argument_3(RuntimeObject * value)
|
|
{
|
|
___argument_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___argument_3), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.EditorBrowsableState
|
|
struct EditorBrowsableState_t8EAF9BADAAE7DA735C235280DF4B8974EAA39C1B
|
|
{
|
|
public:
|
|
// System.Int32 System.ComponentModel.EditorBrowsableState::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EditorBrowsableState_t8EAF9BADAAE7DA735C235280DF4B8974EAA39C1B, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.ExtendedPropertyDescriptor
|
|
struct ExtendedPropertyDescriptor_tABDBA511CEE5442C0B06059799418904896E0CF6 : public PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D
|
|
{
|
|
public:
|
|
// System.ComponentModel.ReflectPropertyDescriptor System.ComponentModel.ExtendedPropertyDescriptor::extenderInfo
|
|
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * ___extenderInfo_17;
|
|
// System.ComponentModel.IExtenderProvider System.ComponentModel.ExtendedPropertyDescriptor::provider
|
|
RuntimeObject* ___provider_18;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_extenderInfo_17() { return static_cast<int32_t>(offsetof(ExtendedPropertyDescriptor_tABDBA511CEE5442C0B06059799418904896E0CF6, ___extenderInfo_17)); }
|
|
inline ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * get_extenderInfo_17() const { return ___extenderInfo_17; }
|
|
inline ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E ** get_address_of_extenderInfo_17() { return &___extenderInfo_17; }
|
|
inline void set_extenderInfo_17(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * value)
|
|
{
|
|
___extenderInfo_17 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___extenderInfo_17), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_provider_18() { return static_cast<int32_t>(offsetof(ExtendedPropertyDescriptor_tABDBA511CEE5442C0B06059799418904896E0CF6, ___provider_18)); }
|
|
inline RuntimeObject* get_provider_18() const { return ___provider_18; }
|
|
inline RuntimeObject** get_address_of_provider_18() { return &___provider_18; }
|
|
inline void set_provider_18(RuntimeObject* value)
|
|
{
|
|
___provider_18 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___provider_18), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.InheritanceLevel
|
|
struct InheritanceLevel_t7A3CA26A46C1759F0D0D9BD78A7B298490C1DAD6
|
|
{
|
|
public:
|
|
// System.Int32 System.ComponentModel.InheritanceLevel::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InheritanceLevel_t7A3CA26A46C1759F0D0D9BD78A7B298490C1DAD6, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.LicenseUsageMode
|
|
struct LicenseUsageMode_t2DEE0920CFCD0D47584E94D5D6D9AFEC4F82883F
|
|
{
|
|
public:
|
|
// System.Int32 System.ComponentModel.LicenseUsageMode::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LicenseUsageMode_t2DEE0920CFCD0D47584E94D5D6D9AFEC4F82883F, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.ListChangedType
|
|
struct ListChangedType_tE885755B4022635C38211A1864E2A851CEE324F8
|
|
{
|
|
public:
|
|
// System.Int32 System.ComponentModel.ListChangedType::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ListChangedType_tE885755B4022635C38211A1864E2A851CEE324F8, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.ListSortDirection
|
|
struct ListSortDirection_t345E309405F5CEFC88A1F4F34ACE985B9690FF20
|
|
{
|
|
public:
|
|
// System.Int32 System.ComponentModel.ListSortDirection::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ListSortDirection_t345E309405F5CEFC88A1F4F34ACE985B9690FF20, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.MaskedTextProvider
|
|
struct MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Collections.Specialized.BitVector32 System.ComponentModel.MaskedTextProvider::flagState
|
|
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 ___flagState_18;
|
|
// System.Globalization.CultureInfo System.ComponentModel.MaskedTextProvider::culture
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture_19;
|
|
// System.Text.StringBuilder System.ComponentModel.MaskedTextProvider::testString
|
|
StringBuilder_t * ___testString_20;
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::assignedCharCount
|
|
int32_t ___assignedCharCount_21;
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::requiredCharCount
|
|
int32_t ___requiredCharCount_22;
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::requiredEditChars
|
|
int32_t ___requiredEditChars_23;
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::optionalEditChars
|
|
int32_t ___optionalEditChars_24;
|
|
// System.String System.ComponentModel.MaskedTextProvider::mask
|
|
String_t* ___mask_25;
|
|
// System.Char System.ComponentModel.MaskedTextProvider::passwordChar
|
|
Il2CppChar ___passwordChar_26;
|
|
// System.Char System.ComponentModel.MaskedTextProvider::promptChar
|
|
Il2CppChar ___promptChar_27;
|
|
// System.Collections.Generic.List`1<System.ComponentModel.MaskedTextProvider_CharDescriptor> System.ComponentModel.MaskedTextProvider::stringDescriptor
|
|
List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 * ___stringDescriptor_28;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_flagState_18() { return static_cast<int32_t>(offsetof(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197, ___flagState_18)); }
|
|
inline BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 get_flagState_18() const { return ___flagState_18; }
|
|
inline BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * get_address_of_flagState_18() { return &___flagState_18; }
|
|
inline void set_flagState_18(BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 value)
|
|
{
|
|
___flagState_18 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_culture_19() { return static_cast<int32_t>(offsetof(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197, ___culture_19)); }
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_culture_19() const { return ___culture_19; }
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_culture_19() { return &___culture_19; }
|
|
inline void set_culture_19(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
|
|
{
|
|
___culture_19 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___culture_19), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_testString_20() { return static_cast<int32_t>(offsetof(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197, ___testString_20)); }
|
|
inline StringBuilder_t * get_testString_20() const { return ___testString_20; }
|
|
inline StringBuilder_t ** get_address_of_testString_20() { return &___testString_20; }
|
|
inline void set_testString_20(StringBuilder_t * value)
|
|
{
|
|
___testString_20 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___testString_20), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_assignedCharCount_21() { return static_cast<int32_t>(offsetof(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197, ___assignedCharCount_21)); }
|
|
inline int32_t get_assignedCharCount_21() const { return ___assignedCharCount_21; }
|
|
inline int32_t* get_address_of_assignedCharCount_21() { return &___assignedCharCount_21; }
|
|
inline void set_assignedCharCount_21(int32_t value)
|
|
{
|
|
___assignedCharCount_21 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_requiredCharCount_22() { return static_cast<int32_t>(offsetof(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197, ___requiredCharCount_22)); }
|
|
inline int32_t get_requiredCharCount_22() const { return ___requiredCharCount_22; }
|
|
inline int32_t* get_address_of_requiredCharCount_22() { return &___requiredCharCount_22; }
|
|
inline void set_requiredCharCount_22(int32_t value)
|
|
{
|
|
___requiredCharCount_22 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_requiredEditChars_23() { return static_cast<int32_t>(offsetof(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197, ___requiredEditChars_23)); }
|
|
inline int32_t get_requiredEditChars_23() const { return ___requiredEditChars_23; }
|
|
inline int32_t* get_address_of_requiredEditChars_23() { return &___requiredEditChars_23; }
|
|
inline void set_requiredEditChars_23(int32_t value)
|
|
{
|
|
___requiredEditChars_23 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_optionalEditChars_24() { return static_cast<int32_t>(offsetof(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197, ___optionalEditChars_24)); }
|
|
inline int32_t get_optionalEditChars_24() const { return ___optionalEditChars_24; }
|
|
inline int32_t* get_address_of_optionalEditChars_24() { return &___optionalEditChars_24; }
|
|
inline void set_optionalEditChars_24(int32_t value)
|
|
{
|
|
___optionalEditChars_24 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_mask_25() { return static_cast<int32_t>(offsetof(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197, ___mask_25)); }
|
|
inline String_t* get_mask_25() const { return ___mask_25; }
|
|
inline String_t** get_address_of_mask_25() { return &___mask_25; }
|
|
inline void set_mask_25(String_t* value)
|
|
{
|
|
___mask_25 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___mask_25), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_passwordChar_26() { return static_cast<int32_t>(offsetof(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197, ___passwordChar_26)); }
|
|
inline Il2CppChar get_passwordChar_26() const { return ___passwordChar_26; }
|
|
inline Il2CppChar* get_address_of_passwordChar_26() { return &___passwordChar_26; }
|
|
inline void set_passwordChar_26(Il2CppChar value)
|
|
{
|
|
___passwordChar_26 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_promptChar_27() { return static_cast<int32_t>(offsetof(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197, ___promptChar_27)); }
|
|
inline Il2CppChar get_promptChar_27() const { return ___promptChar_27; }
|
|
inline Il2CppChar* get_address_of_promptChar_27() { return &___promptChar_27; }
|
|
inline void set_promptChar_27(Il2CppChar value)
|
|
{
|
|
___promptChar_27 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_stringDescriptor_28() { return static_cast<int32_t>(offsetof(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197, ___stringDescriptor_28)); }
|
|
inline List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 * get_stringDescriptor_28() const { return ___stringDescriptor_28; }
|
|
inline List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 ** get_address_of_stringDescriptor_28() { return &___stringDescriptor_28; }
|
|
inline void set_stringDescriptor_28(List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 * value)
|
|
{
|
|
___stringDescriptor_28 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___stringDescriptor_28), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields
|
|
{
|
|
public:
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::ASCII_ONLY
|
|
int32_t ___ASCII_ONLY_10;
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::ALLOW_PROMPT_AS_INPUT
|
|
int32_t ___ALLOW_PROMPT_AS_INPUT_11;
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::INCLUDE_PROMPT
|
|
int32_t ___INCLUDE_PROMPT_12;
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::INCLUDE_LITERALS
|
|
int32_t ___INCLUDE_LITERALS_13;
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::RESET_ON_PROMPT
|
|
int32_t ___RESET_ON_PROMPT_14;
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::RESET_ON_LITERALS
|
|
int32_t ___RESET_ON_LITERALS_15;
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::SKIP_SPACE
|
|
int32_t ___SKIP_SPACE_16;
|
|
// System.Type System.ComponentModel.MaskedTextProvider::maskTextProviderType
|
|
Type_t * ___maskTextProviderType_17;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_ASCII_ONLY_10() { return static_cast<int32_t>(offsetof(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields, ___ASCII_ONLY_10)); }
|
|
inline int32_t get_ASCII_ONLY_10() const { return ___ASCII_ONLY_10; }
|
|
inline int32_t* get_address_of_ASCII_ONLY_10() { return &___ASCII_ONLY_10; }
|
|
inline void set_ASCII_ONLY_10(int32_t value)
|
|
{
|
|
___ASCII_ONLY_10 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_ALLOW_PROMPT_AS_INPUT_11() { return static_cast<int32_t>(offsetof(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields, ___ALLOW_PROMPT_AS_INPUT_11)); }
|
|
inline int32_t get_ALLOW_PROMPT_AS_INPUT_11() const { return ___ALLOW_PROMPT_AS_INPUT_11; }
|
|
inline int32_t* get_address_of_ALLOW_PROMPT_AS_INPUT_11() { return &___ALLOW_PROMPT_AS_INPUT_11; }
|
|
inline void set_ALLOW_PROMPT_AS_INPUT_11(int32_t value)
|
|
{
|
|
___ALLOW_PROMPT_AS_INPUT_11 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_INCLUDE_PROMPT_12() { return static_cast<int32_t>(offsetof(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields, ___INCLUDE_PROMPT_12)); }
|
|
inline int32_t get_INCLUDE_PROMPT_12() const { return ___INCLUDE_PROMPT_12; }
|
|
inline int32_t* get_address_of_INCLUDE_PROMPT_12() { return &___INCLUDE_PROMPT_12; }
|
|
inline void set_INCLUDE_PROMPT_12(int32_t value)
|
|
{
|
|
___INCLUDE_PROMPT_12 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_INCLUDE_LITERALS_13() { return static_cast<int32_t>(offsetof(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields, ___INCLUDE_LITERALS_13)); }
|
|
inline int32_t get_INCLUDE_LITERALS_13() const { return ___INCLUDE_LITERALS_13; }
|
|
inline int32_t* get_address_of_INCLUDE_LITERALS_13() { return &___INCLUDE_LITERALS_13; }
|
|
inline void set_INCLUDE_LITERALS_13(int32_t value)
|
|
{
|
|
___INCLUDE_LITERALS_13 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_RESET_ON_PROMPT_14() { return static_cast<int32_t>(offsetof(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields, ___RESET_ON_PROMPT_14)); }
|
|
inline int32_t get_RESET_ON_PROMPT_14() const { return ___RESET_ON_PROMPT_14; }
|
|
inline int32_t* get_address_of_RESET_ON_PROMPT_14() { return &___RESET_ON_PROMPT_14; }
|
|
inline void set_RESET_ON_PROMPT_14(int32_t value)
|
|
{
|
|
___RESET_ON_PROMPT_14 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_RESET_ON_LITERALS_15() { return static_cast<int32_t>(offsetof(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields, ___RESET_ON_LITERALS_15)); }
|
|
inline int32_t get_RESET_ON_LITERALS_15() const { return ___RESET_ON_LITERALS_15; }
|
|
inline int32_t* get_address_of_RESET_ON_LITERALS_15() { return &___RESET_ON_LITERALS_15; }
|
|
inline void set_RESET_ON_LITERALS_15(int32_t value)
|
|
{
|
|
___RESET_ON_LITERALS_15 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_SKIP_SPACE_16() { return static_cast<int32_t>(offsetof(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields, ___SKIP_SPACE_16)); }
|
|
inline int32_t get_SKIP_SPACE_16() const { return ___SKIP_SPACE_16; }
|
|
inline int32_t* get_address_of_SKIP_SPACE_16() { return &___SKIP_SPACE_16; }
|
|
inline void set_SKIP_SPACE_16(int32_t value)
|
|
{
|
|
___SKIP_SPACE_16 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_maskTextProviderType_17() { return static_cast<int32_t>(offsetof(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields, ___maskTextProviderType_17)); }
|
|
inline Type_t * get_maskTextProviderType_17() const { return ___maskTextProviderType_17; }
|
|
inline Type_t ** get_address_of_maskTextProviderType_17() { return &___maskTextProviderType_17; }
|
|
inline void set_maskTextProviderType_17(Type_t * value)
|
|
{
|
|
___maskTextProviderType_17 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___maskTextProviderType_17), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.MaskedTextProvider_CaseConversion
|
|
struct CaseConversion_t193D8AE57418D335B7AD2FEE554BB2230D2F6491
|
|
{
|
|
public:
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider_CaseConversion::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CaseConversion_t193D8AE57418D335B7AD2FEE554BB2230D2F6491, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.MaskedTextProvider_CharType
|
|
struct CharType_tC58073D5F1CD7F2BF4709E8CEBF07D1D6680159A
|
|
{
|
|
public:
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider_CharType::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CharType_tC58073D5F1CD7F2BF4709E8CEBF07D1D6680159A, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.MaskedTextResultHint
|
|
struct MaskedTextResultHint_t1F48AE21276DEB55A953A4E9C671EABD191761A5
|
|
{
|
|
public:
|
|
// System.Int32 System.ComponentModel.MaskedTextResultHint::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MaskedTextResultHint_t1F48AE21276DEB55A953A4E9C671EABD191761A5, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.ReflectPropertyDescriptor
|
|
struct ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E : public PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D
|
|
{
|
|
public:
|
|
// System.Collections.Specialized.BitVector32 System.ComponentModel.ReflectPropertyDescriptor::state
|
|
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 ___state_31;
|
|
// System.Type System.ComponentModel.ReflectPropertyDescriptor::componentClass
|
|
Type_t * ___componentClass_32;
|
|
// System.Type System.ComponentModel.ReflectPropertyDescriptor::type
|
|
Type_t * ___type_33;
|
|
// System.Object System.ComponentModel.ReflectPropertyDescriptor::defaultValue
|
|
RuntimeObject * ___defaultValue_34;
|
|
// System.Object System.ComponentModel.ReflectPropertyDescriptor::ambientValue
|
|
RuntimeObject * ___ambientValue_35;
|
|
// System.Reflection.PropertyInfo System.ComponentModel.ReflectPropertyDescriptor::propInfo
|
|
PropertyInfo_t * ___propInfo_36;
|
|
// System.Reflection.MethodInfo System.ComponentModel.ReflectPropertyDescriptor::getMethod
|
|
MethodInfo_t * ___getMethod_37;
|
|
// System.Reflection.MethodInfo System.ComponentModel.ReflectPropertyDescriptor::setMethod
|
|
MethodInfo_t * ___setMethod_38;
|
|
// System.Reflection.MethodInfo System.ComponentModel.ReflectPropertyDescriptor::shouldSerializeMethod
|
|
MethodInfo_t * ___shouldSerializeMethod_39;
|
|
// System.Reflection.MethodInfo System.ComponentModel.ReflectPropertyDescriptor::resetMethod
|
|
MethodInfo_t * ___resetMethod_40;
|
|
// System.ComponentModel.EventDescriptor System.ComponentModel.ReflectPropertyDescriptor::realChangedEvent
|
|
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * ___realChangedEvent_41;
|
|
// System.ComponentModel.EventDescriptor System.ComponentModel.ReflectPropertyDescriptor::realIPropChangedEvent
|
|
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * ___realIPropChangedEvent_42;
|
|
// System.Type System.ComponentModel.ReflectPropertyDescriptor::receiverType
|
|
Type_t * ___receiverType_43;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_state_31() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E, ___state_31)); }
|
|
inline BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 get_state_31() const { return ___state_31; }
|
|
inline BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * get_address_of_state_31() { return &___state_31; }
|
|
inline void set_state_31(BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 value)
|
|
{
|
|
___state_31 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_componentClass_32() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E, ___componentClass_32)); }
|
|
inline Type_t * get_componentClass_32() const { return ___componentClass_32; }
|
|
inline Type_t ** get_address_of_componentClass_32() { return &___componentClass_32; }
|
|
inline void set_componentClass_32(Type_t * value)
|
|
{
|
|
___componentClass_32 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___componentClass_32), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_type_33() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E, ___type_33)); }
|
|
inline Type_t * get_type_33() const { return ___type_33; }
|
|
inline Type_t ** get_address_of_type_33() { return &___type_33; }
|
|
inline void set_type_33(Type_t * value)
|
|
{
|
|
___type_33 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___type_33), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_defaultValue_34() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E, ___defaultValue_34)); }
|
|
inline RuntimeObject * get_defaultValue_34() const { return ___defaultValue_34; }
|
|
inline RuntimeObject ** get_address_of_defaultValue_34() { return &___defaultValue_34; }
|
|
inline void set_defaultValue_34(RuntimeObject * value)
|
|
{
|
|
___defaultValue_34 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___defaultValue_34), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_ambientValue_35() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E, ___ambientValue_35)); }
|
|
inline RuntimeObject * get_ambientValue_35() const { return ___ambientValue_35; }
|
|
inline RuntimeObject ** get_address_of_ambientValue_35() { return &___ambientValue_35; }
|
|
inline void set_ambientValue_35(RuntimeObject * value)
|
|
{
|
|
___ambientValue_35 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___ambientValue_35), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_propInfo_36() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E, ___propInfo_36)); }
|
|
inline PropertyInfo_t * get_propInfo_36() const { return ___propInfo_36; }
|
|
inline PropertyInfo_t ** get_address_of_propInfo_36() { return &___propInfo_36; }
|
|
inline void set_propInfo_36(PropertyInfo_t * value)
|
|
{
|
|
___propInfo_36 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___propInfo_36), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_getMethod_37() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E, ___getMethod_37)); }
|
|
inline MethodInfo_t * get_getMethod_37() const { return ___getMethod_37; }
|
|
inline MethodInfo_t ** get_address_of_getMethod_37() { return &___getMethod_37; }
|
|
inline void set_getMethod_37(MethodInfo_t * value)
|
|
{
|
|
___getMethod_37 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___getMethod_37), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_setMethod_38() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E, ___setMethod_38)); }
|
|
inline MethodInfo_t * get_setMethod_38() const { return ___setMethod_38; }
|
|
inline MethodInfo_t ** get_address_of_setMethod_38() { return &___setMethod_38; }
|
|
inline void set_setMethod_38(MethodInfo_t * value)
|
|
{
|
|
___setMethod_38 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___setMethod_38), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_shouldSerializeMethod_39() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E, ___shouldSerializeMethod_39)); }
|
|
inline MethodInfo_t * get_shouldSerializeMethod_39() const { return ___shouldSerializeMethod_39; }
|
|
inline MethodInfo_t ** get_address_of_shouldSerializeMethod_39() { return &___shouldSerializeMethod_39; }
|
|
inline void set_shouldSerializeMethod_39(MethodInfo_t * value)
|
|
{
|
|
___shouldSerializeMethod_39 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___shouldSerializeMethod_39), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_resetMethod_40() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E, ___resetMethod_40)); }
|
|
inline MethodInfo_t * get_resetMethod_40() const { return ___resetMethod_40; }
|
|
inline MethodInfo_t ** get_address_of_resetMethod_40() { return &___resetMethod_40; }
|
|
inline void set_resetMethod_40(MethodInfo_t * value)
|
|
{
|
|
___resetMethod_40 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___resetMethod_40), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_realChangedEvent_41() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E, ___realChangedEvent_41)); }
|
|
inline EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * get_realChangedEvent_41() const { return ___realChangedEvent_41; }
|
|
inline EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 ** get_address_of_realChangedEvent_41() { return &___realChangedEvent_41; }
|
|
inline void set_realChangedEvent_41(EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * value)
|
|
{
|
|
___realChangedEvent_41 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___realChangedEvent_41), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_realIPropChangedEvent_42() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E, ___realIPropChangedEvent_42)); }
|
|
inline EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * get_realIPropChangedEvent_42() const { return ___realIPropChangedEvent_42; }
|
|
inline EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 ** get_address_of_realIPropChangedEvent_42() { return &___realIPropChangedEvent_42; }
|
|
inline void set_realIPropChangedEvent_42(EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * value)
|
|
{
|
|
___realIPropChangedEvent_42 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___realIPropChangedEvent_42), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_receiverType_43() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E, ___receiverType_43)); }
|
|
inline Type_t * get_receiverType_43() const { return ___receiverType_43; }
|
|
inline Type_t ** get_address_of_receiverType_43() { return &___receiverType_43; }
|
|
inline void set_receiverType_43(Type_t * value)
|
|
{
|
|
___receiverType_43 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___receiverType_43), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields
|
|
{
|
|
public:
|
|
// System.Type[] System.ComponentModel.ReflectPropertyDescriptor::argsNone
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___argsNone_17;
|
|
// System.Object System.ComponentModel.ReflectPropertyDescriptor::noValue
|
|
RuntimeObject * ___noValue_18;
|
|
// System.Diagnostics.TraceSwitch System.ComponentModel.ReflectPropertyDescriptor::PropDescCreateSwitch
|
|
TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8 * ___PropDescCreateSwitch_19;
|
|
// System.Diagnostics.TraceSwitch System.ComponentModel.ReflectPropertyDescriptor::PropDescUsageSwitch
|
|
TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8 * ___PropDescUsageSwitch_20;
|
|
// System.Int32 System.ComponentModel.ReflectPropertyDescriptor::BitDefaultValueQueried
|
|
int32_t ___BitDefaultValueQueried_21;
|
|
// System.Int32 System.ComponentModel.ReflectPropertyDescriptor::BitGetQueried
|
|
int32_t ___BitGetQueried_22;
|
|
// System.Int32 System.ComponentModel.ReflectPropertyDescriptor::BitSetQueried
|
|
int32_t ___BitSetQueried_23;
|
|
// System.Int32 System.ComponentModel.ReflectPropertyDescriptor::BitShouldSerializeQueried
|
|
int32_t ___BitShouldSerializeQueried_24;
|
|
// System.Int32 System.ComponentModel.ReflectPropertyDescriptor::BitResetQueried
|
|
int32_t ___BitResetQueried_25;
|
|
// System.Int32 System.ComponentModel.ReflectPropertyDescriptor::BitChangedQueried
|
|
int32_t ___BitChangedQueried_26;
|
|
// System.Int32 System.ComponentModel.ReflectPropertyDescriptor::BitIPropChangedQueried
|
|
int32_t ___BitIPropChangedQueried_27;
|
|
// System.Int32 System.ComponentModel.ReflectPropertyDescriptor::BitReadOnlyChecked
|
|
int32_t ___BitReadOnlyChecked_28;
|
|
// System.Int32 System.ComponentModel.ReflectPropertyDescriptor::BitAmbientValueQueried
|
|
int32_t ___BitAmbientValueQueried_29;
|
|
// System.Int32 System.ComponentModel.ReflectPropertyDescriptor::BitSetOnDemand
|
|
int32_t ___BitSetOnDemand_30;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_argsNone_17() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields, ___argsNone_17)); }
|
|
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_argsNone_17() const { return ___argsNone_17; }
|
|
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_argsNone_17() { return &___argsNone_17; }
|
|
inline void set_argsNone_17(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
|
|
{
|
|
___argsNone_17 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___argsNone_17), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_noValue_18() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields, ___noValue_18)); }
|
|
inline RuntimeObject * get_noValue_18() const { return ___noValue_18; }
|
|
inline RuntimeObject ** get_address_of_noValue_18() { return &___noValue_18; }
|
|
inline void set_noValue_18(RuntimeObject * value)
|
|
{
|
|
___noValue_18 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___noValue_18), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_PropDescCreateSwitch_19() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields, ___PropDescCreateSwitch_19)); }
|
|
inline TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8 * get_PropDescCreateSwitch_19() const { return ___PropDescCreateSwitch_19; }
|
|
inline TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8 ** get_address_of_PropDescCreateSwitch_19() { return &___PropDescCreateSwitch_19; }
|
|
inline void set_PropDescCreateSwitch_19(TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8 * value)
|
|
{
|
|
___PropDescCreateSwitch_19 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___PropDescCreateSwitch_19), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_PropDescUsageSwitch_20() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields, ___PropDescUsageSwitch_20)); }
|
|
inline TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8 * get_PropDescUsageSwitch_20() const { return ___PropDescUsageSwitch_20; }
|
|
inline TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8 ** get_address_of_PropDescUsageSwitch_20() { return &___PropDescUsageSwitch_20; }
|
|
inline void set_PropDescUsageSwitch_20(TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8 * value)
|
|
{
|
|
___PropDescUsageSwitch_20 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___PropDescUsageSwitch_20), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_BitDefaultValueQueried_21() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields, ___BitDefaultValueQueried_21)); }
|
|
inline int32_t get_BitDefaultValueQueried_21() const { return ___BitDefaultValueQueried_21; }
|
|
inline int32_t* get_address_of_BitDefaultValueQueried_21() { return &___BitDefaultValueQueried_21; }
|
|
inline void set_BitDefaultValueQueried_21(int32_t value)
|
|
{
|
|
___BitDefaultValueQueried_21 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_BitGetQueried_22() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields, ___BitGetQueried_22)); }
|
|
inline int32_t get_BitGetQueried_22() const { return ___BitGetQueried_22; }
|
|
inline int32_t* get_address_of_BitGetQueried_22() { return &___BitGetQueried_22; }
|
|
inline void set_BitGetQueried_22(int32_t value)
|
|
{
|
|
___BitGetQueried_22 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_BitSetQueried_23() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields, ___BitSetQueried_23)); }
|
|
inline int32_t get_BitSetQueried_23() const { return ___BitSetQueried_23; }
|
|
inline int32_t* get_address_of_BitSetQueried_23() { return &___BitSetQueried_23; }
|
|
inline void set_BitSetQueried_23(int32_t value)
|
|
{
|
|
___BitSetQueried_23 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_BitShouldSerializeQueried_24() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields, ___BitShouldSerializeQueried_24)); }
|
|
inline int32_t get_BitShouldSerializeQueried_24() const { return ___BitShouldSerializeQueried_24; }
|
|
inline int32_t* get_address_of_BitShouldSerializeQueried_24() { return &___BitShouldSerializeQueried_24; }
|
|
inline void set_BitShouldSerializeQueried_24(int32_t value)
|
|
{
|
|
___BitShouldSerializeQueried_24 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_BitResetQueried_25() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields, ___BitResetQueried_25)); }
|
|
inline int32_t get_BitResetQueried_25() const { return ___BitResetQueried_25; }
|
|
inline int32_t* get_address_of_BitResetQueried_25() { return &___BitResetQueried_25; }
|
|
inline void set_BitResetQueried_25(int32_t value)
|
|
{
|
|
___BitResetQueried_25 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_BitChangedQueried_26() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields, ___BitChangedQueried_26)); }
|
|
inline int32_t get_BitChangedQueried_26() const { return ___BitChangedQueried_26; }
|
|
inline int32_t* get_address_of_BitChangedQueried_26() { return &___BitChangedQueried_26; }
|
|
inline void set_BitChangedQueried_26(int32_t value)
|
|
{
|
|
___BitChangedQueried_26 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_BitIPropChangedQueried_27() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields, ___BitIPropChangedQueried_27)); }
|
|
inline int32_t get_BitIPropChangedQueried_27() const { return ___BitIPropChangedQueried_27; }
|
|
inline int32_t* get_address_of_BitIPropChangedQueried_27() { return &___BitIPropChangedQueried_27; }
|
|
inline void set_BitIPropChangedQueried_27(int32_t value)
|
|
{
|
|
___BitIPropChangedQueried_27 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_BitReadOnlyChecked_28() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields, ___BitReadOnlyChecked_28)); }
|
|
inline int32_t get_BitReadOnlyChecked_28() const { return ___BitReadOnlyChecked_28; }
|
|
inline int32_t* get_address_of_BitReadOnlyChecked_28() { return &___BitReadOnlyChecked_28; }
|
|
inline void set_BitReadOnlyChecked_28(int32_t value)
|
|
{
|
|
___BitReadOnlyChecked_28 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_BitAmbientValueQueried_29() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields, ___BitAmbientValueQueried_29)); }
|
|
inline int32_t get_BitAmbientValueQueried_29() const { return ___BitAmbientValueQueried_29; }
|
|
inline int32_t* get_address_of_BitAmbientValueQueried_29() { return &___BitAmbientValueQueried_29; }
|
|
inline void set_BitAmbientValueQueried_29(int32_t value)
|
|
{
|
|
___BitAmbientValueQueried_29 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_BitSetOnDemand_30() { return static_cast<int32_t>(offsetof(ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_StaticFields, ___BitSetOnDemand_30)); }
|
|
inline int32_t get_BitSetOnDemand_30() const { return ___BitSetOnDemand_30; }
|
|
inline int32_t* get_address_of_BitSetOnDemand_30() { return &___BitSetOnDemand_30; }
|
|
inline void set_BitSetOnDemand_30(int32_t value)
|
|
{
|
|
___BitSetOnDemand_30 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.TypeConverter
|
|
struct TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB : public RuntimeObject
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
struct TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_StaticFields
|
|
{
|
|
public:
|
|
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.TypeConverter::useCompatibleTypeConversion
|
|
bool ___useCompatibleTypeConversion_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_useCompatibleTypeConversion_1() { return static_cast<int32_t>(offsetof(TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_StaticFields, ___useCompatibleTypeConversion_1)); }
|
|
inline bool get_useCompatibleTypeConversion_1() const { return ___useCompatibleTypeConversion_1; }
|
|
inline bool* get_address_of_useCompatibleTypeConversion_1() { return &___useCompatibleTypeConversion_1; }
|
|
inline void set_useCompatibleTypeConversion_1(bool value)
|
|
{
|
|
___useCompatibleTypeConversion_1 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Configuration.Assemblies.AssemblyHashAlgorithm
|
|
struct AssemblyHashAlgorithm_t31E4F1BC642CF668706C9D0FBD9DFDF5EE01CEB9
|
|
{
|
|
public:
|
|
// System.Int32 System.Configuration.Assemblies.AssemblyHashAlgorithm::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AssemblyHashAlgorithm_t31E4F1BC642CF668706C9D0FBD9DFDF5EE01CEB9, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Configuration.Assemblies.AssemblyVersionCompatibility
|
|
struct AssemblyVersionCompatibility_tEA062AB37A9A750B33F6CA2898EEF03A4EEA496C
|
|
{
|
|
public:
|
|
// System.Int32 System.Configuration.Assemblies.AssemblyVersionCompatibility::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AssemblyVersionCompatibility_tEA062AB37A9A750B33F6CA2898EEF03A4EEA496C, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Delegate
|
|
struct Delegate_t : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.IntPtr System.Delegate::method_ptr
|
|
Il2CppMethodPointer ___method_ptr_0;
|
|
// System.IntPtr System.Delegate::invoke_impl
|
|
intptr_t ___invoke_impl_1;
|
|
// System.Object System.Delegate::m_target
|
|
RuntimeObject * ___m_target_2;
|
|
// System.IntPtr System.Delegate::method
|
|
intptr_t ___method_3;
|
|
// System.IntPtr System.Delegate::delegate_trampoline
|
|
intptr_t ___delegate_trampoline_4;
|
|
// System.IntPtr System.Delegate::extra_arg
|
|
intptr_t ___extra_arg_5;
|
|
// System.IntPtr System.Delegate::method_code
|
|
intptr_t ___method_code_6;
|
|
// System.Reflection.MethodInfo System.Delegate::method_info
|
|
MethodInfo_t * ___method_info_7;
|
|
// System.Reflection.MethodInfo System.Delegate::original_method_info
|
|
MethodInfo_t * ___original_method_info_8;
|
|
// System.DelegateData System.Delegate::data
|
|
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
|
|
// System.Boolean System.Delegate::method_is_virtual
|
|
bool ___method_is_virtual_10;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); }
|
|
inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; }
|
|
inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; }
|
|
inline void set_method_ptr_0(Il2CppMethodPointer value)
|
|
{
|
|
___method_ptr_0 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); }
|
|
inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; }
|
|
inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; }
|
|
inline void set_invoke_impl_1(intptr_t value)
|
|
{
|
|
___invoke_impl_1 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); }
|
|
inline RuntimeObject * get_m_target_2() const { return ___m_target_2; }
|
|
inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; }
|
|
inline void set_m_target_2(RuntimeObject * value)
|
|
{
|
|
___m_target_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); }
|
|
inline intptr_t get_method_3() const { return ___method_3; }
|
|
inline intptr_t* get_address_of_method_3() { return &___method_3; }
|
|
inline void set_method_3(intptr_t value)
|
|
{
|
|
___method_3 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); }
|
|
inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; }
|
|
inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; }
|
|
inline void set_delegate_trampoline_4(intptr_t value)
|
|
{
|
|
___delegate_trampoline_4 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___extra_arg_5)); }
|
|
inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; }
|
|
inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; }
|
|
inline void set_extra_arg_5(intptr_t value)
|
|
{
|
|
___extra_arg_5 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_6)); }
|
|
inline intptr_t get_method_code_6() const { return ___method_code_6; }
|
|
inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; }
|
|
inline void set_method_code_6(intptr_t value)
|
|
{
|
|
___method_code_6 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_7)); }
|
|
inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; }
|
|
inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; }
|
|
inline void set_method_info_7(MethodInfo_t * value)
|
|
{
|
|
___method_info_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_8)); }
|
|
inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; }
|
|
inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; }
|
|
inline void set_original_method_info_8(MethodInfo_t * value)
|
|
{
|
|
___original_method_info_8 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); }
|
|
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * get_data_9() const { return ___data_9; }
|
|
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE ** get_address_of_data_9() { return &___data_9; }
|
|
inline void set_data_9(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * value)
|
|
{
|
|
___data_9 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_is_virtual_10)); }
|
|
inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; }
|
|
inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; }
|
|
inline void set_method_is_virtual_10(bool value)
|
|
{
|
|
___method_is_virtual_10 = value;
|
|
}
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.Delegate
|
|
struct Delegate_t_marshaled_pinvoke
|
|
{
|
|
intptr_t ___method_ptr_0;
|
|
intptr_t ___invoke_impl_1;
|
|
Il2CppIUnknown* ___m_target_2;
|
|
intptr_t ___method_3;
|
|
intptr_t ___delegate_trampoline_4;
|
|
intptr_t ___extra_arg_5;
|
|
intptr_t ___method_code_6;
|
|
MethodInfo_t * ___method_info_7;
|
|
MethodInfo_t * ___original_method_info_8;
|
|
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
|
|
int32_t ___method_is_virtual_10;
|
|
};
|
|
// Native definition for COM marshalling of System.Delegate
|
|
struct Delegate_t_marshaled_com
|
|
{
|
|
intptr_t ___method_ptr_0;
|
|
intptr_t ___invoke_impl_1;
|
|
Il2CppIUnknown* ___m_target_2;
|
|
intptr_t ___method_3;
|
|
intptr_t ___delegate_trampoline_4;
|
|
intptr_t ___extra_arg_5;
|
|
intptr_t ___method_code_6;
|
|
MethodInfo_t * ___method_info_7;
|
|
MethodInfo_t * ___original_method_info_8;
|
|
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
|
|
int32_t ___method_is_virtual_10;
|
|
};
|
|
|
|
// System.Exception
|
|
struct Exception_t : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.String System.Exception::_className
|
|
String_t* ____className_1;
|
|
// System.String System.Exception::_message
|
|
String_t* ____message_2;
|
|
// System.Collections.IDictionary System.Exception::_data
|
|
RuntimeObject* ____data_3;
|
|
// System.Exception System.Exception::_innerException
|
|
Exception_t * ____innerException_4;
|
|
// System.String System.Exception::_helpURL
|
|
String_t* ____helpURL_5;
|
|
// System.Object System.Exception::_stackTrace
|
|
RuntimeObject * ____stackTrace_6;
|
|
// System.String System.Exception::_stackTraceString
|
|
String_t* ____stackTraceString_7;
|
|
// System.String System.Exception::_remoteStackTraceString
|
|
String_t* ____remoteStackTraceString_8;
|
|
// System.Int32 System.Exception::_remoteStackIndex
|
|
int32_t ____remoteStackIndex_9;
|
|
// System.Object System.Exception::_dynamicMethods
|
|
RuntimeObject * ____dynamicMethods_10;
|
|
// System.Int32 System.Exception::_HResult
|
|
int32_t ____HResult_11;
|
|
// System.String System.Exception::_source
|
|
String_t* ____source_12;
|
|
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
|
|
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
|
|
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
|
|
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
|
|
// System.IntPtr[] System.Exception::native_trace_ips
|
|
IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___native_trace_ips_15;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); }
|
|
inline String_t* get__className_1() const { return ____className_1; }
|
|
inline String_t** get_address_of__className_1() { return &____className_1; }
|
|
inline void set__className_1(String_t* value)
|
|
{
|
|
____className_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); }
|
|
inline String_t* get__message_2() const { return ____message_2; }
|
|
inline String_t** get_address_of__message_2() { return &____message_2; }
|
|
inline void set__message_2(String_t* value)
|
|
{
|
|
____message_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); }
|
|
inline RuntimeObject* get__data_3() const { return ____data_3; }
|
|
inline RuntimeObject** get_address_of__data_3() { return &____data_3; }
|
|
inline void set__data_3(RuntimeObject* value)
|
|
{
|
|
____data_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); }
|
|
inline Exception_t * get__innerException_4() const { return ____innerException_4; }
|
|
inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; }
|
|
inline void set__innerException_4(Exception_t * value)
|
|
{
|
|
____innerException_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); }
|
|
inline String_t* get__helpURL_5() const { return ____helpURL_5; }
|
|
inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; }
|
|
inline void set__helpURL_5(String_t* value)
|
|
{
|
|
____helpURL_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); }
|
|
inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; }
|
|
inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; }
|
|
inline void set__stackTrace_6(RuntimeObject * value)
|
|
{
|
|
____stackTrace_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); }
|
|
inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; }
|
|
inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; }
|
|
inline void set__stackTraceString_7(String_t* value)
|
|
{
|
|
____stackTraceString_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); }
|
|
inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; }
|
|
inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; }
|
|
inline void set__remoteStackTraceString_8(String_t* value)
|
|
{
|
|
____remoteStackTraceString_8 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); }
|
|
inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; }
|
|
inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; }
|
|
inline void set__remoteStackIndex_9(int32_t value)
|
|
{
|
|
____remoteStackIndex_9 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); }
|
|
inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; }
|
|
inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; }
|
|
inline void set__dynamicMethods_10(RuntimeObject * value)
|
|
{
|
|
____dynamicMethods_10 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); }
|
|
inline int32_t get__HResult_11() const { return ____HResult_11; }
|
|
inline int32_t* get_address_of__HResult_11() { return &____HResult_11; }
|
|
inline void set__HResult_11(int32_t value)
|
|
{
|
|
____HResult_11 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); }
|
|
inline String_t* get__source_12() const { return ____source_12; }
|
|
inline String_t** get_address_of__source_12() { return &____source_12; }
|
|
inline void set__source_12(String_t* value)
|
|
{
|
|
____source_12 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); }
|
|
inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; }
|
|
inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; }
|
|
inline void set__safeSerializationManager_13(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * value)
|
|
{
|
|
____safeSerializationManager_13 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); }
|
|
inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* get_captured_traces_14() const { return ___captured_traces_14; }
|
|
inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196** get_address_of_captured_traces_14() { return &___captured_traces_14; }
|
|
inline void set_captured_traces_14(StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* value)
|
|
{
|
|
___captured_traces_14 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); }
|
|
inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* get_native_trace_ips_15() const { return ___native_trace_ips_15; }
|
|
inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; }
|
|
inline void set_native_trace_ips_15(IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* value)
|
|
{
|
|
___native_trace_ips_15 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct Exception_t_StaticFields
|
|
{
|
|
public:
|
|
// System.Object System.Exception::s_EDILock
|
|
RuntimeObject * ___s_EDILock_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); }
|
|
inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; }
|
|
inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; }
|
|
inline void set_s_EDILock_0(RuntimeObject * value)
|
|
{
|
|
___s_EDILock_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value);
|
|
}
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.Exception
|
|
struct Exception_t_marshaled_pinvoke
|
|
{
|
|
char* ____className_1;
|
|
char* ____message_2;
|
|
RuntimeObject* ____data_3;
|
|
Exception_t_marshaled_pinvoke* ____innerException_4;
|
|
char* ____helpURL_5;
|
|
Il2CppIUnknown* ____stackTrace_6;
|
|
char* ____stackTraceString_7;
|
|
char* ____remoteStackTraceString_8;
|
|
int32_t ____remoteStackIndex_9;
|
|
Il2CppIUnknown* ____dynamicMethods_10;
|
|
int32_t ____HResult_11;
|
|
char* ____source_12;
|
|
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
|
|
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
|
|
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
|
|
};
|
|
// Native definition for COM marshalling of System.Exception
|
|
struct Exception_t_marshaled_com
|
|
{
|
|
Il2CppChar* ____className_1;
|
|
Il2CppChar* ____message_2;
|
|
RuntimeObject* ____data_3;
|
|
Exception_t_marshaled_com* ____innerException_4;
|
|
Il2CppChar* ____helpURL_5;
|
|
Il2CppIUnknown* ____stackTrace_6;
|
|
Il2CppChar* ____stackTraceString_7;
|
|
Il2CppChar* ____remoteStackTraceString_8;
|
|
int32_t ____remoteStackIndex_9;
|
|
Il2CppIUnknown* ____dynamicMethods_10;
|
|
int32_t ____HResult_11;
|
|
Il2CppChar* ____source_12;
|
|
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
|
|
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
|
|
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
|
|
};
|
|
|
|
// System.Globalization.CompareOptions
|
|
struct CompareOptions_t163DCEA9A0972750294CC1A8348E5CA69E943939
|
|
{
|
|
public:
|
|
// System.Int32 System.Globalization.CompareOptions::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CompareOptions_t163DCEA9A0972750294CC1A8348E5CA69E943939, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Globalization.CultureTypes
|
|
struct CultureTypes_t04A866B07972D6C174F6BB5A60E76A1F2A123BBD
|
|
{
|
|
public:
|
|
// System.Int32 System.Globalization.CultureTypes::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CultureTypes_t04A866B07972D6C174F6BB5A60E76A1F2A123BBD, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Globalization.DateTimeFormatFlags
|
|
struct DateTimeFormatFlags_tA363B5524F41DE008B4AB8304F1E995E2C8CF675
|
|
{
|
|
public:
|
|
// System.Int32 System.Globalization.DateTimeFormatFlags::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DateTimeFormatFlags_tA363B5524F41DE008B4AB8304F1E995E2C8CF675, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Globalization.DateTimeStyles
|
|
struct DateTimeStyles_tD09B34DB3747CD91D8AAA1238C7595845715301E
|
|
{
|
|
public:
|
|
// System.Int32 System.Globalization.DateTimeStyles::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DateTimeStyles_tD09B34DB3747CD91D8AAA1238C7595845715301E, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Globalization.NumberStyles
|
|
struct NumberStyles_tB0ADA2D9CCAA236331AED14C42BE5832B2351592
|
|
{
|
|
public:
|
|
// System.Int32 System.Globalization.NumberStyles::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NumberStyles_tB0ADA2D9CCAA236331AED14C42BE5832B2351592, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Globalization.TextInfo
|
|
struct TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Boolean System.Globalization.TextInfo::m_isReadOnly
|
|
bool ___m_isReadOnly_0;
|
|
// System.String System.Globalization.TextInfo::m_cultureName
|
|
String_t* ___m_cultureName_1;
|
|
// System.Globalization.CultureData System.Globalization.TextInfo::m_cultureData
|
|
CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * ___m_cultureData_2;
|
|
// System.String System.Globalization.TextInfo::m_textInfoName
|
|
String_t* ___m_textInfoName_3;
|
|
// System.Nullable`1<System.Boolean> System.Globalization.TextInfo::m_IsAsciiCasingSameAsInvariant
|
|
Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ___m_IsAsciiCasingSameAsInvariant_4;
|
|
// System.String System.Globalization.TextInfo::customCultureName
|
|
String_t* ___customCultureName_6;
|
|
// System.Boolean System.Globalization.TextInfo::m_useUserOverride
|
|
bool ___m_useUserOverride_7;
|
|
// System.Int32 System.Globalization.TextInfo::m_win32LangID
|
|
int32_t ___m_win32LangID_8;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_isReadOnly_0() { return static_cast<int32_t>(offsetof(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8, ___m_isReadOnly_0)); }
|
|
inline bool get_m_isReadOnly_0() const { return ___m_isReadOnly_0; }
|
|
inline bool* get_address_of_m_isReadOnly_0() { return &___m_isReadOnly_0; }
|
|
inline void set_m_isReadOnly_0(bool value)
|
|
{
|
|
___m_isReadOnly_0 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_cultureName_1() { return static_cast<int32_t>(offsetof(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8, ___m_cultureName_1)); }
|
|
inline String_t* get_m_cultureName_1() const { return ___m_cultureName_1; }
|
|
inline String_t** get_address_of_m_cultureName_1() { return &___m_cultureName_1; }
|
|
inline void set_m_cultureName_1(String_t* value)
|
|
{
|
|
___m_cultureName_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_cultureName_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_cultureData_2() { return static_cast<int32_t>(offsetof(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8, ___m_cultureData_2)); }
|
|
inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * get_m_cultureData_2() const { return ___m_cultureData_2; }
|
|
inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD ** get_address_of_m_cultureData_2() { return &___m_cultureData_2; }
|
|
inline void set_m_cultureData_2(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * value)
|
|
{
|
|
___m_cultureData_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_cultureData_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_textInfoName_3() { return static_cast<int32_t>(offsetof(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8, ___m_textInfoName_3)); }
|
|
inline String_t* get_m_textInfoName_3() const { return ___m_textInfoName_3; }
|
|
inline String_t** get_address_of_m_textInfoName_3() { return &___m_textInfoName_3; }
|
|
inline void set_m_textInfoName_3(String_t* value)
|
|
{
|
|
___m_textInfoName_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_textInfoName_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_IsAsciiCasingSameAsInvariant_4() { return static_cast<int32_t>(offsetof(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8, ___m_IsAsciiCasingSameAsInvariant_4)); }
|
|
inline Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 get_m_IsAsciiCasingSameAsInvariant_4() const { return ___m_IsAsciiCasingSameAsInvariant_4; }
|
|
inline Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * get_address_of_m_IsAsciiCasingSameAsInvariant_4() { return &___m_IsAsciiCasingSameAsInvariant_4; }
|
|
inline void set_m_IsAsciiCasingSameAsInvariant_4(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 value)
|
|
{
|
|
___m_IsAsciiCasingSameAsInvariant_4 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_customCultureName_6() { return static_cast<int32_t>(offsetof(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8, ___customCultureName_6)); }
|
|
inline String_t* get_customCultureName_6() const { return ___customCultureName_6; }
|
|
inline String_t** get_address_of_customCultureName_6() { return &___customCultureName_6; }
|
|
inline void set_customCultureName_6(String_t* value)
|
|
{
|
|
___customCultureName_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___customCultureName_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_useUserOverride_7() { return static_cast<int32_t>(offsetof(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8, ___m_useUserOverride_7)); }
|
|
inline bool get_m_useUserOverride_7() const { return ___m_useUserOverride_7; }
|
|
inline bool* get_address_of_m_useUserOverride_7() { return &___m_useUserOverride_7; }
|
|
inline void set_m_useUserOverride_7(bool value)
|
|
{
|
|
___m_useUserOverride_7 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_win32LangID_8() { return static_cast<int32_t>(offsetof(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8, ___m_win32LangID_8)); }
|
|
inline int32_t get_m_win32LangID_8() const { return ___m_win32LangID_8; }
|
|
inline int32_t* get_address_of_m_win32LangID_8() { return &___m_win32LangID_8; }
|
|
inline void set_m_win32LangID_8(int32_t value)
|
|
{
|
|
___m_win32LangID_8 = value;
|
|
}
|
|
};
|
|
|
|
struct TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8_StaticFields
|
|
{
|
|
public:
|
|
// System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.TextInfo::s_Invariant
|
|
TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___s_Invariant_5;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_s_Invariant_5() { return static_cast<int32_t>(offsetof(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8_StaticFields, ___s_Invariant_5)); }
|
|
inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * get_s_Invariant_5() const { return ___s_Invariant_5; }
|
|
inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 ** get_address_of_s_Invariant_5() { return &___s_Invariant_5; }
|
|
inline void set_s_Invariant_5(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * value)
|
|
{
|
|
___s_Invariant_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___s_Invariant_5), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.IO.FileAccess
|
|
struct FileAccess_t31950F3A853EAE886AC8F13EA7FC03A3EB46E3F6
|
|
{
|
|
public:
|
|
// System.Int32 System.IO.FileAccess::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FileAccess_t31950F3A853EAE886AC8F13EA7FC03A3EB46E3F6, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.IO.FileAttributes
|
|
struct FileAttributes_t224B42F6F82954C94B51791913857C005C559876
|
|
{
|
|
public:
|
|
// System.Int32 System.IO.FileAttributes::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FileAttributes_t224B42F6F82954C94B51791913857C005C559876, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.IO.FileMode
|
|
struct FileMode_tD19D05B1E6CAF201F88401B04FDB25227664C419
|
|
{
|
|
public:
|
|
// System.Int32 System.IO.FileMode::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FileMode_tD19D05B1E6CAF201F88401B04FDB25227664C419, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.IO.FileShare
|
|
struct FileShare_t9AA8473BBE5DD8532CEAF3F48F26DA5A25A93684
|
|
{
|
|
public:
|
|
// System.Int32 System.IO.FileShare::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FileShare_t9AA8473BBE5DD8532CEAF3F48F26DA5A25A93684, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.IO.StreamReader
|
|
struct StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E : public TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A
|
|
{
|
|
public:
|
|
// System.IO.Stream System.IO.StreamReader::stream
|
|
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream_5;
|
|
// System.Text.Encoding System.IO.StreamReader::encoding
|
|
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding_6;
|
|
// System.Text.Decoder System.IO.StreamReader::decoder
|
|
Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * ___decoder_7;
|
|
// System.Byte[] System.IO.StreamReader::byteBuffer
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___byteBuffer_8;
|
|
// System.Char[] System.IO.StreamReader::charBuffer
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___charBuffer_9;
|
|
// System.Byte[] System.IO.StreamReader::_preamble
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____preamble_10;
|
|
// System.Int32 System.IO.StreamReader::charPos
|
|
int32_t ___charPos_11;
|
|
// System.Int32 System.IO.StreamReader::charLen
|
|
int32_t ___charLen_12;
|
|
// System.Int32 System.IO.StreamReader::byteLen
|
|
int32_t ___byteLen_13;
|
|
// System.Int32 System.IO.StreamReader::bytePos
|
|
int32_t ___bytePos_14;
|
|
// System.Int32 System.IO.StreamReader::_maxCharsPerBuffer
|
|
int32_t ____maxCharsPerBuffer_15;
|
|
// System.Boolean System.IO.StreamReader::_detectEncoding
|
|
bool ____detectEncoding_16;
|
|
// System.Boolean System.IO.StreamReader::_checkPreamble
|
|
bool ____checkPreamble_17;
|
|
// System.Boolean System.IO.StreamReader::_isBlocked
|
|
bool ____isBlocked_18;
|
|
// System.Boolean System.IO.StreamReader::_closable
|
|
bool ____closable_19;
|
|
// System.Threading.Tasks.Task modreq(System.Runtime.CompilerServices.IsVolatile) System.IO.StreamReader::_asyncReadTask
|
|
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ____asyncReadTask_20;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_stream_5() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___stream_5)); }
|
|
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get_stream_5() const { return ___stream_5; }
|
|
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of_stream_5() { return &___stream_5; }
|
|
inline void set_stream_5(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * value)
|
|
{
|
|
___stream_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___stream_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_encoding_6() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___encoding_6)); }
|
|
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_encoding_6() const { return ___encoding_6; }
|
|
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_encoding_6() { return &___encoding_6; }
|
|
inline void set_encoding_6(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
|
|
{
|
|
___encoding_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___encoding_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_decoder_7() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___decoder_7)); }
|
|
inline Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * get_decoder_7() const { return ___decoder_7; }
|
|
inline Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 ** get_address_of_decoder_7() { return &___decoder_7; }
|
|
inline void set_decoder_7(Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * value)
|
|
{
|
|
___decoder_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___decoder_7), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_byteBuffer_8() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___byteBuffer_8)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_byteBuffer_8() const { return ___byteBuffer_8; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_byteBuffer_8() { return &___byteBuffer_8; }
|
|
inline void set_byteBuffer_8(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___byteBuffer_8 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___byteBuffer_8), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_charBuffer_9() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___charBuffer_9)); }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_charBuffer_9() const { return ___charBuffer_9; }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_charBuffer_9() { return &___charBuffer_9; }
|
|
inline void set_charBuffer_9(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
|
|
{
|
|
___charBuffer_9 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___charBuffer_9), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__preamble_10() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____preamble_10)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__preamble_10() const { return ____preamble_10; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__preamble_10() { return &____preamble_10; }
|
|
inline void set__preamble_10(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
____preamble_10 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____preamble_10), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_charPos_11() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___charPos_11)); }
|
|
inline int32_t get_charPos_11() const { return ___charPos_11; }
|
|
inline int32_t* get_address_of_charPos_11() { return &___charPos_11; }
|
|
inline void set_charPos_11(int32_t value)
|
|
{
|
|
___charPos_11 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_charLen_12() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___charLen_12)); }
|
|
inline int32_t get_charLen_12() const { return ___charLen_12; }
|
|
inline int32_t* get_address_of_charLen_12() { return &___charLen_12; }
|
|
inline void set_charLen_12(int32_t value)
|
|
{
|
|
___charLen_12 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_byteLen_13() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___byteLen_13)); }
|
|
inline int32_t get_byteLen_13() const { return ___byteLen_13; }
|
|
inline int32_t* get_address_of_byteLen_13() { return &___byteLen_13; }
|
|
inline void set_byteLen_13(int32_t value)
|
|
{
|
|
___byteLen_13 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_bytePos_14() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___bytePos_14)); }
|
|
inline int32_t get_bytePos_14() const { return ___bytePos_14; }
|
|
inline int32_t* get_address_of_bytePos_14() { return &___bytePos_14; }
|
|
inline void set_bytePos_14(int32_t value)
|
|
{
|
|
___bytePos_14 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__maxCharsPerBuffer_15() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____maxCharsPerBuffer_15)); }
|
|
inline int32_t get__maxCharsPerBuffer_15() const { return ____maxCharsPerBuffer_15; }
|
|
inline int32_t* get_address_of__maxCharsPerBuffer_15() { return &____maxCharsPerBuffer_15; }
|
|
inline void set__maxCharsPerBuffer_15(int32_t value)
|
|
{
|
|
____maxCharsPerBuffer_15 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__detectEncoding_16() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____detectEncoding_16)); }
|
|
inline bool get__detectEncoding_16() const { return ____detectEncoding_16; }
|
|
inline bool* get_address_of__detectEncoding_16() { return &____detectEncoding_16; }
|
|
inline void set__detectEncoding_16(bool value)
|
|
{
|
|
____detectEncoding_16 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__checkPreamble_17() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____checkPreamble_17)); }
|
|
inline bool get__checkPreamble_17() const { return ____checkPreamble_17; }
|
|
inline bool* get_address_of__checkPreamble_17() { return &____checkPreamble_17; }
|
|
inline void set__checkPreamble_17(bool value)
|
|
{
|
|
____checkPreamble_17 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__isBlocked_18() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____isBlocked_18)); }
|
|
inline bool get__isBlocked_18() const { return ____isBlocked_18; }
|
|
inline bool* get_address_of__isBlocked_18() { return &____isBlocked_18; }
|
|
inline void set__isBlocked_18(bool value)
|
|
{
|
|
____isBlocked_18 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__closable_19() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____closable_19)); }
|
|
inline bool get__closable_19() const { return ____closable_19; }
|
|
inline bool* get_address_of__closable_19() { return &____closable_19; }
|
|
inline void set__closable_19(bool value)
|
|
{
|
|
____closable_19 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__asyncReadTask_20() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____asyncReadTask_20)); }
|
|
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get__asyncReadTask_20() const { return ____asyncReadTask_20; }
|
|
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of__asyncReadTask_20() { return &____asyncReadTask_20; }
|
|
inline void set__asyncReadTask_20(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value)
|
|
{
|
|
____asyncReadTask_20 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____asyncReadTask_20), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_StaticFields
|
|
{
|
|
public:
|
|
// System.IO.StreamReader System.IO.StreamReader::Null
|
|
StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * ___Null_4;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Null_4() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_StaticFields, ___Null_4)); }
|
|
inline StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * get_Null_4() const { return ___Null_4; }
|
|
inline StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E ** get_address_of_Null_4() { return &___Null_4; }
|
|
inline void set_Null_4(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * value)
|
|
{
|
|
___Null_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Null_4), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Net.WebClient
|
|
struct WebClient_t0BFD938623FF98FA7EEE0031AB9E8293DD295F6A : public Component_t7AEFE153F6778CF52E1981BC3E811A9604B29473
|
|
{
|
|
public:
|
|
// System.Uri System.Net.WebClient::m_baseAddress
|
|
Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * ___m_baseAddress_4;
|
|
// System.Net.ICredentials System.Net.WebClient::m_credentials
|
|
RuntimeObject* ___m_credentials_5;
|
|
// System.Net.WebHeaderCollection System.Net.WebClient::m_headers
|
|
WebHeaderCollection_tB57EC4CD795CACE87271D6887BBED385DC37B304 * ___m_headers_6;
|
|
// System.Collections.Specialized.NameValueCollection System.Net.WebClient::m_requestParameters
|
|
NameValueCollection_t7C7CED43E4C6E997E3C8012F1D2CC4027FAD10D1 * ___m_requestParameters_7;
|
|
// System.Net.WebResponse System.Net.WebClient::m_WebResponse
|
|
WebResponse_t5C91B5B83E2FBA2EABC6FDF2A70E9AFD9BB059BD * ___m_WebResponse_8;
|
|
// System.Net.WebRequest System.Net.WebClient::m_WebRequest
|
|
WebRequest_t5668DA48802E9FE2F1DE5F5A770B218608B918C8 * ___m_WebRequest_9;
|
|
// System.Text.Encoding System.Net.WebClient::m_Encoding
|
|
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___m_Encoding_10;
|
|
// System.String System.Net.WebClient::m_Method
|
|
String_t* ___m_Method_11;
|
|
// System.Int64 System.Net.WebClient::m_ContentLength
|
|
int64_t ___m_ContentLength_12;
|
|
// System.Boolean System.Net.WebClient::m_Cancelled
|
|
bool ___m_Cancelled_13;
|
|
// System.Net.WebClient_ProgressData System.Net.WebClient::m_Progress
|
|
ProgressData_tE1BDFEEC6B492E4A260BBEF1107683C28BB8AC20 * ___m_Progress_14;
|
|
// System.Net.IWebProxy System.Net.WebClient::m_Proxy
|
|
RuntimeObject* ___m_Proxy_15;
|
|
// System.Boolean System.Net.WebClient::m_ProxySet
|
|
bool ___m_ProxySet_16;
|
|
// System.Net.Cache.RequestCachePolicy System.Net.WebClient::m_CachePolicy
|
|
RequestCachePolicy_t30D7352C7E9D49EEADD492A70EC92C118D90CD61 * ___m_CachePolicy_17;
|
|
// System.Int32 System.Net.WebClient::m_CallNesting
|
|
int32_t ___m_CallNesting_18;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_baseAddress_4() { return static_cast<int32_t>(offsetof(WebClient_t0BFD938623FF98FA7EEE0031AB9E8293DD295F6A, ___m_baseAddress_4)); }
|
|
inline Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * get_m_baseAddress_4() const { return ___m_baseAddress_4; }
|
|
inline Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E ** get_address_of_m_baseAddress_4() { return &___m_baseAddress_4; }
|
|
inline void set_m_baseAddress_4(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * value)
|
|
{
|
|
___m_baseAddress_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_baseAddress_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_credentials_5() { return static_cast<int32_t>(offsetof(WebClient_t0BFD938623FF98FA7EEE0031AB9E8293DD295F6A, ___m_credentials_5)); }
|
|
inline RuntimeObject* get_m_credentials_5() const { return ___m_credentials_5; }
|
|
inline RuntimeObject** get_address_of_m_credentials_5() { return &___m_credentials_5; }
|
|
inline void set_m_credentials_5(RuntimeObject* value)
|
|
{
|
|
___m_credentials_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_credentials_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_headers_6() { return static_cast<int32_t>(offsetof(WebClient_t0BFD938623FF98FA7EEE0031AB9E8293DD295F6A, ___m_headers_6)); }
|
|
inline WebHeaderCollection_tB57EC4CD795CACE87271D6887BBED385DC37B304 * get_m_headers_6() const { return ___m_headers_6; }
|
|
inline WebHeaderCollection_tB57EC4CD795CACE87271D6887BBED385DC37B304 ** get_address_of_m_headers_6() { return &___m_headers_6; }
|
|
inline void set_m_headers_6(WebHeaderCollection_tB57EC4CD795CACE87271D6887BBED385DC37B304 * value)
|
|
{
|
|
___m_headers_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_headers_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_requestParameters_7() { return static_cast<int32_t>(offsetof(WebClient_t0BFD938623FF98FA7EEE0031AB9E8293DD295F6A, ___m_requestParameters_7)); }
|
|
inline NameValueCollection_t7C7CED43E4C6E997E3C8012F1D2CC4027FAD10D1 * get_m_requestParameters_7() const { return ___m_requestParameters_7; }
|
|
inline NameValueCollection_t7C7CED43E4C6E997E3C8012F1D2CC4027FAD10D1 ** get_address_of_m_requestParameters_7() { return &___m_requestParameters_7; }
|
|
inline void set_m_requestParameters_7(NameValueCollection_t7C7CED43E4C6E997E3C8012F1D2CC4027FAD10D1 * value)
|
|
{
|
|
___m_requestParameters_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_requestParameters_7), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_WebResponse_8() { return static_cast<int32_t>(offsetof(WebClient_t0BFD938623FF98FA7EEE0031AB9E8293DD295F6A, ___m_WebResponse_8)); }
|
|
inline WebResponse_t5C91B5B83E2FBA2EABC6FDF2A70E9AFD9BB059BD * get_m_WebResponse_8() const { return ___m_WebResponse_8; }
|
|
inline WebResponse_t5C91B5B83E2FBA2EABC6FDF2A70E9AFD9BB059BD ** get_address_of_m_WebResponse_8() { return &___m_WebResponse_8; }
|
|
inline void set_m_WebResponse_8(WebResponse_t5C91B5B83E2FBA2EABC6FDF2A70E9AFD9BB059BD * value)
|
|
{
|
|
___m_WebResponse_8 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_WebResponse_8), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_WebRequest_9() { return static_cast<int32_t>(offsetof(WebClient_t0BFD938623FF98FA7EEE0031AB9E8293DD295F6A, ___m_WebRequest_9)); }
|
|
inline WebRequest_t5668DA48802E9FE2F1DE5F5A770B218608B918C8 * get_m_WebRequest_9() const { return ___m_WebRequest_9; }
|
|
inline WebRequest_t5668DA48802E9FE2F1DE5F5A770B218608B918C8 ** get_address_of_m_WebRequest_9() { return &___m_WebRequest_9; }
|
|
inline void set_m_WebRequest_9(WebRequest_t5668DA48802E9FE2F1DE5F5A770B218608B918C8 * value)
|
|
{
|
|
___m_WebRequest_9 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_WebRequest_9), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_Encoding_10() { return static_cast<int32_t>(offsetof(WebClient_t0BFD938623FF98FA7EEE0031AB9E8293DD295F6A, ___m_Encoding_10)); }
|
|
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_m_Encoding_10() const { return ___m_Encoding_10; }
|
|
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_m_Encoding_10() { return &___m_Encoding_10; }
|
|
inline void set_m_Encoding_10(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
|
|
{
|
|
___m_Encoding_10 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_Encoding_10), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_Method_11() { return static_cast<int32_t>(offsetof(WebClient_t0BFD938623FF98FA7EEE0031AB9E8293DD295F6A, ___m_Method_11)); }
|
|
inline String_t* get_m_Method_11() const { return ___m_Method_11; }
|
|
inline String_t** get_address_of_m_Method_11() { return &___m_Method_11; }
|
|
inline void set_m_Method_11(String_t* value)
|
|
{
|
|
___m_Method_11 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_Method_11), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_ContentLength_12() { return static_cast<int32_t>(offsetof(WebClient_t0BFD938623FF98FA7EEE0031AB9E8293DD295F6A, ___m_ContentLength_12)); }
|
|
inline int64_t get_m_ContentLength_12() const { return ___m_ContentLength_12; }
|
|
inline int64_t* get_address_of_m_ContentLength_12() { return &___m_ContentLength_12; }
|
|
inline void set_m_ContentLength_12(int64_t value)
|
|
{
|
|
___m_ContentLength_12 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_Cancelled_13() { return static_cast<int32_t>(offsetof(WebClient_t0BFD938623FF98FA7EEE0031AB9E8293DD295F6A, ___m_Cancelled_13)); }
|
|
inline bool get_m_Cancelled_13() const { return ___m_Cancelled_13; }
|
|
inline bool* get_address_of_m_Cancelled_13() { return &___m_Cancelled_13; }
|
|
inline void set_m_Cancelled_13(bool value)
|
|
{
|
|
___m_Cancelled_13 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_Progress_14() { return static_cast<int32_t>(offsetof(WebClient_t0BFD938623FF98FA7EEE0031AB9E8293DD295F6A, ___m_Progress_14)); }
|
|
inline ProgressData_tE1BDFEEC6B492E4A260BBEF1107683C28BB8AC20 * get_m_Progress_14() const { return ___m_Progress_14; }
|
|
inline ProgressData_tE1BDFEEC6B492E4A260BBEF1107683C28BB8AC20 ** get_address_of_m_Progress_14() { return &___m_Progress_14; }
|
|
inline void set_m_Progress_14(ProgressData_tE1BDFEEC6B492E4A260BBEF1107683C28BB8AC20 * value)
|
|
{
|
|
___m_Progress_14 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_Progress_14), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_Proxy_15() { return static_cast<int32_t>(offsetof(WebClient_t0BFD938623FF98FA7EEE0031AB9E8293DD295F6A, ___m_Proxy_15)); }
|
|
inline RuntimeObject* get_m_Proxy_15() const { return ___m_Proxy_15; }
|
|
inline RuntimeObject** get_address_of_m_Proxy_15() { return &___m_Proxy_15; }
|
|
inline void set_m_Proxy_15(RuntimeObject* value)
|
|
{
|
|
___m_Proxy_15 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_Proxy_15), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_ProxySet_16() { return static_cast<int32_t>(offsetof(WebClient_t0BFD938623FF98FA7EEE0031AB9E8293DD295F6A, ___m_ProxySet_16)); }
|
|
inline bool get_m_ProxySet_16() const { return ___m_ProxySet_16; }
|
|
inline bool* get_address_of_m_ProxySet_16() { return &___m_ProxySet_16; }
|
|
inline void set_m_ProxySet_16(bool value)
|
|
{
|
|
___m_ProxySet_16 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_CachePolicy_17() { return static_cast<int32_t>(offsetof(WebClient_t0BFD938623FF98FA7EEE0031AB9E8293DD295F6A, ___m_CachePolicy_17)); }
|
|
inline RequestCachePolicy_t30D7352C7E9D49EEADD492A70EC92C118D90CD61 * get_m_CachePolicy_17() const { return ___m_CachePolicy_17; }
|
|
inline RequestCachePolicy_t30D7352C7E9D49EEADD492A70EC92C118D90CD61 ** get_address_of_m_CachePolicy_17() { return &___m_CachePolicy_17; }
|
|
inline void set_m_CachePolicy_17(RequestCachePolicy_t30D7352C7E9D49EEADD492A70EC92C118D90CD61 * value)
|
|
{
|
|
___m_CachePolicy_17 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_CachePolicy_17), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_CallNesting_18() { return static_cast<int32_t>(offsetof(WebClient_t0BFD938623FF98FA7EEE0031AB9E8293DD295F6A, ___m_CallNesting_18)); }
|
|
inline int32_t get_m_CallNesting_18() const { return ___m_CallNesting_18; }
|
|
inline int32_t* get_address_of_m_CallNesting_18() { return &___m_CallNesting_18; }
|
|
inline void set_m_CallNesting_18(int32_t value)
|
|
{
|
|
___m_CallNesting_18 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Reflection.Assembly
|
|
struct Assembly_t : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.IntPtr System.Reflection.Assembly::_mono_assembly
|
|
intptr_t ____mono_assembly_0;
|
|
// System.Reflection.Assembly_ResolveEventHolder System.Reflection.Assembly::resolve_event_holder
|
|
ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1;
|
|
// System.Object System.Reflection.Assembly::_evidence
|
|
RuntimeObject * ____evidence_2;
|
|
// System.Object System.Reflection.Assembly::_minimum
|
|
RuntimeObject * ____minimum_3;
|
|
// System.Object System.Reflection.Assembly::_optional
|
|
RuntimeObject * ____optional_4;
|
|
// System.Object System.Reflection.Assembly::_refuse
|
|
RuntimeObject * ____refuse_5;
|
|
// System.Object System.Reflection.Assembly::_granted
|
|
RuntimeObject * ____granted_6;
|
|
// System.Object System.Reflection.Assembly::_denied
|
|
RuntimeObject * ____denied_7;
|
|
// System.Boolean System.Reflection.Assembly::fromByteArray
|
|
bool ___fromByteArray_8;
|
|
// System.String System.Reflection.Assembly::assemblyName
|
|
String_t* ___assemblyName_9;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__mono_assembly_0() { return static_cast<int32_t>(offsetof(Assembly_t, ____mono_assembly_0)); }
|
|
inline intptr_t get__mono_assembly_0() const { return ____mono_assembly_0; }
|
|
inline intptr_t* get_address_of__mono_assembly_0() { return &____mono_assembly_0; }
|
|
inline void set__mono_assembly_0(intptr_t value)
|
|
{
|
|
____mono_assembly_0 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_resolve_event_holder_1() { return static_cast<int32_t>(offsetof(Assembly_t, ___resolve_event_holder_1)); }
|
|
inline ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * get_resolve_event_holder_1() const { return ___resolve_event_holder_1; }
|
|
inline ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E ** get_address_of_resolve_event_holder_1() { return &___resolve_event_holder_1; }
|
|
inline void set_resolve_event_holder_1(ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * value)
|
|
{
|
|
___resolve_event_holder_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___resolve_event_holder_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__evidence_2() { return static_cast<int32_t>(offsetof(Assembly_t, ____evidence_2)); }
|
|
inline RuntimeObject * get__evidence_2() const { return ____evidence_2; }
|
|
inline RuntimeObject ** get_address_of__evidence_2() { return &____evidence_2; }
|
|
inline void set__evidence_2(RuntimeObject * value)
|
|
{
|
|
____evidence_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____evidence_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__minimum_3() { return static_cast<int32_t>(offsetof(Assembly_t, ____minimum_3)); }
|
|
inline RuntimeObject * get__minimum_3() const { return ____minimum_3; }
|
|
inline RuntimeObject ** get_address_of__minimum_3() { return &____minimum_3; }
|
|
inline void set__minimum_3(RuntimeObject * value)
|
|
{
|
|
____minimum_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____minimum_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__optional_4() { return static_cast<int32_t>(offsetof(Assembly_t, ____optional_4)); }
|
|
inline RuntimeObject * get__optional_4() const { return ____optional_4; }
|
|
inline RuntimeObject ** get_address_of__optional_4() { return &____optional_4; }
|
|
inline void set__optional_4(RuntimeObject * value)
|
|
{
|
|
____optional_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____optional_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__refuse_5() { return static_cast<int32_t>(offsetof(Assembly_t, ____refuse_5)); }
|
|
inline RuntimeObject * get__refuse_5() const { return ____refuse_5; }
|
|
inline RuntimeObject ** get_address_of__refuse_5() { return &____refuse_5; }
|
|
inline void set__refuse_5(RuntimeObject * value)
|
|
{
|
|
____refuse_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____refuse_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__granted_6() { return static_cast<int32_t>(offsetof(Assembly_t, ____granted_6)); }
|
|
inline RuntimeObject * get__granted_6() const { return ____granted_6; }
|
|
inline RuntimeObject ** get_address_of__granted_6() { return &____granted_6; }
|
|
inline void set__granted_6(RuntimeObject * value)
|
|
{
|
|
____granted_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____granted_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__denied_7() { return static_cast<int32_t>(offsetof(Assembly_t, ____denied_7)); }
|
|
inline RuntimeObject * get__denied_7() const { return ____denied_7; }
|
|
inline RuntimeObject ** get_address_of__denied_7() { return &____denied_7; }
|
|
inline void set__denied_7(RuntimeObject * value)
|
|
{
|
|
____denied_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____denied_7), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_fromByteArray_8() { return static_cast<int32_t>(offsetof(Assembly_t, ___fromByteArray_8)); }
|
|
inline bool get_fromByteArray_8() const { return ___fromByteArray_8; }
|
|
inline bool* get_address_of_fromByteArray_8() { return &___fromByteArray_8; }
|
|
inline void set_fromByteArray_8(bool value)
|
|
{
|
|
___fromByteArray_8 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_assemblyName_9() { return static_cast<int32_t>(offsetof(Assembly_t, ___assemblyName_9)); }
|
|
inline String_t* get_assemblyName_9() const { return ___assemblyName_9; }
|
|
inline String_t** get_address_of_assemblyName_9() { return &___assemblyName_9; }
|
|
inline void set_assemblyName_9(String_t* value)
|
|
{
|
|
___assemblyName_9 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___assemblyName_9), (void*)value);
|
|
}
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.Reflection.Assembly
|
|
struct Assembly_t_marshaled_pinvoke
|
|
{
|
|
intptr_t ____mono_assembly_0;
|
|
ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1;
|
|
Il2CppIUnknown* ____evidence_2;
|
|
Il2CppIUnknown* ____minimum_3;
|
|
Il2CppIUnknown* ____optional_4;
|
|
Il2CppIUnknown* ____refuse_5;
|
|
Il2CppIUnknown* ____granted_6;
|
|
Il2CppIUnknown* ____denied_7;
|
|
int32_t ___fromByteArray_8;
|
|
char* ___assemblyName_9;
|
|
};
|
|
// Native definition for COM marshalling of System.Reflection.Assembly
|
|
struct Assembly_t_marshaled_com
|
|
{
|
|
intptr_t ____mono_assembly_0;
|
|
ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1;
|
|
Il2CppIUnknown* ____evidence_2;
|
|
Il2CppIUnknown* ____minimum_3;
|
|
Il2CppIUnknown* ____optional_4;
|
|
Il2CppIUnknown* ____refuse_5;
|
|
Il2CppIUnknown* ____granted_6;
|
|
Il2CppIUnknown* ____denied_7;
|
|
int32_t ___fromByteArray_8;
|
|
Il2CppChar* ___assemblyName_9;
|
|
};
|
|
|
|
// System.Reflection.AssemblyContentType
|
|
struct AssemblyContentType_t9869DE40B7B1976B389F3B6A5A5D18B09E623401
|
|
{
|
|
public:
|
|
// System.Int32 System.Reflection.AssemblyContentType::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AssemblyContentType_t9869DE40B7B1976B389F3B6A5A5D18B09E623401, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Reflection.AssemblyNameFlags
|
|
struct AssemblyNameFlags_t7834EDF078E7ECA985AA434A1EA0D95C2A44F256
|
|
{
|
|
public:
|
|
// System.Int32 System.Reflection.AssemblyNameFlags::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AssemblyNameFlags_t7834EDF078E7ECA985AA434A1EA0D95C2A44F256, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Reflection.BindingFlags
|
|
struct BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0
|
|
{
|
|
public:
|
|
// System.Int32 System.Reflection.BindingFlags::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Reflection.ConstructorInfo
|
|
struct ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF : public MethodBase_t
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
struct ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_StaticFields
|
|
{
|
|
public:
|
|
// System.String System.Reflection.ConstructorInfo::ConstructorName
|
|
String_t* ___ConstructorName_0;
|
|
// System.String System.Reflection.ConstructorInfo::TypeConstructorName
|
|
String_t* ___TypeConstructorName_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_ConstructorName_0() { return static_cast<int32_t>(offsetof(ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_StaticFields, ___ConstructorName_0)); }
|
|
inline String_t* get_ConstructorName_0() const { return ___ConstructorName_0; }
|
|
inline String_t** get_address_of_ConstructorName_0() { return &___ConstructorName_0; }
|
|
inline void set_ConstructorName_0(String_t* value)
|
|
{
|
|
___ConstructorName_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___ConstructorName_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_TypeConstructorName_1() { return static_cast<int32_t>(offsetof(ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_StaticFields, ___TypeConstructorName_1)); }
|
|
inline String_t* get_TypeConstructorName_1() const { return ___TypeConstructorName_1; }
|
|
inline String_t** get_address_of_TypeConstructorName_1() { return &___TypeConstructorName_1; }
|
|
inline void set_TypeConstructorName_1(String_t* value)
|
|
{
|
|
___TypeConstructorName_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___TypeConstructorName_1), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Reflection.MethodInfo
|
|
struct MethodInfo_t : public MethodBase_t
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.Reflection.ParameterAttributes
|
|
struct ParameterAttributes_tF9962395513C2A48CF5AF2F371C66DD52789F110
|
|
{
|
|
public:
|
|
// System.Int32 System.Reflection.ParameterAttributes::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ParameterAttributes_tF9962395513C2A48CF5AF2F371C66DD52789F110, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Reflection.ProcessorArchitecture
|
|
struct ProcessorArchitecture_t0CFB73A83469D6AC222B9FE46E81EAC73C2627C7
|
|
{
|
|
public:
|
|
// System.Int32 System.Reflection.ProcessorArchitecture::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ProcessorArchitecture_t0CFB73A83469D6AC222B9FE46E81EAC73C2627C7, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Runtime.Serialization.Formatters.FormatterAssemblyStyle
|
|
struct FormatterAssemblyStyle_tA1E8A300026362A0AE091830C5DBDEFCBCD5213A
|
|
{
|
|
public:
|
|
// System.Int32 System.Runtime.Serialization.Formatters.FormatterAssemblyStyle::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FormatterAssemblyStyle_tA1E8A300026362A0AE091830C5DBDEFCBCD5213A, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Runtime.Serialization.Formatters.FormatterTypeStyle
|
|
struct FormatterTypeStyle_tFEF4ABC0D7DE012B1C0976F196E45600568D67AF
|
|
{
|
|
public:
|
|
// System.Int32 System.Runtime.Serialization.Formatters.FormatterTypeStyle::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FormatterTypeStyle_tFEF4ABC0D7DE012B1C0976F196E45600568D67AF, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Runtime.Serialization.Formatters.TypeFilterLevel
|
|
struct TypeFilterLevel_t8FC0F5849147B01F3EB6E3B876E06B3022E0C59A
|
|
{
|
|
public:
|
|
// System.Int32 System.Runtime.Serialization.Formatters.TypeFilterLevel::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TypeFilterLevel_t8FC0F5849147B01F3EB6E3B876E06B3022E0C59A, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Runtime.Serialization.StreamingContextStates
|
|
struct StreamingContextStates_t6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F
|
|
{
|
|
public:
|
|
// System.Int32 System.Runtime.Serialization.StreamingContextStates::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StreamingContextStates_t6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.RuntimeTypeHandle
|
|
struct RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D
|
|
{
|
|
public:
|
|
// System.IntPtr System.RuntimeTypeHandle::value
|
|
intptr_t ___value_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D, ___value_0)); }
|
|
inline intptr_t get_value_0() const { return ___value_0; }
|
|
inline intptr_t* get_address_of_value_0() { return &___value_0; }
|
|
inline void set_value_0(intptr_t value)
|
|
{
|
|
___value_0 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.StringComparison
|
|
struct StringComparison_t02BAA95468CE9E91115C604577611FDF58FEDCF0
|
|
{
|
|
public:
|
|
// System.Int32 System.StringComparison::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StringComparison_t02BAA95468CE9E91115C604577611FDF58FEDCF0, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Uri_Flags
|
|
struct Flags_tEBE7CABEBD13F16920D6950B384EB8F988250A2A
|
|
{
|
|
public:
|
|
// System.UInt64 System.Uri_Flags::value__
|
|
uint64_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Flags_tEBE7CABEBD13F16920D6950B384EB8F988250A2A, ___value___2)); }
|
|
inline uint64_t get_value___2() const { return ___value___2; }
|
|
inline uint64_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(uint64_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.UriIdnScope
|
|
struct UriIdnScope_tE1574B39C7492C761EFE2FC12DDE82DE013AC9D1
|
|
{
|
|
public:
|
|
// System.Int32 System.UriIdnScope::value__
|
|
int32_t ___value___2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UriIdnScope_tE1574B39C7492C761EFE2FC12DDE82DE013AC9D1, ___value___2)); }
|
|
inline int32_t get_value___2() const { return ___value___2; }
|
|
inline int32_t* get_address_of_value___2() { return &___value___2; }
|
|
inline void set_value___2(int32_t value)
|
|
{
|
|
___value___2 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.ApplicationException
|
|
struct ApplicationException_t664823C3E0D3E1E7C7FA1C0DB4E19E98E9811C74 : public Exception_t
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ComponentModel.BaseNumberConverter
|
|
struct BaseNumberConverter_t6AF36A2503E7BABF7FB9A8EC05DF8B828491AC63 : public TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ComponentModel.DesignerSerializationVisibilityAttribute
|
|
struct DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
|
|
{
|
|
public:
|
|
// System.ComponentModel.DesignerSerializationVisibility System.ComponentModel.DesignerSerializationVisibilityAttribute::visibility
|
|
int32_t ___visibility_4;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_visibility_4() { return static_cast<int32_t>(offsetof(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA, ___visibility_4)); }
|
|
inline int32_t get_visibility_4() const { return ___visibility_4; }
|
|
inline int32_t* get_address_of_visibility_4() { return &___visibility_4; }
|
|
inline void set_visibility_4(int32_t value)
|
|
{
|
|
___visibility_4 = value;
|
|
}
|
|
};
|
|
|
|
struct DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_StaticFields
|
|
{
|
|
public:
|
|
// System.ComponentModel.DesignerSerializationVisibilityAttribute System.ComponentModel.DesignerSerializationVisibilityAttribute::Content
|
|
DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * ___Content_0;
|
|
// System.ComponentModel.DesignerSerializationVisibilityAttribute System.ComponentModel.DesignerSerializationVisibilityAttribute::Hidden
|
|
DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * ___Hidden_1;
|
|
// System.ComponentModel.DesignerSerializationVisibilityAttribute System.ComponentModel.DesignerSerializationVisibilityAttribute::Visible
|
|
DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * ___Visible_2;
|
|
// System.ComponentModel.DesignerSerializationVisibilityAttribute System.ComponentModel.DesignerSerializationVisibilityAttribute::Default
|
|
DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * ___Default_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Content_0() { return static_cast<int32_t>(offsetof(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_StaticFields, ___Content_0)); }
|
|
inline DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * get_Content_0() const { return ___Content_0; }
|
|
inline DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA ** get_address_of_Content_0() { return &___Content_0; }
|
|
inline void set_Content_0(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * value)
|
|
{
|
|
___Content_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Content_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Hidden_1() { return static_cast<int32_t>(offsetof(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_StaticFields, ___Hidden_1)); }
|
|
inline DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * get_Hidden_1() const { return ___Hidden_1; }
|
|
inline DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA ** get_address_of_Hidden_1() { return &___Hidden_1; }
|
|
inline void set_Hidden_1(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * value)
|
|
{
|
|
___Hidden_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Hidden_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Visible_2() { return static_cast<int32_t>(offsetof(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_StaticFields, ___Visible_2)); }
|
|
inline DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * get_Visible_2() const { return ___Visible_2; }
|
|
inline DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA ** get_address_of_Visible_2() { return &___Visible_2; }
|
|
inline void set_Visible_2(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * value)
|
|
{
|
|
___Visible_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Visible_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Default_3() { return static_cast<int32_t>(offsetof(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_StaticFields, ___Default_3)); }
|
|
inline DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * get_Default_3() const { return ___Default_3; }
|
|
inline DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA ** get_address_of_Default_3() { return &___Default_3; }
|
|
inline void set_Default_3(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * value)
|
|
{
|
|
___Default_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Default_3), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.EditorBrowsableAttribute
|
|
struct EditorBrowsableAttribute_tF3507DF0AB82A8D54C70D6F7FB4D363DF729D516 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
|
|
{
|
|
public:
|
|
// System.ComponentModel.EditorBrowsableState System.ComponentModel.EditorBrowsableAttribute::browsableState
|
|
int32_t ___browsableState_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_browsableState_0() { return static_cast<int32_t>(offsetof(EditorBrowsableAttribute_tF3507DF0AB82A8D54C70D6F7FB4D363DF729D516, ___browsableState_0)); }
|
|
inline int32_t get_browsableState_0() const { return ___browsableState_0; }
|
|
inline int32_t* get_address_of_browsableState_0() { return &___browsableState_0; }
|
|
inline void set_browsableState_0(int32_t value)
|
|
{
|
|
___browsableState_0 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.EnumConverter
|
|
struct EnumConverter_t5DA4CB27C27A8C37C31B2A4DE0C4C37820638E12 : public TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB
|
|
{
|
|
public:
|
|
// System.ComponentModel.TypeConverter_StandardValuesCollection System.ComponentModel.EnumConverter::values
|
|
StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * ___values_2;
|
|
// System.Type System.ComponentModel.EnumConverter::type
|
|
Type_t * ___type_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_values_2() { return static_cast<int32_t>(offsetof(EnumConverter_t5DA4CB27C27A8C37C31B2A4DE0C4C37820638E12, ___values_2)); }
|
|
inline StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * get_values_2() const { return ___values_2; }
|
|
inline StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 ** get_address_of_values_2() { return &___values_2; }
|
|
inline void set_values_2(StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * value)
|
|
{
|
|
___values_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___values_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_type_3() { return static_cast<int32_t>(offsetof(EnumConverter_t5DA4CB27C27A8C37C31B2A4DE0C4C37820638E12, ___type_3)); }
|
|
inline Type_t * get_type_3() const { return ___type_3; }
|
|
inline Type_t ** get_address_of_type_3() { return &___type_3; }
|
|
inline void set_type_3(Type_t * value)
|
|
{
|
|
___type_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___type_3), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.ExpandableObjectConverter
|
|
struct ExpandableObjectConverter_tC19580E01F630034FD5140CFA7453E1125E13F99 : public TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ComponentModel.GuidConverter
|
|
struct GuidConverter_t9207FA129C0A5A7AD84D5FEC9C9F2CA5F3FB9D7D : public TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ComponentModel.InheritanceAttribute
|
|
struct InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
|
|
{
|
|
public:
|
|
// System.ComponentModel.InheritanceLevel System.ComponentModel.InheritanceAttribute::inheritanceLevel
|
|
int32_t ___inheritanceLevel_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_inheritanceLevel_0() { return static_cast<int32_t>(offsetof(InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4, ___inheritanceLevel_0)); }
|
|
inline int32_t get_inheritanceLevel_0() const { return ___inheritanceLevel_0; }
|
|
inline int32_t* get_address_of_inheritanceLevel_0() { return &___inheritanceLevel_0; }
|
|
inline void set_inheritanceLevel_0(int32_t value)
|
|
{
|
|
___inheritanceLevel_0 = value;
|
|
}
|
|
};
|
|
|
|
struct InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4_StaticFields
|
|
{
|
|
public:
|
|
// System.ComponentModel.InheritanceAttribute System.ComponentModel.InheritanceAttribute::Inherited
|
|
InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 * ___Inherited_1;
|
|
// System.ComponentModel.InheritanceAttribute System.ComponentModel.InheritanceAttribute::InheritedReadOnly
|
|
InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 * ___InheritedReadOnly_2;
|
|
// System.ComponentModel.InheritanceAttribute System.ComponentModel.InheritanceAttribute::NotInherited
|
|
InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 * ___NotInherited_3;
|
|
// System.ComponentModel.InheritanceAttribute System.ComponentModel.InheritanceAttribute::Default
|
|
InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 * ___Default_4;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Inherited_1() { return static_cast<int32_t>(offsetof(InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4_StaticFields, ___Inherited_1)); }
|
|
inline InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 * get_Inherited_1() const { return ___Inherited_1; }
|
|
inline InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 ** get_address_of_Inherited_1() { return &___Inherited_1; }
|
|
inline void set_Inherited_1(InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 * value)
|
|
{
|
|
___Inherited_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Inherited_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_InheritedReadOnly_2() { return static_cast<int32_t>(offsetof(InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4_StaticFields, ___InheritedReadOnly_2)); }
|
|
inline InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 * get_InheritedReadOnly_2() const { return ___InheritedReadOnly_2; }
|
|
inline InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 ** get_address_of_InheritedReadOnly_2() { return &___InheritedReadOnly_2; }
|
|
inline void set_InheritedReadOnly_2(InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 * value)
|
|
{
|
|
___InheritedReadOnly_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___InheritedReadOnly_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_NotInherited_3() { return static_cast<int32_t>(offsetof(InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4_StaticFields, ___NotInherited_3)); }
|
|
inline InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 * get_NotInherited_3() const { return ___NotInherited_3; }
|
|
inline InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 ** get_address_of_NotInherited_3() { return &___NotInherited_3; }
|
|
inline void set_NotInherited_3(InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 * value)
|
|
{
|
|
___NotInherited_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___NotInherited_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Default_4() { return static_cast<int32_t>(offsetof(InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4_StaticFields, ___Default_4)); }
|
|
inline InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 * get_Default_4() const { return ___Default_4; }
|
|
inline InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 ** get_address_of_Default_4() { return &___Default_4; }
|
|
inline void set_Default_4(InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 * value)
|
|
{
|
|
___Default_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Default_4), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.LicenseManager_LicenseInteropHelper_CLRLicenseContext
|
|
struct CLRLicenseContext_t16B4876D030AD05B4AEA1B65FDC49BC8E4BF64DC : public LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A
|
|
{
|
|
public:
|
|
// System.ComponentModel.LicenseUsageMode System.ComponentModel.LicenseManager_LicenseInteropHelper_CLRLicenseContext::usageMode
|
|
int32_t ___usageMode_0;
|
|
// System.Type System.ComponentModel.LicenseManager_LicenseInteropHelper_CLRLicenseContext::type
|
|
Type_t * ___type_1;
|
|
// System.String System.ComponentModel.LicenseManager_LicenseInteropHelper_CLRLicenseContext::key
|
|
String_t* ___key_2;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_usageMode_0() { return static_cast<int32_t>(offsetof(CLRLicenseContext_t16B4876D030AD05B4AEA1B65FDC49BC8E4BF64DC, ___usageMode_0)); }
|
|
inline int32_t get_usageMode_0() const { return ___usageMode_0; }
|
|
inline int32_t* get_address_of_usageMode_0() { return &___usageMode_0; }
|
|
inline void set_usageMode_0(int32_t value)
|
|
{
|
|
___usageMode_0 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_type_1() { return static_cast<int32_t>(offsetof(CLRLicenseContext_t16B4876D030AD05B4AEA1B65FDC49BC8E4BF64DC, ___type_1)); }
|
|
inline Type_t * get_type_1() const { return ___type_1; }
|
|
inline Type_t ** get_address_of_type_1() { return &___type_1; }
|
|
inline void set_type_1(Type_t * value)
|
|
{
|
|
___type_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___type_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(CLRLicenseContext_t16B4876D030AD05B4AEA1B65FDC49BC8E4BF64DC, ___key_2)); }
|
|
inline String_t* get_key_2() const { return ___key_2; }
|
|
inline String_t** get_address_of_key_2() { return &___key_2; }
|
|
inline void set_key_2(String_t* value)
|
|
{
|
|
___key_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.ListChangedEventArgs
|
|
struct ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84 : public EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E
|
|
{
|
|
public:
|
|
// System.ComponentModel.ListChangedType System.ComponentModel.ListChangedEventArgs::listChangedType
|
|
int32_t ___listChangedType_1;
|
|
// System.Int32 System.ComponentModel.ListChangedEventArgs::newIndex
|
|
int32_t ___newIndex_2;
|
|
// System.Int32 System.ComponentModel.ListChangedEventArgs::oldIndex
|
|
int32_t ___oldIndex_3;
|
|
// System.ComponentModel.PropertyDescriptor System.ComponentModel.ListChangedEventArgs::propDesc
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___propDesc_4;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_listChangedType_1() { return static_cast<int32_t>(offsetof(ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84, ___listChangedType_1)); }
|
|
inline int32_t get_listChangedType_1() const { return ___listChangedType_1; }
|
|
inline int32_t* get_address_of_listChangedType_1() { return &___listChangedType_1; }
|
|
inline void set_listChangedType_1(int32_t value)
|
|
{
|
|
___listChangedType_1 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_newIndex_2() { return static_cast<int32_t>(offsetof(ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84, ___newIndex_2)); }
|
|
inline int32_t get_newIndex_2() const { return ___newIndex_2; }
|
|
inline int32_t* get_address_of_newIndex_2() { return &___newIndex_2; }
|
|
inline void set_newIndex_2(int32_t value)
|
|
{
|
|
___newIndex_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_oldIndex_3() { return static_cast<int32_t>(offsetof(ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84, ___oldIndex_3)); }
|
|
inline int32_t get_oldIndex_3() const { return ___oldIndex_3; }
|
|
inline int32_t* get_address_of_oldIndex_3() { return &___oldIndex_3; }
|
|
inline void set_oldIndex_3(int32_t value)
|
|
{
|
|
___oldIndex_3 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_propDesc_4() { return static_cast<int32_t>(offsetof(ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84, ___propDesc_4)); }
|
|
inline PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * get_propDesc_4() const { return ___propDesc_4; }
|
|
inline PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D ** get_address_of_propDesc_4() { return &___propDesc_4; }
|
|
inline void set_propDesc_4(PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * value)
|
|
{
|
|
___propDesc_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___propDesc_4), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.ListSortDescription
|
|
struct ListSortDescription_t70B03E24814E0475DA906045690FBE5010F28C75 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.ComponentModel.PropertyDescriptor System.ComponentModel.ListSortDescription::property
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___property_0;
|
|
// System.ComponentModel.ListSortDirection System.ComponentModel.ListSortDescription::sortDirection
|
|
int32_t ___sortDirection_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_property_0() { return static_cast<int32_t>(offsetof(ListSortDescription_t70B03E24814E0475DA906045690FBE5010F28C75, ___property_0)); }
|
|
inline PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * get_property_0() const { return ___property_0; }
|
|
inline PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D ** get_address_of_property_0() { return &___property_0; }
|
|
inline void set_property_0(PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * value)
|
|
{
|
|
___property_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___property_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_sortDirection_1() { return static_cast<int32_t>(offsetof(ListSortDescription_t70B03E24814E0475DA906045690FBE5010F28C75, ___sortDirection_1)); }
|
|
inline int32_t get_sortDirection_1() const { return ___sortDirection_1; }
|
|
inline int32_t* get_address_of_sortDirection_1() { return &___sortDirection_1; }
|
|
inline void set_sortDirection_1(int32_t value)
|
|
{
|
|
___sortDirection_1 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.MaskedTextProvider_CharDescriptor
|
|
struct CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider_CharDescriptor::MaskPosition
|
|
int32_t ___MaskPosition_0;
|
|
// System.ComponentModel.MaskedTextProvider_CaseConversion System.ComponentModel.MaskedTextProvider_CharDescriptor::CaseConversion
|
|
int32_t ___CaseConversion_1;
|
|
// System.ComponentModel.MaskedTextProvider_CharType System.ComponentModel.MaskedTextProvider_CharDescriptor::CharType
|
|
int32_t ___CharType_2;
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider_CharDescriptor::IsAssigned
|
|
bool ___IsAssigned_3;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_MaskPosition_0() { return static_cast<int32_t>(offsetof(CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D, ___MaskPosition_0)); }
|
|
inline int32_t get_MaskPosition_0() const { return ___MaskPosition_0; }
|
|
inline int32_t* get_address_of_MaskPosition_0() { return &___MaskPosition_0; }
|
|
inline void set_MaskPosition_0(int32_t value)
|
|
{
|
|
___MaskPosition_0 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_CaseConversion_1() { return static_cast<int32_t>(offsetof(CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D, ___CaseConversion_1)); }
|
|
inline int32_t get_CaseConversion_1() const { return ___CaseConversion_1; }
|
|
inline int32_t* get_address_of_CaseConversion_1() { return &___CaseConversion_1; }
|
|
inline void set_CaseConversion_1(int32_t value)
|
|
{
|
|
___CaseConversion_1 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_CharType_2() { return static_cast<int32_t>(offsetof(CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D, ___CharType_2)); }
|
|
inline int32_t get_CharType_2() const { return ___CharType_2; }
|
|
inline int32_t* get_address_of_CharType_2() { return &___CharType_2; }
|
|
inline void set_CharType_2(int32_t value)
|
|
{
|
|
___CharType_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_IsAssigned_3() { return static_cast<int32_t>(offsetof(CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D, ___IsAssigned_3)); }
|
|
inline bool get_IsAssigned_3() const { return ___IsAssigned_3; }
|
|
inline bool* get_address_of_IsAssigned_3() { return &___IsAssigned_3; }
|
|
inline void set_IsAssigned_3(bool value)
|
|
{
|
|
___IsAssigned_3 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.MultilineStringConverter
|
|
struct MultilineStringConverter_t339792E6A737C1E96D03DA7172324B8EAEBA85A1 : public TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ComponentModel.NullableConverter
|
|
struct NullableConverter_t46A6256BAFD4B0C501724527189C888B36E48E71 : public TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB
|
|
{
|
|
public:
|
|
// System.Type System.ComponentModel.NullableConverter::nullableType
|
|
Type_t * ___nullableType_2;
|
|
// System.Type System.ComponentModel.NullableConverter::simpleType
|
|
Type_t * ___simpleType_3;
|
|
// System.ComponentModel.TypeConverter System.ComponentModel.NullableConverter::simpleTypeConverter
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * ___simpleTypeConverter_4;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_nullableType_2() { return static_cast<int32_t>(offsetof(NullableConverter_t46A6256BAFD4B0C501724527189C888B36E48E71, ___nullableType_2)); }
|
|
inline Type_t * get_nullableType_2() const { return ___nullableType_2; }
|
|
inline Type_t ** get_address_of_nullableType_2() { return &___nullableType_2; }
|
|
inline void set_nullableType_2(Type_t * value)
|
|
{
|
|
___nullableType_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___nullableType_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_simpleType_3() { return static_cast<int32_t>(offsetof(NullableConverter_t46A6256BAFD4B0C501724527189C888B36E48E71, ___simpleType_3)); }
|
|
inline Type_t * get_simpleType_3() const { return ___simpleType_3; }
|
|
inline Type_t ** get_address_of_simpleType_3() { return &___simpleType_3; }
|
|
inline void set_simpleType_3(Type_t * value)
|
|
{
|
|
___simpleType_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___simpleType_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_simpleTypeConverter_4() { return static_cast<int32_t>(offsetof(NullableConverter_t46A6256BAFD4B0C501724527189C888B36E48E71, ___simpleTypeConverter_4)); }
|
|
inline TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * get_simpleTypeConverter_4() const { return ___simpleTypeConverter_4; }
|
|
inline TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB ** get_address_of_simpleTypeConverter_4() { return &___simpleTypeConverter_4; }
|
|
inline void set_simpleTypeConverter_4(TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * value)
|
|
{
|
|
___simpleTypeConverter_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___simpleTypeConverter_4), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Globalization.CompareInfo
|
|
struct CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.String System.Globalization.CompareInfo::m_name
|
|
String_t* ___m_name_3;
|
|
// System.String System.Globalization.CompareInfo::m_sortName
|
|
String_t* ___m_sortName_4;
|
|
// System.Int32 System.Globalization.CompareInfo::win32LCID
|
|
int32_t ___win32LCID_5;
|
|
// System.Int32 System.Globalization.CompareInfo::culture
|
|
int32_t ___culture_6;
|
|
// System.Globalization.SortVersion System.Globalization.CompareInfo::m_SortVersion
|
|
SortVersion_tE7080CE09A0B8CE226F8046C0D1374DD0A0CAE71 * ___m_SortVersion_20;
|
|
// Mono.Globalization.Unicode.SimpleCollator System.Globalization.CompareInfo::collator
|
|
SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * ___collator_21;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_name_3() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1, ___m_name_3)); }
|
|
inline String_t* get_m_name_3() const { return ___m_name_3; }
|
|
inline String_t** get_address_of_m_name_3() { return &___m_name_3; }
|
|
inline void set_m_name_3(String_t* value)
|
|
{
|
|
___m_name_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_name_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_sortName_4() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1, ___m_sortName_4)); }
|
|
inline String_t* get_m_sortName_4() const { return ___m_sortName_4; }
|
|
inline String_t** get_address_of_m_sortName_4() { return &___m_sortName_4; }
|
|
inline void set_m_sortName_4(String_t* value)
|
|
{
|
|
___m_sortName_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_sortName_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_win32LCID_5() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1, ___win32LCID_5)); }
|
|
inline int32_t get_win32LCID_5() const { return ___win32LCID_5; }
|
|
inline int32_t* get_address_of_win32LCID_5() { return &___win32LCID_5; }
|
|
inline void set_win32LCID_5(int32_t value)
|
|
{
|
|
___win32LCID_5 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_culture_6() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1, ___culture_6)); }
|
|
inline int32_t get_culture_6() const { return ___culture_6; }
|
|
inline int32_t* get_address_of_culture_6() { return &___culture_6; }
|
|
inline void set_culture_6(int32_t value)
|
|
{
|
|
___culture_6 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_SortVersion_20() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1, ___m_SortVersion_20)); }
|
|
inline SortVersion_tE7080CE09A0B8CE226F8046C0D1374DD0A0CAE71 * get_m_SortVersion_20() const { return ___m_SortVersion_20; }
|
|
inline SortVersion_tE7080CE09A0B8CE226F8046C0D1374DD0A0CAE71 ** get_address_of_m_SortVersion_20() { return &___m_SortVersion_20; }
|
|
inline void set_m_SortVersion_20(SortVersion_tE7080CE09A0B8CE226F8046C0D1374DD0A0CAE71 * value)
|
|
{
|
|
___m_SortVersion_20 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_SortVersion_20), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_collator_21() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1, ___collator_21)); }
|
|
inline SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * get_collator_21() const { return ___collator_21; }
|
|
inline SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 ** get_address_of_collator_21() { return &___collator_21; }
|
|
inline void set_collator_21(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * value)
|
|
{
|
|
___collator_21 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___collator_21), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields
|
|
{
|
|
public:
|
|
// System.Collections.Generic.Dictionary`2<System.String,Mono.Globalization.Unicode.SimpleCollator> System.Globalization.CompareInfo::collators
|
|
Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * ___collators_22;
|
|
// System.Boolean System.Globalization.CompareInfo::managedCollation
|
|
bool ___managedCollation_23;
|
|
// System.Boolean System.Globalization.CompareInfo::managedCollationChecked
|
|
bool ___managedCollationChecked_24;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_collators_22() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields, ___collators_22)); }
|
|
inline Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * get_collators_22() const { return ___collators_22; }
|
|
inline Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 ** get_address_of_collators_22() { return &___collators_22; }
|
|
inline void set_collators_22(Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * value)
|
|
{
|
|
___collators_22 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___collators_22), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_managedCollation_23() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields, ___managedCollation_23)); }
|
|
inline bool get_managedCollation_23() const { return ___managedCollation_23; }
|
|
inline bool* get_address_of_managedCollation_23() { return &___managedCollation_23; }
|
|
inline void set_managedCollation_23(bool value)
|
|
{
|
|
___managedCollation_23 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_managedCollationChecked_24() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields, ___managedCollationChecked_24)); }
|
|
inline bool get_managedCollationChecked_24() const { return ___managedCollationChecked_24; }
|
|
inline bool* get_address_of_managedCollationChecked_24() { return &___managedCollationChecked_24; }
|
|
inline void set_managedCollationChecked_24(bool value)
|
|
{
|
|
___managedCollationChecked_24 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Globalization.DateTimeFormatInfo
|
|
struct DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Globalization.CultureData System.Globalization.DateTimeFormatInfo::m_cultureData
|
|
CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * ___m_cultureData_1;
|
|
// System.String System.Globalization.DateTimeFormatInfo::m_name
|
|
String_t* ___m_name_2;
|
|
// System.String System.Globalization.DateTimeFormatInfo::m_langName
|
|
String_t* ___m_langName_3;
|
|
// System.Globalization.CompareInfo System.Globalization.DateTimeFormatInfo::m_compareInfo
|
|
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___m_compareInfo_4;
|
|
// System.Globalization.CultureInfo System.Globalization.DateTimeFormatInfo::m_cultureInfo
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___m_cultureInfo_5;
|
|
// System.String System.Globalization.DateTimeFormatInfo::amDesignator
|
|
String_t* ___amDesignator_6;
|
|
// System.String System.Globalization.DateTimeFormatInfo::pmDesignator
|
|
String_t* ___pmDesignator_7;
|
|
// System.String System.Globalization.DateTimeFormatInfo::dateSeparator
|
|
String_t* ___dateSeparator_8;
|
|
// System.String System.Globalization.DateTimeFormatInfo::generalShortTimePattern
|
|
String_t* ___generalShortTimePattern_9;
|
|
// System.String System.Globalization.DateTimeFormatInfo::generalLongTimePattern
|
|
String_t* ___generalLongTimePattern_10;
|
|
// System.String System.Globalization.DateTimeFormatInfo::timeSeparator
|
|
String_t* ___timeSeparator_11;
|
|
// System.String System.Globalization.DateTimeFormatInfo::monthDayPattern
|
|
String_t* ___monthDayPattern_12;
|
|
// System.String System.Globalization.DateTimeFormatInfo::dateTimeOffsetPattern
|
|
String_t* ___dateTimeOffsetPattern_13;
|
|
// System.Globalization.Calendar System.Globalization.DateTimeFormatInfo::calendar
|
|
Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_17;
|
|
// System.Int32 System.Globalization.DateTimeFormatInfo::firstDayOfWeek
|
|
int32_t ___firstDayOfWeek_18;
|
|
// System.Int32 System.Globalization.DateTimeFormatInfo::calendarWeekRule
|
|
int32_t ___calendarWeekRule_19;
|
|
// System.String System.Globalization.DateTimeFormatInfo::fullDateTimePattern
|
|
String_t* ___fullDateTimePattern_20;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::abbreviatedDayNames
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___abbreviatedDayNames_21;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::m_superShortDayNames
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___m_superShortDayNames_22;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::dayNames
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___dayNames_23;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::abbreviatedMonthNames
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___abbreviatedMonthNames_24;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::monthNames
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___monthNames_25;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::genitiveMonthNames
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___genitiveMonthNames_26;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::m_genitiveAbbreviatedMonthNames
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___m_genitiveAbbreviatedMonthNames_27;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::leapYearMonthNames
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___leapYearMonthNames_28;
|
|
// System.String System.Globalization.DateTimeFormatInfo::longDatePattern
|
|
String_t* ___longDatePattern_29;
|
|
// System.String System.Globalization.DateTimeFormatInfo::shortDatePattern
|
|
String_t* ___shortDatePattern_30;
|
|
// System.String System.Globalization.DateTimeFormatInfo::yearMonthPattern
|
|
String_t* ___yearMonthPattern_31;
|
|
// System.String System.Globalization.DateTimeFormatInfo::longTimePattern
|
|
String_t* ___longTimePattern_32;
|
|
// System.String System.Globalization.DateTimeFormatInfo::shortTimePattern
|
|
String_t* ___shortTimePattern_33;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::allYearMonthPatterns
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___allYearMonthPatterns_34;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::allShortDatePatterns
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___allShortDatePatterns_35;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::allLongDatePatterns
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___allLongDatePatterns_36;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::allShortTimePatterns
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___allShortTimePatterns_37;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::allLongTimePatterns
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___allLongTimePatterns_38;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::m_eraNames
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___m_eraNames_39;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::m_abbrevEraNames
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___m_abbrevEraNames_40;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::m_abbrevEnglishEraNames
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___m_abbrevEnglishEraNames_41;
|
|
// System.Int32[] System.Globalization.DateTimeFormatInfo::optionalCalendars
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___optionalCalendars_42;
|
|
// System.Boolean System.Globalization.DateTimeFormatInfo::m_isReadOnly
|
|
bool ___m_isReadOnly_44;
|
|
// System.Globalization.DateTimeFormatFlags System.Globalization.DateTimeFormatInfo::formatFlags
|
|
int32_t ___formatFlags_45;
|
|
// System.Int32 System.Globalization.DateTimeFormatInfo::CultureID
|
|
int32_t ___CultureID_47;
|
|
// System.Boolean System.Globalization.DateTimeFormatInfo::m_useUserOverride
|
|
bool ___m_useUserOverride_48;
|
|
// System.Boolean System.Globalization.DateTimeFormatInfo::bUseCalendarInfo
|
|
bool ___bUseCalendarInfo_49;
|
|
// System.Int32 System.Globalization.DateTimeFormatInfo::nDataItem
|
|
int32_t ___nDataItem_50;
|
|
// System.Boolean System.Globalization.DateTimeFormatInfo::m_isDefaultCalendar
|
|
bool ___m_isDefaultCalendar_51;
|
|
// System.String[] System.Globalization.DateTimeFormatInfo::m_dateWords
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___m_dateWords_53;
|
|
// System.String System.Globalization.DateTimeFormatInfo::m_fullTimeSpanPositivePattern
|
|
String_t* ___m_fullTimeSpanPositivePattern_54;
|
|
// System.String System.Globalization.DateTimeFormatInfo::m_fullTimeSpanNegativePattern
|
|
String_t* ___m_fullTimeSpanNegativePattern_55;
|
|
// System.Globalization.TokenHashValue[] System.Globalization.DateTimeFormatInfo::m_dtfiTokenHash
|
|
TokenHashValueU5BU5D_t5C8B41D89122FC1D3ED53C946C2656DA03CE899A* ___m_dtfiTokenHash_57;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_cultureData_1() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_cultureData_1)); }
|
|
inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * get_m_cultureData_1() const { return ___m_cultureData_1; }
|
|
inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD ** get_address_of_m_cultureData_1() { return &___m_cultureData_1; }
|
|
inline void set_m_cultureData_1(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * value)
|
|
{
|
|
___m_cultureData_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_cultureData_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_name_2() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_name_2)); }
|
|
inline String_t* get_m_name_2() const { return ___m_name_2; }
|
|
inline String_t** get_address_of_m_name_2() { return &___m_name_2; }
|
|
inline void set_m_name_2(String_t* value)
|
|
{
|
|
___m_name_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_name_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_langName_3() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_langName_3)); }
|
|
inline String_t* get_m_langName_3() const { return ___m_langName_3; }
|
|
inline String_t** get_address_of_m_langName_3() { return &___m_langName_3; }
|
|
inline void set_m_langName_3(String_t* value)
|
|
{
|
|
___m_langName_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_langName_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_compareInfo_4() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_compareInfo_4)); }
|
|
inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * get_m_compareInfo_4() const { return ___m_compareInfo_4; }
|
|
inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 ** get_address_of_m_compareInfo_4() { return &___m_compareInfo_4; }
|
|
inline void set_m_compareInfo_4(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * value)
|
|
{
|
|
___m_compareInfo_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_compareInfo_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_cultureInfo_5() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_cultureInfo_5)); }
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_m_cultureInfo_5() const { return ___m_cultureInfo_5; }
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_m_cultureInfo_5() { return &___m_cultureInfo_5; }
|
|
inline void set_m_cultureInfo_5(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
|
|
{
|
|
___m_cultureInfo_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_cultureInfo_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_amDesignator_6() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___amDesignator_6)); }
|
|
inline String_t* get_amDesignator_6() const { return ___amDesignator_6; }
|
|
inline String_t** get_address_of_amDesignator_6() { return &___amDesignator_6; }
|
|
inline void set_amDesignator_6(String_t* value)
|
|
{
|
|
___amDesignator_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___amDesignator_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_pmDesignator_7() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___pmDesignator_7)); }
|
|
inline String_t* get_pmDesignator_7() const { return ___pmDesignator_7; }
|
|
inline String_t** get_address_of_pmDesignator_7() { return &___pmDesignator_7; }
|
|
inline void set_pmDesignator_7(String_t* value)
|
|
{
|
|
___pmDesignator_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___pmDesignator_7), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_dateSeparator_8() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___dateSeparator_8)); }
|
|
inline String_t* get_dateSeparator_8() const { return ___dateSeparator_8; }
|
|
inline String_t** get_address_of_dateSeparator_8() { return &___dateSeparator_8; }
|
|
inline void set_dateSeparator_8(String_t* value)
|
|
{
|
|
___dateSeparator_8 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___dateSeparator_8), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_generalShortTimePattern_9() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___generalShortTimePattern_9)); }
|
|
inline String_t* get_generalShortTimePattern_9() const { return ___generalShortTimePattern_9; }
|
|
inline String_t** get_address_of_generalShortTimePattern_9() { return &___generalShortTimePattern_9; }
|
|
inline void set_generalShortTimePattern_9(String_t* value)
|
|
{
|
|
___generalShortTimePattern_9 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___generalShortTimePattern_9), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_generalLongTimePattern_10() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___generalLongTimePattern_10)); }
|
|
inline String_t* get_generalLongTimePattern_10() const { return ___generalLongTimePattern_10; }
|
|
inline String_t** get_address_of_generalLongTimePattern_10() { return &___generalLongTimePattern_10; }
|
|
inline void set_generalLongTimePattern_10(String_t* value)
|
|
{
|
|
___generalLongTimePattern_10 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___generalLongTimePattern_10), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_timeSeparator_11() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___timeSeparator_11)); }
|
|
inline String_t* get_timeSeparator_11() const { return ___timeSeparator_11; }
|
|
inline String_t** get_address_of_timeSeparator_11() { return &___timeSeparator_11; }
|
|
inline void set_timeSeparator_11(String_t* value)
|
|
{
|
|
___timeSeparator_11 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___timeSeparator_11), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_monthDayPattern_12() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___monthDayPattern_12)); }
|
|
inline String_t* get_monthDayPattern_12() const { return ___monthDayPattern_12; }
|
|
inline String_t** get_address_of_monthDayPattern_12() { return &___monthDayPattern_12; }
|
|
inline void set_monthDayPattern_12(String_t* value)
|
|
{
|
|
___monthDayPattern_12 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___monthDayPattern_12), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_dateTimeOffsetPattern_13() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___dateTimeOffsetPattern_13)); }
|
|
inline String_t* get_dateTimeOffsetPattern_13() const { return ___dateTimeOffsetPattern_13; }
|
|
inline String_t** get_address_of_dateTimeOffsetPattern_13() { return &___dateTimeOffsetPattern_13; }
|
|
inline void set_dateTimeOffsetPattern_13(String_t* value)
|
|
{
|
|
___dateTimeOffsetPattern_13 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___dateTimeOffsetPattern_13), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_calendar_17() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___calendar_17)); }
|
|
inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * get_calendar_17() const { return ___calendar_17; }
|
|
inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 ** get_address_of_calendar_17() { return &___calendar_17; }
|
|
inline void set_calendar_17(Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * value)
|
|
{
|
|
___calendar_17 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___calendar_17), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_firstDayOfWeek_18() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___firstDayOfWeek_18)); }
|
|
inline int32_t get_firstDayOfWeek_18() const { return ___firstDayOfWeek_18; }
|
|
inline int32_t* get_address_of_firstDayOfWeek_18() { return &___firstDayOfWeek_18; }
|
|
inline void set_firstDayOfWeek_18(int32_t value)
|
|
{
|
|
___firstDayOfWeek_18 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_calendarWeekRule_19() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___calendarWeekRule_19)); }
|
|
inline int32_t get_calendarWeekRule_19() const { return ___calendarWeekRule_19; }
|
|
inline int32_t* get_address_of_calendarWeekRule_19() { return &___calendarWeekRule_19; }
|
|
inline void set_calendarWeekRule_19(int32_t value)
|
|
{
|
|
___calendarWeekRule_19 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_fullDateTimePattern_20() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___fullDateTimePattern_20)); }
|
|
inline String_t* get_fullDateTimePattern_20() const { return ___fullDateTimePattern_20; }
|
|
inline String_t** get_address_of_fullDateTimePattern_20() { return &___fullDateTimePattern_20; }
|
|
inline void set_fullDateTimePattern_20(String_t* value)
|
|
{
|
|
___fullDateTimePattern_20 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___fullDateTimePattern_20), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_abbreviatedDayNames_21() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___abbreviatedDayNames_21)); }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_abbreviatedDayNames_21() const { return ___abbreviatedDayNames_21; }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_abbreviatedDayNames_21() { return &___abbreviatedDayNames_21; }
|
|
inline void set_abbreviatedDayNames_21(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
|
|
{
|
|
___abbreviatedDayNames_21 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___abbreviatedDayNames_21), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_superShortDayNames_22() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_superShortDayNames_22)); }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_m_superShortDayNames_22() const { return ___m_superShortDayNames_22; }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_m_superShortDayNames_22() { return &___m_superShortDayNames_22; }
|
|
inline void set_m_superShortDayNames_22(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
|
|
{
|
|
___m_superShortDayNames_22 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_superShortDayNames_22), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_dayNames_23() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___dayNames_23)); }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_dayNames_23() const { return ___dayNames_23; }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_dayNames_23() { return &___dayNames_23; }
|
|
inline void set_dayNames_23(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
|
|
{
|
|
___dayNames_23 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___dayNames_23), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_abbreviatedMonthNames_24() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___abbreviatedMonthNames_24)); }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_abbreviatedMonthNames_24() const { return ___abbreviatedMonthNames_24; }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_abbreviatedMonthNames_24() { return &___abbreviatedMonthNames_24; }
|
|
inline void set_abbreviatedMonthNames_24(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
|
|
{
|
|
___abbreviatedMonthNames_24 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___abbreviatedMonthNames_24), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_monthNames_25() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___monthNames_25)); }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_monthNames_25() const { return ___monthNames_25; }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_monthNames_25() { return &___monthNames_25; }
|
|
inline void set_monthNames_25(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
|
|
{
|
|
___monthNames_25 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___monthNames_25), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_genitiveMonthNames_26() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___genitiveMonthNames_26)); }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_genitiveMonthNames_26() const { return ___genitiveMonthNames_26; }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_genitiveMonthNames_26() { return &___genitiveMonthNames_26; }
|
|
inline void set_genitiveMonthNames_26(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
|
|
{
|
|
___genitiveMonthNames_26 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___genitiveMonthNames_26), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_genitiveAbbreviatedMonthNames_27() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_genitiveAbbreviatedMonthNames_27)); }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_m_genitiveAbbreviatedMonthNames_27() const { return ___m_genitiveAbbreviatedMonthNames_27; }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_m_genitiveAbbreviatedMonthNames_27() { return &___m_genitiveAbbreviatedMonthNames_27; }
|
|
inline void set_m_genitiveAbbreviatedMonthNames_27(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
|
|
{
|
|
___m_genitiveAbbreviatedMonthNames_27 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_genitiveAbbreviatedMonthNames_27), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_leapYearMonthNames_28() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___leapYearMonthNames_28)); }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_leapYearMonthNames_28() const { return ___leapYearMonthNames_28; }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_leapYearMonthNames_28() { return &___leapYearMonthNames_28; }
|
|
inline void set_leapYearMonthNames_28(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
|
|
{
|
|
___leapYearMonthNames_28 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___leapYearMonthNames_28), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_longDatePattern_29() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___longDatePattern_29)); }
|
|
inline String_t* get_longDatePattern_29() const { return ___longDatePattern_29; }
|
|
inline String_t** get_address_of_longDatePattern_29() { return &___longDatePattern_29; }
|
|
inline void set_longDatePattern_29(String_t* value)
|
|
{
|
|
___longDatePattern_29 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___longDatePattern_29), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_shortDatePattern_30() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___shortDatePattern_30)); }
|
|
inline String_t* get_shortDatePattern_30() const { return ___shortDatePattern_30; }
|
|
inline String_t** get_address_of_shortDatePattern_30() { return &___shortDatePattern_30; }
|
|
inline void set_shortDatePattern_30(String_t* value)
|
|
{
|
|
___shortDatePattern_30 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___shortDatePattern_30), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_yearMonthPattern_31() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___yearMonthPattern_31)); }
|
|
inline String_t* get_yearMonthPattern_31() const { return ___yearMonthPattern_31; }
|
|
inline String_t** get_address_of_yearMonthPattern_31() { return &___yearMonthPattern_31; }
|
|
inline void set_yearMonthPattern_31(String_t* value)
|
|
{
|
|
___yearMonthPattern_31 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___yearMonthPattern_31), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_longTimePattern_32() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___longTimePattern_32)); }
|
|
inline String_t* get_longTimePattern_32() const { return ___longTimePattern_32; }
|
|
inline String_t** get_address_of_longTimePattern_32() { return &___longTimePattern_32; }
|
|
inline void set_longTimePattern_32(String_t* value)
|
|
{
|
|
___longTimePattern_32 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___longTimePattern_32), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_shortTimePattern_33() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___shortTimePattern_33)); }
|
|
inline String_t* get_shortTimePattern_33() const { return ___shortTimePattern_33; }
|
|
inline String_t** get_address_of_shortTimePattern_33() { return &___shortTimePattern_33; }
|
|
inline void set_shortTimePattern_33(String_t* value)
|
|
{
|
|
___shortTimePattern_33 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___shortTimePattern_33), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_allYearMonthPatterns_34() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___allYearMonthPatterns_34)); }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_allYearMonthPatterns_34() const { return ___allYearMonthPatterns_34; }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_allYearMonthPatterns_34() { return &___allYearMonthPatterns_34; }
|
|
inline void set_allYearMonthPatterns_34(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
|
|
{
|
|
___allYearMonthPatterns_34 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___allYearMonthPatterns_34), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_allShortDatePatterns_35() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___allShortDatePatterns_35)); }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_allShortDatePatterns_35() const { return ___allShortDatePatterns_35; }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_allShortDatePatterns_35() { return &___allShortDatePatterns_35; }
|
|
inline void set_allShortDatePatterns_35(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
|
|
{
|
|
___allShortDatePatterns_35 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___allShortDatePatterns_35), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_allLongDatePatterns_36() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___allLongDatePatterns_36)); }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_allLongDatePatterns_36() const { return ___allLongDatePatterns_36; }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_allLongDatePatterns_36() { return &___allLongDatePatterns_36; }
|
|
inline void set_allLongDatePatterns_36(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
|
|
{
|
|
___allLongDatePatterns_36 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___allLongDatePatterns_36), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_allShortTimePatterns_37() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___allShortTimePatterns_37)); }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_allShortTimePatterns_37() const { return ___allShortTimePatterns_37; }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_allShortTimePatterns_37() { return &___allShortTimePatterns_37; }
|
|
inline void set_allShortTimePatterns_37(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
|
|
{
|
|
___allShortTimePatterns_37 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___allShortTimePatterns_37), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_allLongTimePatterns_38() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___allLongTimePatterns_38)); }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_allLongTimePatterns_38() const { return ___allLongTimePatterns_38; }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_allLongTimePatterns_38() { return &___allLongTimePatterns_38; }
|
|
inline void set_allLongTimePatterns_38(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
|
|
{
|
|
___allLongTimePatterns_38 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___allLongTimePatterns_38), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_eraNames_39() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_eraNames_39)); }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_m_eraNames_39() const { return ___m_eraNames_39; }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_m_eraNames_39() { return &___m_eraNames_39; }
|
|
inline void set_m_eraNames_39(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
|
|
{
|
|
___m_eraNames_39 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_eraNames_39), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_abbrevEraNames_40() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_abbrevEraNames_40)); }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_m_abbrevEraNames_40() const { return ___m_abbrevEraNames_40; }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_m_abbrevEraNames_40() { return &___m_abbrevEraNames_40; }
|
|
inline void set_m_abbrevEraNames_40(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
|
|
{
|
|
___m_abbrevEraNames_40 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_abbrevEraNames_40), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_abbrevEnglishEraNames_41() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_abbrevEnglishEraNames_41)); }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_m_abbrevEnglishEraNames_41() const { return ___m_abbrevEnglishEraNames_41; }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_m_abbrevEnglishEraNames_41() { return &___m_abbrevEnglishEraNames_41; }
|
|
inline void set_m_abbrevEnglishEraNames_41(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
|
|
{
|
|
___m_abbrevEnglishEraNames_41 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_abbrevEnglishEraNames_41), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_optionalCalendars_42() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___optionalCalendars_42)); }
|
|
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_optionalCalendars_42() const { return ___optionalCalendars_42; }
|
|
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_optionalCalendars_42() { return &___optionalCalendars_42; }
|
|
inline void set_optionalCalendars_42(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
|
|
{
|
|
___optionalCalendars_42 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___optionalCalendars_42), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_isReadOnly_44() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_isReadOnly_44)); }
|
|
inline bool get_m_isReadOnly_44() const { return ___m_isReadOnly_44; }
|
|
inline bool* get_address_of_m_isReadOnly_44() { return &___m_isReadOnly_44; }
|
|
inline void set_m_isReadOnly_44(bool value)
|
|
{
|
|
___m_isReadOnly_44 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_formatFlags_45() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___formatFlags_45)); }
|
|
inline int32_t get_formatFlags_45() const { return ___formatFlags_45; }
|
|
inline int32_t* get_address_of_formatFlags_45() { return &___formatFlags_45; }
|
|
inline void set_formatFlags_45(int32_t value)
|
|
{
|
|
___formatFlags_45 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_CultureID_47() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___CultureID_47)); }
|
|
inline int32_t get_CultureID_47() const { return ___CultureID_47; }
|
|
inline int32_t* get_address_of_CultureID_47() { return &___CultureID_47; }
|
|
inline void set_CultureID_47(int32_t value)
|
|
{
|
|
___CultureID_47 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_useUserOverride_48() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_useUserOverride_48)); }
|
|
inline bool get_m_useUserOverride_48() const { return ___m_useUserOverride_48; }
|
|
inline bool* get_address_of_m_useUserOverride_48() { return &___m_useUserOverride_48; }
|
|
inline void set_m_useUserOverride_48(bool value)
|
|
{
|
|
___m_useUserOverride_48 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_bUseCalendarInfo_49() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___bUseCalendarInfo_49)); }
|
|
inline bool get_bUseCalendarInfo_49() const { return ___bUseCalendarInfo_49; }
|
|
inline bool* get_address_of_bUseCalendarInfo_49() { return &___bUseCalendarInfo_49; }
|
|
inline void set_bUseCalendarInfo_49(bool value)
|
|
{
|
|
___bUseCalendarInfo_49 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_nDataItem_50() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___nDataItem_50)); }
|
|
inline int32_t get_nDataItem_50() const { return ___nDataItem_50; }
|
|
inline int32_t* get_address_of_nDataItem_50() { return &___nDataItem_50; }
|
|
inline void set_nDataItem_50(int32_t value)
|
|
{
|
|
___nDataItem_50 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_isDefaultCalendar_51() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_isDefaultCalendar_51)); }
|
|
inline bool get_m_isDefaultCalendar_51() const { return ___m_isDefaultCalendar_51; }
|
|
inline bool* get_address_of_m_isDefaultCalendar_51() { return &___m_isDefaultCalendar_51; }
|
|
inline void set_m_isDefaultCalendar_51(bool value)
|
|
{
|
|
___m_isDefaultCalendar_51 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_dateWords_53() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_dateWords_53)); }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_m_dateWords_53() const { return ___m_dateWords_53; }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_m_dateWords_53() { return &___m_dateWords_53; }
|
|
inline void set_m_dateWords_53(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
|
|
{
|
|
___m_dateWords_53 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_dateWords_53), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_fullTimeSpanPositivePattern_54() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_fullTimeSpanPositivePattern_54)); }
|
|
inline String_t* get_m_fullTimeSpanPositivePattern_54() const { return ___m_fullTimeSpanPositivePattern_54; }
|
|
inline String_t** get_address_of_m_fullTimeSpanPositivePattern_54() { return &___m_fullTimeSpanPositivePattern_54; }
|
|
inline void set_m_fullTimeSpanPositivePattern_54(String_t* value)
|
|
{
|
|
___m_fullTimeSpanPositivePattern_54 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_fullTimeSpanPositivePattern_54), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_fullTimeSpanNegativePattern_55() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_fullTimeSpanNegativePattern_55)); }
|
|
inline String_t* get_m_fullTimeSpanNegativePattern_55() const { return ___m_fullTimeSpanNegativePattern_55; }
|
|
inline String_t** get_address_of_m_fullTimeSpanNegativePattern_55() { return &___m_fullTimeSpanNegativePattern_55; }
|
|
inline void set_m_fullTimeSpanNegativePattern_55(String_t* value)
|
|
{
|
|
___m_fullTimeSpanNegativePattern_55 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_fullTimeSpanNegativePattern_55), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_dtfiTokenHash_57() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F, ___m_dtfiTokenHash_57)); }
|
|
inline TokenHashValueU5BU5D_t5C8B41D89122FC1D3ED53C946C2656DA03CE899A* get_m_dtfiTokenHash_57() const { return ___m_dtfiTokenHash_57; }
|
|
inline TokenHashValueU5BU5D_t5C8B41D89122FC1D3ED53C946C2656DA03CE899A** get_address_of_m_dtfiTokenHash_57() { return &___m_dtfiTokenHash_57; }
|
|
inline void set_m_dtfiTokenHash_57(TokenHashValueU5BU5D_t5C8B41D89122FC1D3ED53C946C2656DA03CE899A* value)
|
|
{
|
|
___m_dtfiTokenHash_57 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_dtfiTokenHash_57), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_StaticFields
|
|
{
|
|
public:
|
|
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.DateTimeFormatInfo::invariantInfo
|
|
DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___invariantInfo_0;
|
|
// System.Boolean System.Globalization.DateTimeFormatInfo::preferExistingTokens
|
|
bool ___preferExistingTokens_46;
|
|
// System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.DateTimeFormatInfo::s_calendarNativeNames
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___s_calendarNativeNames_52;
|
|
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.DateTimeFormatInfo::s_jajpDTFI
|
|
DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___s_jajpDTFI_82;
|
|
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.DateTimeFormatInfo::s_zhtwDTFI
|
|
DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___s_zhtwDTFI_83;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_invariantInfo_0() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_StaticFields, ___invariantInfo_0)); }
|
|
inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * get_invariantInfo_0() const { return ___invariantInfo_0; }
|
|
inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** get_address_of_invariantInfo_0() { return &___invariantInfo_0; }
|
|
inline void set_invariantInfo_0(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * value)
|
|
{
|
|
___invariantInfo_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___invariantInfo_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_preferExistingTokens_46() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_StaticFields, ___preferExistingTokens_46)); }
|
|
inline bool get_preferExistingTokens_46() const { return ___preferExistingTokens_46; }
|
|
inline bool* get_address_of_preferExistingTokens_46() { return &___preferExistingTokens_46; }
|
|
inline void set_preferExistingTokens_46(bool value)
|
|
{
|
|
___preferExistingTokens_46 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_s_calendarNativeNames_52() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_StaticFields, ___s_calendarNativeNames_52)); }
|
|
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_s_calendarNativeNames_52() const { return ___s_calendarNativeNames_52; }
|
|
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_s_calendarNativeNames_52() { return &___s_calendarNativeNames_52; }
|
|
inline void set_s_calendarNativeNames_52(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
|
|
{
|
|
___s_calendarNativeNames_52 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___s_calendarNativeNames_52), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_s_jajpDTFI_82() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_StaticFields, ___s_jajpDTFI_82)); }
|
|
inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * get_s_jajpDTFI_82() const { return ___s_jajpDTFI_82; }
|
|
inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** get_address_of_s_jajpDTFI_82() { return &___s_jajpDTFI_82; }
|
|
inline void set_s_jajpDTFI_82(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * value)
|
|
{
|
|
___s_jajpDTFI_82 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___s_jajpDTFI_82), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_s_zhtwDTFI_83() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F_StaticFields, ___s_zhtwDTFI_83)); }
|
|
inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * get_s_zhtwDTFI_83() const { return ___s_zhtwDTFI_83; }
|
|
inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** get_address_of_s_zhtwDTFI_83() { return &___s_zhtwDTFI_83; }
|
|
inline void set_s_zhtwDTFI_83(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * value)
|
|
{
|
|
___s_zhtwDTFI_83 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___s_zhtwDTFI_83), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Globalization.NumberFormatInfo
|
|
struct NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Int32[] System.Globalization.NumberFormatInfo::numberGroupSizes
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___numberGroupSizes_1;
|
|
// System.Int32[] System.Globalization.NumberFormatInfo::currencyGroupSizes
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___currencyGroupSizes_2;
|
|
// System.Int32[] System.Globalization.NumberFormatInfo::percentGroupSizes
|
|
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___percentGroupSizes_3;
|
|
// System.String System.Globalization.NumberFormatInfo::positiveSign
|
|
String_t* ___positiveSign_4;
|
|
// System.String System.Globalization.NumberFormatInfo::negativeSign
|
|
String_t* ___negativeSign_5;
|
|
// System.String System.Globalization.NumberFormatInfo::numberDecimalSeparator
|
|
String_t* ___numberDecimalSeparator_6;
|
|
// System.String System.Globalization.NumberFormatInfo::numberGroupSeparator
|
|
String_t* ___numberGroupSeparator_7;
|
|
// System.String System.Globalization.NumberFormatInfo::currencyGroupSeparator
|
|
String_t* ___currencyGroupSeparator_8;
|
|
// System.String System.Globalization.NumberFormatInfo::currencyDecimalSeparator
|
|
String_t* ___currencyDecimalSeparator_9;
|
|
// System.String System.Globalization.NumberFormatInfo::currencySymbol
|
|
String_t* ___currencySymbol_10;
|
|
// System.String System.Globalization.NumberFormatInfo::ansiCurrencySymbol
|
|
String_t* ___ansiCurrencySymbol_11;
|
|
// System.String System.Globalization.NumberFormatInfo::nanSymbol
|
|
String_t* ___nanSymbol_12;
|
|
// System.String System.Globalization.NumberFormatInfo::positiveInfinitySymbol
|
|
String_t* ___positiveInfinitySymbol_13;
|
|
// System.String System.Globalization.NumberFormatInfo::negativeInfinitySymbol
|
|
String_t* ___negativeInfinitySymbol_14;
|
|
// System.String System.Globalization.NumberFormatInfo::percentDecimalSeparator
|
|
String_t* ___percentDecimalSeparator_15;
|
|
// System.String System.Globalization.NumberFormatInfo::percentGroupSeparator
|
|
String_t* ___percentGroupSeparator_16;
|
|
// System.String System.Globalization.NumberFormatInfo::percentSymbol
|
|
String_t* ___percentSymbol_17;
|
|
// System.String System.Globalization.NumberFormatInfo::perMilleSymbol
|
|
String_t* ___perMilleSymbol_18;
|
|
// System.String[] System.Globalization.NumberFormatInfo::nativeDigits
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___nativeDigits_19;
|
|
// System.Int32 System.Globalization.NumberFormatInfo::m_dataItem
|
|
int32_t ___m_dataItem_20;
|
|
// System.Int32 System.Globalization.NumberFormatInfo::numberDecimalDigits
|
|
int32_t ___numberDecimalDigits_21;
|
|
// System.Int32 System.Globalization.NumberFormatInfo::currencyDecimalDigits
|
|
int32_t ___currencyDecimalDigits_22;
|
|
// System.Int32 System.Globalization.NumberFormatInfo::currencyPositivePattern
|
|
int32_t ___currencyPositivePattern_23;
|
|
// System.Int32 System.Globalization.NumberFormatInfo::currencyNegativePattern
|
|
int32_t ___currencyNegativePattern_24;
|
|
// System.Int32 System.Globalization.NumberFormatInfo::numberNegativePattern
|
|
int32_t ___numberNegativePattern_25;
|
|
// System.Int32 System.Globalization.NumberFormatInfo::percentPositivePattern
|
|
int32_t ___percentPositivePattern_26;
|
|
// System.Int32 System.Globalization.NumberFormatInfo::percentNegativePattern
|
|
int32_t ___percentNegativePattern_27;
|
|
// System.Int32 System.Globalization.NumberFormatInfo::percentDecimalDigits
|
|
int32_t ___percentDecimalDigits_28;
|
|
// System.Int32 System.Globalization.NumberFormatInfo::digitSubstitution
|
|
int32_t ___digitSubstitution_29;
|
|
// System.Boolean System.Globalization.NumberFormatInfo::isReadOnly
|
|
bool ___isReadOnly_30;
|
|
// System.Boolean System.Globalization.NumberFormatInfo::m_useUserOverride
|
|
bool ___m_useUserOverride_31;
|
|
// System.Boolean System.Globalization.NumberFormatInfo::m_isInvariant
|
|
bool ___m_isInvariant_32;
|
|
// System.Boolean System.Globalization.NumberFormatInfo::validForParseAsNumber
|
|
bool ___validForParseAsNumber_33;
|
|
// System.Boolean System.Globalization.NumberFormatInfo::validForParseAsCurrency
|
|
bool ___validForParseAsCurrency_34;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_numberGroupSizes_1() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberGroupSizes_1)); }
|
|
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_numberGroupSizes_1() const { return ___numberGroupSizes_1; }
|
|
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_numberGroupSizes_1() { return &___numberGroupSizes_1; }
|
|
inline void set_numberGroupSizes_1(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
|
|
{
|
|
___numberGroupSizes_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___numberGroupSizes_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_currencyGroupSizes_2() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyGroupSizes_2)); }
|
|
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_currencyGroupSizes_2() const { return ___currencyGroupSizes_2; }
|
|
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_currencyGroupSizes_2() { return &___currencyGroupSizes_2; }
|
|
inline void set_currencyGroupSizes_2(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
|
|
{
|
|
___currencyGroupSizes_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___currencyGroupSizes_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_percentGroupSizes_3() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentGroupSizes_3)); }
|
|
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_percentGroupSizes_3() const { return ___percentGroupSizes_3; }
|
|
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_percentGroupSizes_3() { return &___percentGroupSizes_3; }
|
|
inline void set_percentGroupSizes_3(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
|
|
{
|
|
___percentGroupSizes_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___percentGroupSizes_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_positiveSign_4() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___positiveSign_4)); }
|
|
inline String_t* get_positiveSign_4() const { return ___positiveSign_4; }
|
|
inline String_t** get_address_of_positiveSign_4() { return &___positiveSign_4; }
|
|
inline void set_positiveSign_4(String_t* value)
|
|
{
|
|
___positiveSign_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___positiveSign_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_negativeSign_5() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___negativeSign_5)); }
|
|
inline String_t* get_negativeSign_5() const { return ___negativeSign_5; }
|
|
inline String_t** get_address_of_negativeSign_5() { return &___negativeSign_5; }
|
|
inline void set_negativeSign_5(String_t* value)
|
|
{
|
|
___negativeSign_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___negativeSign_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_numberDecimalSeparator_6() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberDecimalSeparator_6)); }
|
|
inline String_t* get_numberDecimalSeparator_6() const { return ___numberDecimalSeparator_6; }
|
|
inline String_t** get_address_of_numberDecimalSeparator_6() { return &___numberDecimalSeparator_6; }
|
|
inline void set_numberDecimalSeparator_6(String_t* value)
|
|
{
|
|
___numberDecimalSeparator_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___numberDecimalSeparator_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_numberGroupSeparator_7() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberGroupSeparator_7)); }
|
|
inline String_t* get_numberGroupSeparator_7() const { return ___numberGroupSeparator_7; }
|
|
inline String_t** get_address_of_numberGroupSeparator_7() { return &___numberGroupSeparator_7; }
|
|
inline void set_numberGroupSeparator_7(String_t* value)
|
|
{
|
|
___numberGroupSeparator_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___numberGroupSeparator_7), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_currencyGroupSeparator_8() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyGroupSeparator_8)); }
|
|
inline String_t* get_currencyGroupSeparator_8() const { return ___currencyGroupSeparator_8; }
|
|
inline String_t** get_address_of_currencyGroupSeparator_8() { return &___currencyGroupSeparator_8; }
|
|
inline void set_currencyGroupSeparator_8(String_t* value)
|
|
{
|
|
___currencyGroupSeparator_8 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___currencyGroupSeparator_8), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_currencyDecimalSeparator_9() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyDecimalSeparator_9)); }
|
|
inline String_t* get_currencyDecimalSeparator_9() const { return ___currencyDecimalSeparator_9; }
|
|
inline String_t** get_address_of_currencyDecimalSeparator_9() { return &___currencyDecimalSeparator_9; }
|
|
inline void set_currencyDecimalSeparator_9(String_t* value)
|
|
{
|
|
___currencyDecimalSeparator_9 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___currencyDecimalSeparator_9), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_currencySymbol_10() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencySymbol_10)); }
|
|
inline String_t* get_currencySymbol_10() const { return ___currencySymbol_10; }
|
|
inline String_t** get_address_of_currencySymbol_10() { return &___currencySymbol_10; }
|
|
inline void set_currencySymbol_10(String_t* value)
|
|
{
|
|
___currencySymbol_10 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___currencySymbol_10), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_ansiCurrencySymbol_11() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___ansiCurrencySymbol_11)); }
|
|
inline String_t* get_ansiCurrencySymbol_11() const { return ___ansiCurrencySymbol_11; }
|
|
inline String_t** get_address_of_ansiCurrencySymbol_11() { return &___ansiCurrencySymbol_11; }
|
|
inline void set_ansiCurrencySymbol_11(String_t* value)
|
|
{
|
|
___ansiCurrencySymbol_11 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___ansiCurrencySymbol_11), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_nanSymbol_12() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___nanSymbol_12)); }
|
|
inline String_t* get_nanSymbol_12() const { return ___nanSymbol_12; }
|
|
inline String_t** get_address_of_nanSymbol_12() { return &___nanSymbol_12; }
|
|
inline void set_nanSymbol_12(String_t* value)
|
|
{
|
|
___nanSymbol_12 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___nanSymbol_12), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_positiveInfinitySymbol_13() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___positiveInfinitySymbol_13)); }
|
|
inline String_t* get_positiveInfinitySymbol_13() const { return ___positiveInfinitySymbol_13; }
|
|
inline String_t** get_address_of_positiveInfinitySymbol_13() { return &___positiveInfinitySymbol_13; }
|
|
inline void set_positiveInfinitySymbol_13(String_t* value)
|
|
{
|
|
___positiveInfinitySymbol_13 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___positiveInfinitySymbol_13), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_negativeInfinitySymbol_14() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___negativeInfinitySymbol_14)); }
|
|
inline String_t* get_negativeInfinitySymbol_14() const { return ___negativeInfinitySymbol_14; }
|
|
inline String_t** get_address_of_negativeInfinitySymbol_14() { return &___negativeInfinitySymbol_14; }
|
|
inline void set_negativeInfinitySymbol_14(String_t* value)
|
|
{
|
|
___negativeInfinitySymbol_14 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___negativeInfinitySymbol_14), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_percentDecimalSeparator_15() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentDecimalSeparator_15)); }
|
|
inline String_t* get_percentDecimalSeparator_15() const { return ___percentDecimalSeparator_15; }
|
|
inline String_t** get_address_of_percentDecimalSeparator_15() { return &___percentDecimalSeparator_15; }
|
|
inline void set_percentDecimalSeparator_15(String_t* value)
|
|
{
|
|
___percentDecimalSeparator_15 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___percentDecimalSeparator_15), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_percentGroupSeparator_16() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentGroupSeparator_16)); }
|
|
inline String_t* get_percentGroupSeparator_16() const { return ___percentGroupSeparator_16; }
|
|
inline String_t** get_address_of_percentGroupSeparator_16() { return &___percentGroupSeparator_16; }
|
|
inline void set_percentGroupSeparator_16(String_t* value)
|
|
{
|
|
___percentGroupSeparator_16 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___percentGroupSeparator_16), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_percentSymbol_17() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentSymbol_17)); }
|
|
inline String_t* get_percentSymbol_17() const { return ___percentSymbol_17; }
|
|
inline String_t** get_address_of_percentSymbol_17() { return &___percentSymbol_17; }
|
|
inline void set_percentSymbol_17(String_t* value)
|
|
{
|
|
___percentSymbol_17 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___percentSymbol_17), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_perMilleSymbol_18() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___perMilleSymbol_18)); }
|
|
inline String_t* get_perMilleSymbol_18() const { return ___perMilleSymbol_18; }
|
|
inline String_t** get_address_of_perMilleSymbol_18() { return &___perMilleSymbol_18; }
|
|
inline void set_perMilleSymbol_18(String_t* value)
|
|
{
|
|
___perMilleSymbol_18 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___perMilleSymbol_18), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_nativeDigits_19() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___nativeDigits_19)); }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_nativeDigits_19() const { return ___nativeDigits_19; }
|
|
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_nativeDigits_19() { return &___nativeDigits_19; }
|
|
inline void set_nativeDigits_19(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
|
|
{
|
|
___nativeDigits_19 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___nativeDigits_19), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_dataItem_20() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___m_dataItem_20)); }
|
|
inline int32_t get_m_dataItem_20() const { return ___m_dataItem_20; }
|
|
inline int32_t* get_address_of_m_dataItem_20() { return &___m_dataItem_20; }
|
|
inline void set_m_dataItem_20(int32_t value)
|
|
{
|
|
___m_dataItem_20 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_numberDecimalDigits_21() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberDecimalDigits_21)); }
|
|
inline int32_t get_numberDecimalDigits_21() const { return ___numberDecimalDigits_21; }
|
|
inline int32_t* get_address_of_numberDecimalDigits_21() { return &___numberDecimalDigits_21; }
|
|
inline void set_numberDecimalDigits_21(int32_t value)
|
|
{
|
|
___numberDecimalDigits_21 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_currencyDecimalDigits_22() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyDecimalDigits_22)); }
|
|
inline int32_t get_currencyDecimalDigits_22() const { return ___currencyDecimalDigits_22; }
|
|
inline int32_t* get_address_of_currencyDecimalDigits_22() { return &___currencyDecimalDigits_22; }
|
|
inline void set_currencyDecimalDigits_22(int32_t value)
|
|
{
|
|
___currencyDecimalDigits_22 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_currencyPositivePattern_23() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyPositivePattern_23)); }
|
|
inline int32_t get_currencyPositivePattern_23() const { return ___currencyPositivePattern_23; }
|
|
inline int32_t* get_address_of_currencyPositivePattern_23() { return &___currencyPositivePattern_23; }
|
|
inline void set_currencyPositivePattern_23(int32_t value)
|
|
{
|
|
___currencyPositivePattern_23 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_currencyNegativePattern_24() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyNegativePattern_24)); }
|
|
inline int32_t get_currencyNegativePattern_24() const { return ___currencyNegativePattern_24; }
|
|
inline int32_t* get_address_of_currencyNegativePattern_24() { return &___currencyNegativePattern_24; }
|
|
inline void set_currencyNegativePattern_24(int32_t value)
|
|
{
|
|
___currencyNegativePattern_24 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_numberNegativePattern_25() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberNegativePattern_25)); }
|
|
inline int32_t get_numberNegativePattern_25() const { return ___numberNegativePattern_25; }
|
|
inline int32_t* get_address_of_numberNegativePattern_25() { return &___numberNegativePattern_25; }
|
|
inline void set_numberNegativePattern_25(int32_t value)
|
|
{
|
|
___numberNegativePattern_25 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_percentPositivePattern_26() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentPositivePattern_26)); }
|
|
inline int32_t get_percentPositivePattern_26() const { return ___percentPositivePattern_26; }
|
|
inline int32_t* get_address_of_percentPositivePattern_26() { return &___percentPositivePattern_26; }
|
|
inline void set_percentPositivePattern_26(int32_t value)
|
|
{
|
|
___percentPositivePattern_26 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_percentNegativePattern_27() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentNegativePattern_27)); }
|
|
inline int32_t get_percentNegativePattern_27() const { return ___percentNegativePattern_27; }
|
|
inline int32_t* get_address_of_percentNegativePattern_27() { return &___percentNegativePattern_27; }
|
|
inline void set_percentNegativePattern_27(int32_t value)
|
|
{
|
|
___percentNegativePattern_27 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_percentDecimalDigits_28() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentDecimalDigits_28)); }
|
|
inline int32_t get_percentDecimalDigits_28() const { return ___percentDecimalDigits_28; }
|
|
inline int32_t* get_address_of_percentDecimalDigits_28() { return &___percentDecimalDigits_28; }
|
|
inline void set_percentDecimalDigits_28(int32_t value)
|
|
{
|
|
___percentDecimalDigits_28 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_digitSubstitution_29() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___digitSubstitution_29)); }
|
|
inline int32_t get_digitSubstitution_29() const { return ___digitSubstitution_29; }
|
|
inline int32_t* get_address_of_digitSubstitution_29() { return &___digitSubstitution_29; }
|
|
inline void set_digitSubstitution_29(int32_t value)
|
|
{
|
|
___digitSubstitution_29 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_isReadOnly_30() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___isReadOnly_30)); }
|
|
inline bool get_isReadOnly_30() const { return ___isReadOnly_30; }
|
|
inline bool* get_address_of_isReadOnly_30() { return &___isReadOnly_30; }
|
|
inline void set_isReadOnly_30(bool value)
|
|
{
|
|
___isReadOnly_30 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_useUserOverride_31() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___m_useUserOverride_31)); }
|
|
inline bool get_m_useUserOverride_31() const { return ___m_useUserOverride_31; }
|
|
inline bool* get_address_of_m_useUserOverride_31() { return &___m_useUserOverride_31; }
|
|
inline void set_m_useUserOverride_31(bool value)
|
|
{
|
|
___m_useUserOverride_31 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_isInvariant_32() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___m_isInvariant_32)); }
|
|
inline bool get_m_isInvariant_32() const { return ___m_isInvariant_32; }
|
|
inline bool* get_address_of_m_isInvariant_32() { return &___m_isInvariant_32; }
|
|
inline void set_m_isInvariant_32(bool value)
|
|
{
|
|
___m_isInvariant_32 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_validForParseAsNumber_33() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___validForParseAsNumber_33)); }
|
|
inline bool get_validForParseAsNumber_33() const { return ___validForParseAsNumber_33; }
|
|
inline bool* get_address_of_validForParseAsNumber_33() { return &___validForParseAsNumber_33; }
|
|
inline void set_validForParseAsNumber_33(bool value)
|
|
{
|
|
___validForParseAsNumber_33 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_validForParseAsCurrency_34() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___validForParseAsCurrency_34)); }
|
|
inline bool get_validForParseAsCurrency_34() const { return ___validForParseAsCurrency_34; }
|
|
inline bool* get_address_of_validForParseAsCurrency_34() { return &___validForParseAsCurrency_34; }
|
|
inline void set_validForParseAsCurrency_34(bool value)
|
|
{
|
|
___validForParseAsCurrency_34 = value;
|
|
}
|
|
};
|
|
|
|
struct NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8_StaticFields
|
|
{
|
|
public:
|
|
// System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.NumberFormatInfo::invariantInfo
|
|
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___invariantInfo_0;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_invariantInfo_0() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8_StaticFields, ___invariantInfo_0)); }
|
|
inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * get_invariantInfo_0() const { return ___invariantInfo_0; }
|
|
inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 ** get_address_of_invariantInfo_0() { return &___invariantInfo_0; }
|
|
inline void set_invariantInfo_0(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * value)
|
|
{
|
|
___invariantInfo_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___invariantInfo_0), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.IO.FileStream
|
|
struct FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 : public Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7
|
|
{
|
|
public:
|
|
// System.Byte[] System.IO.FileStream::buf
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buf_6;
|
|
// System.String System.IO.FileStream::name
|
|
String_t* ___name_7;
|
|
// Microsoft.Win32.SafeHandles.SafeFileHandle System.IO.FileStream::safeHandle
|
|
SafeFileHandle_tE1B31BE63CD11BBF2B9B6A205A72735F32EB1BCB * ___safeHandle_8;
|
|
// System.Boolean System.IO.FileStream::isExposed
|
|
bool ___isExposed_9;
|
|
// System.Int64 System.IO.FileStream::append_startpos
|
|
int64_t ___append_startpos_10;
|
|
// System.IO.FileAccess System.IO.FileStream::access
|
|
int32_t ___access_11;
|
|
// System.Boolean System.IO.FileStream::owner
|
|
bool ___owner_12;
|
|
// System.Boolean System.IO.FileStream::async
|
|
bool ___async_13;
|
|
// System.Boolean System.IO.FileStream::canseek
|
|
bool ___canseek_14;
|
|
// System.Boolean System.IO.FileStream::anonymous
|
|
bool ___anonymous_15;
|
|
// System.Boolean System.IO.FileStream::buf_dirty
|
|
bool ___buf_dirty_16;
|
|
// System.Int32 System.IO.FileStream::buf_size
|
|
int32_t ___buf_size_17;
|
|
// System.Int32 System.IO.FileStream::buf_length
|
|
int32_t ___buf_length_18;
|
|
// System.Int32 System.IO.FileStream::buf_offset
|
|
int32_t ___buf_offset_19;
|
|
// System.Int64 System.IO.FileStream::buf_start
|
|
int64_t ___buf_start_20;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_buf_6() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_6)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_buf_6() const { return ___buf_6; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_buf_6() { return &___buf_6; }
|
|
inline void set_buf_6(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___buf_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___buf_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_name_7() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___name_7)); }
|
|
inline String_t* get_name_7() const { return ___name_7; }
|
|
inline String_t** get_address_of_name_7() { return &___name_7; }
|
|
inline void set_name_7(String_t* value)
|
|
{
|
|
___name_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___name_7), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_safeHandle_8() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___safeHandle_8)); }
|
|
inline SafeFileHandle_tE1B31BE63CD11BBF2B9B6A205A72735F32EB1BCB * get_safeHandle_8() const { return ___safeHandle_8; }
|
|
inline SafeFileHandle_tE1B31BE63CD11BBF2B9B6A205A72735F32EB1BCB ** get_address_of_safeHandle_8() { return &___safeHandle_8; }
|
|
inline void set_safeHandle_8(SafeFileHandle_tE1B31BE63CD11BBF2B9B6A205A72735F32EB1BCB * value)
|
|
{
|
|
___safeHandle_8 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___safeHandle_8), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_isExposed_9() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___isExposed_9)); }
|
|
inline bool get_isExposed_9() const { return ___isExposed_9; }
|
|
inline bool* get_address_of_isExposed_9() { return &___isExposed_9; }
|
|
inline void set_isExposed_9(bool value)
|
|
{
|
|
___isExposed_9 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_append_startpos_10() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___append_startpos_10)); }
|
|
inline int64_t get_append_startpos_10() const { return ___append_startpos_10; }
|
|
inline int64_t* get_address_of_append_startpos_10() { return &___append_startpos_10; }
|
|
inline void set_append_startpos_10(int64_t value)
|
|
{
|
|
___append_startpos_10 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_access_11() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___access_11)); }
|
|
inline int32_t get_access_11() const { return ___access_11; }
|
|
inline int32_t* get_address_of_access_11() { return &___access_11; }
|
|
inline void set_access_11(int32_t value)
|
|
{
|
|
___access_11 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_owner_12() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___owner_12)); }
|
|
inline bool get_owner_12() const { return ___owner_12; }
|
|
inline bool* get_address_of_owner_12() { return &___owner_12; }
|
|
inline void set_owner_12(bool value)
|
|
{
|
|
___owner_12 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_async_13() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___async_13)); }
|
|
inline bool get_async_13() const { return ___async_13; }
|
|
inline bool* get_address_of_async_13() { return &___async_13; }
|
|
inline void set_async_13(bool value)
|
|
{
|
|
___async_13 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_canseek_14() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___canseek_14)); }
|
|
inline bool get_canseek_14() const { return ___canseek_14; }
|
|
inline bool* get_address_of_canseek_14() { return &___canseek_14; }
|
|
inline void set_canseek_14(bool value)
|
|
{
|
|
___canseek_14 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_anonymous_15() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___anonymous_15)); }
|
|
inline bool get_anonymous_15() const { return ___anonymous_15; }
|
|
inline bool* get_address_of_anonymous_15() { return &___anonymous_15; }
|
|
inline void set_anonymous_15(bool value)
|
|
{
|
|
___anonymous_15 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_buf_dirty_16() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_dirty_16)); }
|
|
inline bool get_buf_dirty_16() const { return ___buf_dirty_16; }
|
|
inline bool* get_address_of_buf_dirty_16() { return &___buf_dirty_16; }
|
|
inline void set_buf_dirty_16(bool value)
|
|
{
|
|
___buf_dirty_16 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_buf_size_17() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_size_17)); }
|
|
inline int32_t get_buf_size_17() const { return ___buf_size_17; }
|
|
inline int32_t* get_address_of_buf_size_17() { return &___buf_size_17; }
|
|
inline void set_buf_size_17(int32_t value)
|
|
{
|
|
___buf_size_17 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_buf_length_18() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_length_18)); }
|
|
inline int32_t get_buf_length_18() const { return ___buf_length_18; }
|
|
inline int32_t* get_address_of_buf_length_18() { return &___buf_length_18; }
|
|
inline void set_buf_length_18(int32_t value)
|
|
{
|
|
___buf_length_18 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_buf_offset_19() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_offset_19)); }
|
|
inline int32_t get_buf_offset_19() const { return ___buf_offset_19; }
|
|
inline int32_t* get_address_of_buf_offset_19() { return &___buf_offset_19; }
|
|
inline void set_buf_offset_19(int32_t value)
|
|
{
|
|
___buf_offset_19 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_buf_start_20() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_start_20)); }
|
|
inline int64_t get_buf_start_20() const { return ___buf_start_20; }
|
|
inline int64_t* get_address_of_buf_start_20() { return &___buf_start_20; }
|
|
inline void set_buf_start_20(int64_t value)
|
|
{
|
|
___buf_start_20 = value;
|
|
}
|
|
};
|
|
|
|
struct FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418_StaticFields
|
|
{
|
|
public:
|
|
// System.Byte[] System.IO.FileStream::buf_recycle
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buf_recycle_4;
|
|
// System.Object System.IO.FileStream::buf_recycle_lock
|
|
RuntimeObject * ___buf_recycle_lock_5;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_buf_recycle_4() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418_StaticFields, ___buf_recycle_4)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_buf_recycle_4() const { return ___buf_recycle_4; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_buf_recycle_4() { return &___buf_recycle_4; }
|
|
inline void set_buf_recycle_4(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___buf_recycle_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___buf_recycle_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_buf_recycle_lock_5() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418_StaticFields, ___buf_recycle_lock_5)); }
|
|
inline RuntimeObject * get_buf_recycle_lock_5() const { return ___buf_recycle_lock_5; }
|
|
inline RuntimeObject ** get_address_of_buf_recycle_lock_5() { return &___buf_recycle_lock_5; }
|
|
inline void set_buf_recycle_lock_5(RuntimeObject * value)
|
|
{
|
|
___buf_recycle_lock_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___buf_recycle_lock_5), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.IO.MonoIOStat
|
|
struct MonoIOStat_t819C03DA1902AA493BDBF4B55E76DCE6FB16A124
|
|
{
|
|
public:
|
|
// System.IO.FileAttributes System.IO.MonoIOStat::fileAttributes
|
|
int32_t ___fileAttributes_0;
|
|
// System.Int64 System.IO.MonoIOStat::Length
|
|
int64_t ___Length_1;
|
|
// System.Int64 System.IO.MonoIOStat::CreationTime
|
|
int64_t ___CreationTime_2;
|
|
// System.Int64 System.IO.MonoIOStat::LastAccessTime
|
|
int64_t ___LastAccessTime_3;
|
|
// System.Int64 System.IO.MonoIOStat::LastWriteTime
|
|
int64_t ___LastWriteTime_4;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_fileAttributes_0() { return static_cast<int32_t>(offsetof(MonoIOStat_t819C03DA1902AA493BDBF4B55E76DCE6FB16A124, ___fileAttributes_0)); }
|
|
inline int32_t get_fileAttributes_0() const { return ___fileAttributes_0; }
|
|
inline int32_t* get_address_of_fileAttributes_0() { return &___fileAttributes_0; }
|
|
inline void set_fileAttributes_0(int32_t value)
|
|
{
|
|
___fileAttributes_0 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Length_1() { return static_cast<int32_t>(offsetof(MonoIOStat_t819C03DA1902AA493BDBF4B55E76DCE6FB16A124, ___Length_1)); }
|
|
inline int64_t get_Length_1() const { return ___Length_1; }
|
|
inline int64_t* get_address_of_Length_1() { return &___Length_1; }
|
|
inline void set_Length_1(int64_t value)
|
|
{
|
|
___Length_1 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_CreationTime_2() { return static_cast<int32_t>(offsetof(MonoIOStat_t819C03DA1902AA493BDBF4B55E76DCE6FB16A124, ___CreationTime_2)); }
|
|
inline int64_t get_CreationTime_2() const { return ___CreationTime_2; }
|
|
inline int64_t* get_address_of_CreationTime_2() { return &___CreationTime_2; }
|
|
inline void set_CreationTime_2(int64_t value)
|
|
{
|
|
___CreationTime_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_LastAccessTime_3() { return static_cast<int32_t>(offsetof(MonoIOStat_t819C03DA1902AA493BDBF4B55E76DCE6FB16A124, ___LastAccessTime_3)); }
|
|
inline int64_t get_LastAccessTime_3() const { return ___LastAccessTime_3; }
|
|
inline int64_t* get_address_of_LastAccessTime_3() { return &___LastAccessTime_3; }
|
|
inline void set_LastAccessTime_3(int64_t value)
|
|
{
|
|
___LastAccessTime_3 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_LastWriteTime_4() { return static_cast<int32_t>(offsetof(MonoIOStat_t819C03DA1902AA493BDBF4B55E76DCE6FB16A124, ___LastWriteTime_4)); }
|
|
inline int64_t get_LastWriteTime_4() const { return ___LastWriteTime_4; }
|
|
inline int64_t* get_address_of_LastWriteTime_4() { return &___LastWriteTime_4; }
|
|
inline void set_LastWriteTime_4(int64_t value)
|
|
{
|
|
___LastWriteTime_4 = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.MulticastDelegate
|
|
struct MulticastDelegate_t : public Delegate_t
|
|
{
|
|
public:
|
|
// System.Delegate[] System.MulticastDelegate::delegates
|
|
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___delegates_11;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); }
|
|
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* get_delegates_11() const { return ___delegates_11; }
|
|
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86** get_address_of_delegates_11() { return &___delegates_11; }
|
|
inline void set_delegates_11(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* value)
|
|
{
|
|
___delegates_11 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value);
|
|
}
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.MulticastDelegate
|
|
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
|
|
{
|
|
Delegate_t_marshaled_pinvoke** ___delegates_11;
|
|
};
|
|
// Native definition for COM marshalling of System.MulticastDelegate
|
|
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
|
|
{
|
|
Delegate_t_marshaled_com** ___delegates_11;
|
|
};
|
|
|
|
// System.Reflection.AssemblyName
|
|
struct AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.String System.Reflection.AssemblyName::name
|
|
String_t* ___name_0;
|
|
// System.String System.Reflection.AssemblyName::codebase
|
|
String_t* ___codebase_1;
|
|
// System.Int32 System.Reflection.AssemblyName::major
|
|
int32_t ___major_2;
|
|
// System.Int32 System.Reflection.AssemblyName::minor
|
|
int32_t ___minor_3;
|
|
// System.Int32 System.Reflection.AssemblyName::build
|
|
int32_t ___build_4;
|
|
// System.Int32 System.Reflection.AssemblyName::revision
|
|
int32_t ___revision_5;
|
|
// System.Globalization.CultureInfo System.Reflection.AssemblyName::cultureinfo
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___cultureinfo_6;
|
|
// System.Reflection.AssemblyNameFlags System.Reflection.AssemblyName::flags
|
|
int32_t ___flags_7;
|
|
// System.Configuration.Assemblies.AssemblyHashAlgorithm System.Reflection.AssemblyName::hashalg
|
|
int32_t ___hashalg_8;
|
|
// System.Reflection.StrongNameKeyPair System.Reflection.AssemblyName::keypair
|
|
StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD * ___keypair_9;
|
|
// System.Byte[] System.Reflection.AssemblyName::publicKey
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___publicKey_10;
|
|
// System.Byte[] System.Reflection.AssemblyName::keyToken
|
|
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___keyToken_11;
|
|
// System.Configuration.Assemblies.AssemblyVersionCompatibility System.Reflection.AssemblyName::versioncompat
|
|
int32_t ___versioncompat_12;
|
|
// System.Version System.Reflection.AssemblyName::version
|
|
Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * ___version_13;
|
|
// System.Reflection.ProcessorArchitecture System.Reflection.AssemblyName::processor_architecture
|
|
int32_t ___processor_architecture_14;
|
|
// System.Reflection.AssemblyContentType System.Reflection.AssemblyName::contentType
|
|
int32_t ___contentType_15;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___name_0)); }
|
|
inline String_t* get_name_0() const { return ___name_0; }
|
|
inline String_t** get_address_of_name_0() { return &___name_0; }
|
|
inline void set_name_0(String_t* value)
|
|
{
|
|
___name_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_codebase_1() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___codebase_1)); }
|
|
inline String_t* get_codebase_1() const { return ___codebase_1; }
|
|
inline String_t** get_address_of_codebase_1() { return &___codebase_1; }
|
|
inline void set_codebase_1(String_t* value)
|
|
{
|
|
___codebase_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___codebase_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_major_2() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___major_2)); }
|
|
inline int32_t get_major_2() const { return ___major_2; }
|
|
inline int32_t* get_address_of_major_2() { return &___major_2; }
|
|
inline void set_major_2(int32_t value)
|
|
{
|
|
___major_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_minor_3() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___minor_3)); }
|
|
inline int32_t get_minor_3() const { return ___minor_3; }
|
|
inline int32_t* get_address_of_minor_3() { return &___minor_3; }
|
|
inline void set_minor_3(int32_t value)
|
|
{
|
|
___minor_3 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_build_4() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___build_4)); }
|
|
inline int32_t get_build_4() const { return ___build_4; }
|
|
inline int32_t* get_address_of_build_4() { return &___build_4; }
|
|
inline void set_build_4(int32_t value)
|
|
{
|
|
___build_4 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_revision_5() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___revision_5)); }
|
|
inline int32_t get_revision_5() const { return ___revision_5; }
|
|
inline int32_t* get_address_of_revision_5() { return &___revision_5; }
|
|
inline void set_revision_5(int32_t value)
|
|
{
|
|
___revision_5 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_cultureinfo_6() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___cultureinfo_6)); }
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_cultureinfo_6() const { return ___cultureinfo_6; }
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_cultureinfo_6() { return &___cultureinfo_6; }
|
|
inline void set_cultureinfo_6(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
|
|
{
|
|
___cultureinfo_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___cultureinfo_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_flags_7() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___flags_7)); }
|
|
inline int32_t get_flags_7() const { return ___flags_7; }
|
|
inline int32_t* get_address_of_flags_7() { return &___flags_7; }
|
|
inline void set_flags_7(int32_t value)
|
|
{
|
|
___flags_7 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_hashalg_8() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___hashalg_8)); }
|
|
inline int32_t get_hashalg_8() const { return ___hashalg_8; }
|
|
inline int32_t* get_address_of_hashalg_8() { return &___hashalg_8; }
|
|
inline void set_hashalg_8(int32_t value)
|
|
{
|
|
___hashalg_8 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_keypair_9() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___keypair_9)); }
|
|
inline StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD * get_keypair_9() const { return ___keypair_9; }
|
|
inline StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD ** get_address_of_keypair_9() { return &___keypair_9; }
|
|
inline void set_keypair_9(StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD * value)
|
|
{
|
|
___keypair_9 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___keypair_9), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_publicKey_10() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___publicKey_10)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_publicKey_10() const { return ___publicKey_10; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_publicKey_10() { return &___publicKey_10; }
|
|
inline void set_publicKey_10(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___publicKey_10 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___publicKey_10), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_keyToken_11() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___keyToken_11)); }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_keyToken_11() const { return ___keyToken_11; }
|
|
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_keyToken_11() { return &___keyToken_11; }
|
|
inline void set_keyToken_11(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
|
|
{
|
|
___keyToken_11 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___keyToken_11), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_versioncompat_12() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___versioncompat_12)); }
|
|
inline int32_t get_versioncompat_12() const { return ___versioncompat_12; }
|
|
inline int32_t* get_address_of_versioncompat_12() { return &___versioncompat_12; }
|
|
inline void set_versioncompat_12(int32_t value)
|
|
{
|
|
___versioncompat_12 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_version_13() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___version_13)); }
|
|
inline Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * get_version_13() const { return ___version_13; }
|
|
inline Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD ** get_address_of_version_13() { return &___version_13; }
|
|
inline void set_version_13(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * value)
|
|
{
|
|
___version_13 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___version_13), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_processor_architecture_14() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___processor_architecture_14)); }
|
|
inline int32_t get_processor_architecture_14() const { return ___processor_architecture_14; }
|
|
inline int32_t* get_address_of_processor_architecture_14() { return &___processor_architecture_14; }
|
|
inline void set_processor_architecture_14(int32_t value)
|
|
{
|
|
___processor_architecture_14 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_contentType_15() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___contentType_15)); }
|
|
inline int32_t get_contentType_15() const { return ___contentType_15; }
|
|
inline int32_t* get_address_of_contentType_15() { return &___contentType_15; }
|
|
inline void set_contentType_15(int32_t value)
|
|
{
|
|
___contentType_15 = value;
|
|
}
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.Reflection.AssemblyName
|
|
struct AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82_marshaled_pinvoke
|
|
{
|
|
char* ___name_0;
|
|
char* ___codebase_1;
|
|
int32_t ___major_2;
|
|
int32_t ___minor_3;
|
|
int32_t ___build_4;
|
|
int32_t ___revision_5;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke* ___cultureinfo_6;
|
|
int32_t ___flags_7;
|
|
int32_t ___hashalg_8;
|
|
StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD * ___keypair_9;
|
|
Il2CppSafeArray/*NONE*/* ___publicKey_10;
|
|
Il2CppSafeArray/*NONE*/* ___keyToken_11;
|
|
int32_t ___versioncompat_12;
|
|
Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * ___version_13;
|
|
int32_t ___processor_architecture_14;
|
|
int32_t ___contentType_15;
|
|
};
|
|
// Native definition for COM marshalling of System.Reflection.AssemblyName
|
|
struct AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82_marshaled_com
|
|
{
|
|
Il2CppChar* ___name_0;
|
|
Il2CppChar* ___codebase_1;
|
|
int32_t ___major_2;
|
|
int32_t ___minor_3;
|
|
int32_t ___build_4;
|
|
int32_t ___revision_5;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com* ___cultureinfo_6;
|
|
int32_t ___flags_7;
|
|
int32_t ___hashalg_8;
|
|
StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD * ___keypair_9;
|
|
Il2CppSafeArray/*NONE*/* ___publicKey_10;
|
|
Il2CppSafeArray/*NONE*/* ___keyToken_11;
|
|
int32_t ___versioncompat_12;
|
|
Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * ___version_13;
|
|
int32_t ___processor_architecture_14;
|
|
int32_t ___contentType_15;
|
|
};
|
|
|
|
// System.Reflection.Module
|
|
struct Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.IntPtr System.Reflection.Module::_impl
|
|
intptr_t ____impl_2;
|
|
// System.Reflection.Assembly System.Reflection.Module::assembly
|
|
Assembly_t * ___assembly_3;
|
|
// System.String System.Reflection.Module::fqname
|
|
String_t* ___fqname_4;
|
|
// System.String System.Reflection.Module::name
|
|
String_t* ___name_5;
|
|
// System.String System.Reflection.Module::scopename
|
|
String_t* ___scopename_6;
|
|
// System.Boolean System.Reflection.Module::is_resource
|
|
bool ___is_resource_7;
|
|
// System.Int32 System.Reflection.Module::token
|
|
int32_t ___token_8;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__impl_2() { return static_cast<int32_t>(offsetof(Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7, ____impl_2)); }
|
|
inline intptr_t get__impl_2() const { return ____impl_2; }
|
|
inline intptr_t* get_address_of__impl_2() { return &____impl_2; }
|
|
inline void set__impl_2(intptr_t value)
|
|
{
|
|
____impl_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_assembly_3() { return static_cast<int32_t>(offsetof(Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7, ___assembly_3)); }
|
|
inline Assembly_t * get_assembly_3() const { return ___assembly_3; }
|
|
inline Assembly_t ** get_address_of_assembly_3() { return &___assembly_3; }
|
|
inline void set_assembly_3(Assembly_t * value)
|
|
{
|
|
___assembly_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___assembly_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_fqname_4() { return static_cast<int32_t>(offsetof(Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7, ___fqname_4)); }
|
|
inline String_t* get_fqname_4() const { return ___fqname_4; }
|
|
inline String_t** get_address_of_fqname_4() { return &___fqname_4; }
|
|
inline void set_fqname_4(String_t* value)
|
|
{
|
|
___fqname_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___fqname_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_name_5() { return static_cast<int32_t>(offsetof(Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7, ___name_5)); }
|
|
inline String_t* get_name_5() const { return ___name_5; }
|
|
inline String_t** get_address_of_name_5() { return &___name_5; }
|
|
inline void set_name_5(String_t* value)
|
|
{
|
|
___name_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___name_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_scopename_6() { return static_cast<int32_t>(offsetof(Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7, ___scopename_6)); }
|
|
inline String_t* get_scopename_6() const { return ___scopename_6; }
|
|
inline String_t** get_address_of_scopename_6() { return &___scopename_6; }
|
|
inline void set_scopename_6(String_t* value)
|
|
{
|
|
___scopename_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___scopename_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_is_resource_7() { return static_cast<int32_t>(offsetof(Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7, ___is_resource_7)); }
|
|
inline bool get_is_resource_7() const { return ___is_resource_7; }
|
|
inline bool* get_address_of_is_resource_7() { return &___is_resource_7; }
|
|
inline void set_is_resource_7(bool value)
|
|
{
|
|
___is_resource_7 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_token_8() { return static_cast<int32_t>(offsetof(Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7, ___token_8)); }
|
|
inline int32_t get_token_8() const { return ___token_8; }
|
|
inline int32_t* get_address_of_token_8() { return &___token_8; }
|
|
inline void set_token_8(int32_t value)
|
|
{
|
|
___token_8 = value;
|
|
}
|
|
};
|
|
|
|
struct Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7_StaticFields
|
|
{
|
|
public:
|
|
// System.Reflection.TypeFilter System.Reflection.Module::FilterTypeName
|
|
TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 * ___FilterTypeName_0;
|
|
// System.Reflection.TypeFilter System.Reflection.Module::FilterTypeNameIgnoreCase
|
|
TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 * ___FilterTypeNameIgnoreCase_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_FilterTypeName_0() { return static_cast<int32_t>(offsetof(Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7_StaticFields, ___FilterTypeName_0)); }
|
|
inline TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 * get_FilterTypeName_0() const { return ___FilterTypeName_0; }
|
|
inline TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 ** get_address_of_FilterTypeName_0() { return &___FilterTypeName_0; }
|
|
inline void set_FilterTypeName_0(TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 * value)
|
|
{
|
|
___FilterTypeName_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___FilterTypeName_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_FilterTypeNameIgnoreCase_1() { return static_cast<int32_t>(offsetof(Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7_StaticFields, ___FilterTypeNameIgnoreCase_1)); }
|
|
inline TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 * get_FilterTypeNameIgnoreCase_1() const { return ___FilterTypeNameIgnoreCase_1; }
|
|
inline TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 ** get_address_of_FilterTypeNameIgnoreCase_1() { return &___FilterTypeNameIgnoreCase_1; }
|
|
inline void set_FilterTypeNameIgnoreCase_1(TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 * value)
|
|
{
|
|
___FilterTypeNameIgnoreCase_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___FilterTypeNameIgnoreCase_1), (void*)value);
|
|
}
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.Reflection.Module
|
|
struct Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7_marshaled_pinvoke
|
|
{
|
|
intptr_t ____impl_2;
|
|
Assembly_t_marshaled_pinvoke* ___assembly_3;
|
|
char* ___fqname_4;
|
|
char* ___name_5;
|
|
char* ___scopename_6;
|
|
int32_t ___is_resource_7;
|
|
int32_t ___token_8;
|
|
};
|
|
// Native definition for COM marshalling of System.Reflection.Module
|
|
struct Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7_marshaled_com
|
|
{
|
|
intptr_t ____impl_2;
|
|
Assembly_t_marshaled_com* ___assembly_3;
|
|
Il2CppChar* ___fqname_4;
|
|
Il2CppChar* ___name_5;
|
|
Il2CppChar* ___scopename_6;
|
|
int32_t ___is_resource_7;
|
|
int32_t ___token_8;
|
|
};
|
|
|
|
// System.Reflection.ParameterInfo
|
|
struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Type System.Reflection.ParameterInfo::ClassImpl
|
|
Type_t * ___ClassImpl_0;
|
|
// System.Object System.Reflection.ParameterInfo::DefaultValueImpl
|
|
RuntimeObject * ___DefaultValueImpl_1;
|
|
// System.Reflection.MemberInfo System.Reflection.ParameterInfo::MemberImpl
|
|
MemberInfo_t * ___MemberImpl_2;
|
|
// System.String System.Reflection.ParameterInfo::NameImpl
|
|
String_t* ___NameImpl_3;
|
|
// System.Int32 System.Reflection.ParameterInfo::PositionImpl
|
|
int32_t ___PositionImpl_4;
|
|
// System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl
|
|
int32_t ___AttrsImpl_5;
|
|
// System.Runtime.InteropServices.MarshalAsAttribute System.Reflection.ParameterInfo::marshalAs
|
|
MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * ___marshalAs_6;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_ClassImpl_0() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___ClassImpl_0)); }
|
|
inline Type_t * get_ClassImpl_0() const { return ___ClassImpl_0; }
|
|
inline Type_t ** get_address_of_ClassImpl_0() { return &___ClassImpl_0; }
|
|
inline void set_ClassImpl_0(Type_t * value)
|
|
{
|
|
___ClassImpl_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___ClassImpl_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_DefaultValueImpl_1() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___DefaultValueImpl_1)); }
|
|
inline RuntimeObject * get_DefaultValueImpl_1() const { return ___DefaultValueImpl_1; }
|
|
inline RuntimeObject ** get_address_of_DefaultValueImpl_1() { return &___DefaultValueImpl_1; }
|
|
inline void set_DefaultValueImpl_1(RuntimeObject * value)
|
|
{
|
|
___DefaultValueImpl_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___DefaultValueImpl_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_MemberImpl_2() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___MemberImpl_2)); }
|
|
inline MemberInfo_t * get_MemberImpl_2() const { return ___MemberImpl_2; }
|
|
inline MemberInfo_t ** get_address_of_MemberImpl_2() { return &___MemberImpl_2; }
|
|
inline void set_MemberImpl_2(MemberInfo_t * value)
|
|
{
|
|
___MemberImpl_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___MemberImpl_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_NameImpl_3() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___NameImpl_3)); }
|
|
inline String_t* get_NameImpl_3() const { return ___NameImpl_3; }
|
|
inline String_t** get_address_of_NameImpl_3() { return &___NameImpl_3; }
|
|
inline void set_NameImpl_3(String_t* value)
|
|
{
|
|
___NameImpl_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___NameImpl_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_PositionImpl_4() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___PositionImpl_4)); }
|
|
inline int32_t get_PositionImpl_4() const { return ___PositionImpl_4; }
|
|
inline int32_t* get_address_of_PositionImpl_4() { return &___PositionImpl_4; }
|
|
inline void set_PositionImpl_4(int32_t value)
|
|
{
|
|
___PositionImpl_4 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_AttrsImpl_5() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___AttrsImpl_5)); }
|
|
inline int32_t get_AttrsImpl_5() const { return ___AttrsImpl_5; }
|
|
inline int32_t* get_address_of_AttrsImpl_5() { return &___AttrsImpl_5; }
|
|
inline void set_AttrsImpl_5(int32_t value)
|
|
{
|
|
___AttrsImpl_5 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_marshalAs_6() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___marshalAs_6)); }
|
|
inline MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * get_marshalAs_6() const { return ___marshalAs_6; }
|
|
inline MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 ** get_address_of_marshalAs_6() { return &___marshalAs_6; }
|
|
inline void set_marshalAs_6(MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * value)
|
|
{
|
|
___marshalAs_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___marshalAs_6), (void*)value);
|
|
}
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.Reflection.ParameterInfo
|
|
struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_pinvoke
|
|
{
|
|
Type_t * ___ClassImpl_0;
|
|
Il2CppIUnknown* ___DefaultValueImpl_1;
|
|
MemberInfo_t * ___MemberImpl_2;
|
|
char* ___NameImpl_3;
|
|
int32_t ___PositionImpl_4;
|
|
int32_t ___AttrsImpl_5;
|
|
MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * ___marshalAs_6;
|
|
};
|
|
// Native definition for COM marshalling of System.Reflection.ParameterInfo
|
|
struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_com
|
|
{
|
|
Type_t * ___ClassImpl_0;
|
|
Il2CppIUnknown* ___DefaultValueImpl_1;
|
|
MemberInfo_t * ___MemberImpl_2;
|
|
Il2CppChar* ___NameImpl_3;
|
|
int32_t ___PositionImpl_4;
|
|
int32_t ___AttrsImpl_5;
|
|
MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * ___marshalAs_6;
|
|
};
|
|
|
|
// System.Runtime.Serialization.StreamingContext
|
|
struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034
|
|
{
|
|
public:
|
|
// System.Object System.Runtime.Serialization.StreamingContext::m_additionalContext
|
|
RuntimeObject * ___m_additionalContext_0;
|
|
// System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::m_state
|
|
int32_t ___m_state_1;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_additionalContext_0() { return static_cast<int32_t>(offsetof(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, ___m_additionalContext_0)); }
|
|
inline RuntimeObject * get_m_additionalContext_0() const { return ___m_additionalContext_0; }
|
|
inline RuntimeObject ** get_address_of_m_additionalContext_0() { return &___m_additionalContext_0; }
|
|
inline void set_m_additionalContext_0(RuntimeObject * value)
|
|
{
|
|
___m_additionalContext_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_additionalContext_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_state_1() { return static_cast<int32_t>(offsetof(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, ___m_state_1)); }
|
|
inline int32_t get_m_state_1() const { return ___m_state_1; }
|
|
inline int32_t* get_address_of_m_state_1() { return &___m_state_1; }
|
|
inline void set_m_state_1(int32_t value)
|
|
{
|
|
___m_state_1 = value;
|
|
}
|
|
};
|
|
|
|
// Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext
|
|
struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_marshaled_pinvoke
|
|
{
|
|
Il2CppIUnknown* ___m_additionalContext_0;
|
|
int32_t ___m_state_1;
|
|
};
|
|
// Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext
|
|
struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_marshaled_com
|
|
{
|
|
Il2CppIUnknown* ___m_additionalContext_0;
|
|
int32_t ___m_state_1;
|
|
};
|
|
|
|
// System.SystemException
|
|
struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 : public Exception_t
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.Type
|
|
struct Type_t : public MemberInfo_t
|
|
{
|
|
public:
|
|
// System.RuntimeTypeHandle System.Type::_impl
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ____impl_9;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); }
|
|
inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D get__impl_9() const { return ____impl_9; }
|
|
inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D * get_address_of__impl_9() { return &____impl_9; }
|
|
inline void set__impl_9(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D value)
|
|
{
|
|
____impl_9 = value;
|
|
}
|
|
};
|
|
|
|
struct Type_t_StaticFields
|
|
{
|
|
public:
|
|
// System.Reflection.MemberFilter System.Type::FilterAttribute
|
|
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterAttribute_0;
|
|
// System.Reflection.MemberFilter System.Type::FilterName
|
|
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterName_1;
|
|
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
|
|
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterNameIgnoreCase_2;
|
|
// System.Object System.Type::Missing
|
|
RuntimeObject * ___Missing_3;
|
|
// System.Char System.Type::Delimiter
|
|
Il2CppChar ___Delimiter_4;
|
|
// System.Type[] System.Type::EmptyTypes
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___EmptyTypes_5;
|
|
// System.Reflection.Binder System.Type::defaultBinder
|
|
Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___defaultBinder_6;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); }
|
|
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterAttribute_0() const { return ___FilterAttribute_0; }
|
|
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; }
|
|
inline void set_FilterAttribute_0(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
|
|
{
|
|
___FilterAttribute_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); }
|
|
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterName_1() const { return ___FilterName_1; }
|
|
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterName_1() { return &___FilterName_1; }
|
|
inline void set_FilterName_1(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
|
|
{
|
|
___FilterName_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); }
|
|
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; }
|
|
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; }
|
|
inline void set_FilterNameIgnoreCase_2(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
|
|
{
|
|
___FilterNameIgnoreCase_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); }
|
|
inline RuntimeObject * get_Missing_3() const { return ___Missing_3; }
|
|
inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; }
|
|
inline void set_Missing_3(RuntimeObject * value)
|
|
{
|
|
___Missing_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); }
|
|
inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; }
|
|
inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; }
|
|
inline void set_Delimiter_4(Il2CppChar value)
|
|
{
|
|
___Delimiter_4 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); }
|
|
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_EmptyTypes_5() const { return ___EmptyTypes_5; }
|
|
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; }
|
|
inline void set_EmptyTypes_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
|
|
{
|
|
___EmptyTypes_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); }
|
|
inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * get_defaultBinder_6() const { return ___defaultBinder_6; }
|
|
inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; }
|
|
inline void set_defaultBinder_6(Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * value)
|
|
{
|
|
___defaultBinder_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Uri
|
|
struct Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.String System.Uri::m_String
|
|
String_t* ___m_String_13;
|
|
// System.String System.Uri::m_originalUnicodeString
|
|
String_t* ___m_originalUnicodeString_14;
|
|
// System.UriParser System.Uri::m_Syntax
|
|
UriParser_t07C77D673CCE8D2DA253B8A7ACCB010147F1A4AC * ___m_Syntax_15;
|
|
// System.String System.Uri::m_DnsSafeHost
|
|
String_t* ___m_DnsSafeHost_16;
|
|
// System.Uri_Flags System.Uri::m_Flags
|
|
uint64_t ___m_Flags_17;
|
|
// System.Uri_UriInfo System.Uri::m_Info
|
|
UriInfo_t9FCC6BD4EC1EA14D75209E6A35417057BF6EDC5E * ___m_Info_18;
|
|
// System.Boolean System.Uri::m_iriParsing
|
|
bool ___m_iriParsing_19;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_String_13() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E, ___m_String_13)); }
|
|
inline String_t* get_m_String_13() const { return ___m_String_13; }
|
|
inline String_t** get_address_of_m_String_13() { return &___m_String_13; }
|
|
inline void set_m_String_13(String_t* value)
|
|
{
|
|
___m_String_13 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_String_13), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_originalUnicodeString_14() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E, ___m_originalUnicodeString_14)); }
|
|
inline String_t* get_m_originalUnicodeString_14() const { return ___m_originalUnicodeString_14; }
|
|
inline String_t** get_address_of_m_originalUnicodeString_14() { return &___m_originalUnicodeString_14; }
|
|
inline void set_m_originalUnicodeString_14(String_t* value)
|
|
{
|
|
___m_originalUnicodeString_14 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_originalUnicodeString_14), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_Syntax_15() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E, ___m_Syntax_15)); }
|
|
inline UriParser_t07C77D673CCE8D2DA253B8A7ACCB010147F1A4AC * get_m_Syntax_15() const { return ___m_Syntax_15; }
|
|
inline UriParser_t07C77D673CCE8D2DA253B8A7ACCB010147F1A4AC ** get_address_of_m_Syntax_15() { return &___m_Syntax_15; }
|
|
inline void set_m_Syntax_15(UriParser_t07C77D673CCE8D2DA253B8A7ACCB010147F1A4AC * value)
|
|
{
|
|
___m_Syntax_15 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_Syntax_15), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_DnsSafeHost_16() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E, ___m_DnsSafeHost_16)); }
|
|
inline String_t* get_m_DnsSafeHost_16() const { return ___m_DnsSafeHost_16; }
|
|
inline String_t** get_address_of_m_DnsSafeHost_16() { return &___m_DnsSafeHost_16; }
|
|
inline void set_m_DnsSafeHost_16(String_t* value)
|
|
{
|
|
___m_DnsSafeHost_16 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_DnsSafeHost_16), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_Flags_17() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E, ___m_Flags_17)); }
|
|
inline uint64_t get_m_Flags_17() const { return ___m_Flags_17; }
|
|
inline uint64_t* get_address_of_m_Flags_17() { return &___m_Flags_17; }
|
|
inline void set_m_Flags_17(uint64_t value)
|
|
{
|
|
___m_Flags_17 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_Info_18() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E, ___m_Info_18)); }
|
|
inline UriInfo_t9FCC6BD4EC1EA14D75209E6A35417057BF6EDC5E * get_m_Info_18() const { return ___m_Info_18; }
|
|
inline UriInfo_t9FCC6BD4EC1EA14D75209E6A35417057BF6EDC5E ** get_address_of_m_Info_18() { return &___m_Info_18; }
|
|
inline void set_m_Info_18(UriInfo_t9FCC6BD4EC1EA14D75209E6A35417057BF6EDC5E * value)
|
|
{
|
|
___m_Info_18 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_Info_18), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_iriParsing_19() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E, ___m_iriParsing_19)); }
|
|
inline bool get_m_iriParsing_19() const { return ___m_iriParsing_19; }
|
|
inline bool* get_address_of_m_iriParsing_19() { return &___m_iriParsing_19; }
|
|
inline void set_m_iriParsing_19(bool value)
|
|
{
|
|
___m_iriParsing_19 = value;
|
|
}
|
|
};
|
|
|
|
struct Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields
|
|
{
|
|
public:
|
|
// System.String System.Uri::UriSchemeFile
|
|
String_t* ___UriSchemeFile_0;
|
|
// System.String System.Uri::UriSchemeFtp
|
|
String_t* ___UriSchemeFtp_1;
|
|
// System.String System.Uri::UriSchemeGopher
|
|
String_t* ___UriSchemeGopher_2;
|
|
// System.String System.Uri::UriSchemeHttp
|
|
String_t* ___UriSchemeHttp_3;
|
|
// System.String System.Uri::UriSchemeHttps
|
|
String_t* ___UriSchemeHttps_4;
|
|
// System.String System.Uri::UriSchemeWs
|
|
String_t* ___UriSchemeWs_5;
|
|
// System.String System.Uri::UriSchemeWss
|
|
String_t* ___UriSchemeWss_6;
|
|
// System.String System.Uri::UriSchemeMailto
|
|
String_t* ___UriSchemeMailto_7;
|
|
// System.String System.Uri::UriSchemeNews
|
|
String_t* ___UriSchemeNews_8;
|
|
// System.String System.Uri::UriSchemeNntp
|
|
String_t* ___UriSchemeNntp_9;
|
|
// System.String System.Uri::UriSchemeNetTcp
|
|
String_t* ___UriSchemeNetTcp_10;
|
|
// System.String System.Uri::UriSchemeNetPipe
|
|
String_t* ___UriSchemeNetPipe_11;
|
|
// System.String System.Uri::SchemeDelimiter
|
|
String_t* ___SchemeDelimiter_12;
|
|
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitialized
|
|
bool ___s_ConfigInitialized_20;
|
|
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitializing
|
|
bool ___s_ConfigInitializing_21;
|
|
// System.UriIdnScope modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IdnScope
|
|
int32_t ___s_IdnScope_22;
|
|
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IriParsing
|
|
bool ___s_IriParsing_23;
|
|
// System.Boolean System.Uri::useDotNetRelativeOrAbsolute
|
|
bool ___useDotNetRelativeOrAbsolute_24;
|
|
// System.Boolean System.Uri::IsWindowsFileSystem
|
|
bool ___IsWindowsFileSystem_25;
|
|
// System.Object System.Uri::s_initLock
|
|
RuntimeObject * ___s_initLock_26;
|
|
// System.Char[] System.Uri::HexLowerChars
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___HexLowerChars_27;
|
|
// System.Char[] System.Uri::_WSchars
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ____WSchars_28;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_UriSchemeFile_0() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeFile_0)); }
|
|
inline String_t* get_UriSchemeFile_0() const { return ___UriSchemeFile_0; }
|
|
inline String_t** get_address_of_UriSchemeFile_0() { return &___UriSchemeFile_0; }
|
|
inline void set_UriSchemeFile_0(String_t* value)
|
|
{
|
|
___UriSchemeFile_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeFile_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_UriSchemeFtp_1() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeFtp_1)); }
|
|
inline String_t* get_UriSchemeFtp_1() const { return ___UriSchemeFtp_1; }
|
|
inline String_t** get_address_of_UriSchemeFtp_1() { return &___UriSchemeFtp_1; }
|
|
inline void set_UriSchemeFtp_1(String_t* value)
|
|
{
|
|
___UriSchemeFtp_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeFtp_1), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_UriSchemeGopher_2() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeGopher_2)); }
|
|
inline String_t* get_UriSchemeGopher_2() const { return ___UriSchemeGopher_2; }
|
|
inline String_t** get_address_of_UriSchemeGopher_2() { return &___UriSchemeGopher_2; }
|
|
inline void set_UriSchemeGopher_2(String_t* value)
|
|
{
|
|
___UriSchemeGopher_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeGopher_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_UriSchemeHttp_3() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeHttp_3)); }
|
|
inline String_t* get_UriSchemeHttp_3() const { return ___UriSchemeHttp_3; }
|
|
inline String_t** get_address_of_UriSchemeHttp_3() { return &___UriSchemeHttp_3; }
|
|
inline void set_UriSchemeHttp_3(String_t* value)
|
|
{
|
|
___UriSchemeHttp_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeHttp_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_UriSchemeHttps_4() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeHttps_4)); }
|
|
inline String_t* get_UriSchemeHttps_4() const { return ___UriSchemeHttps_4; }
|
|
inline String_t** get_address_of_UriSchemeHttps_4() { return &___UriSchemeHttps_4; }
|
|
inline void set_UriSchemeHttps_4(String_t* value)
|
|
{
|
|
___UriSchemeHttps_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeHttps_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_UriSchemeWs_5() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeWs_5)); }
|
|
inline String_t* get_UriSchemeWs_5() const { return ___UriSchemeWs_5; }
|
|
inline String_t** get_address_of_UriSchemeWs_5() { return &___UriSchemeWs_5; }
|
|
inline void set_UriSchemeWs_5(String_t* value)
|
|
{
|
|
___UriSchemeWs_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeWs_5), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_UriSchemeWss_6() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeWss_6)); }
|
|
inline String_t* get_UriSchemeWss_6() const { return ___UriSchemeWss_6; }
|
|
inline String_t** get_address_of_UriSchemeWss_6() { return &___UriSchemeWss_6; }
|
|
inline void set_UriSchemeWss_6(String_t* value)
|
|
{
|
|
___UriSchemeWss_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeWss_6), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_UriSchemeMailto_7() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeMailto_7)); }
|
|
inline String_t* get_UriSchemeMailto_7() const { return ___UriSchemeMailto_7; }
|
|
inline String_t** get_address_of_UriSchemeMailto_7() { return &___UriSchemeMailto_7; }
|
|
inline void set_UriSchemeMailto_7(String_t* value)
|
|
{
|
|
___UriSchemeMailto_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeMailto_7), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_UriSchemeNews_8() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeNews_8)); }
|
|
inline String_t* get_UriSchemeNews_8() const { return ___UriSchemeNews_8; }
|
|
inline String_t** get_address_of_UriSchemeNews_8() { return &___UriSchemeNews_8; }
|
|
inline void set_UriSchemeNews_8(String_t* value)
|
|
{
|
|
___UriSchemeNews_8 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNews_8), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_UriSchemeNntp_9() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeNntp_9)); }
|
|
inline String_t* get_UriSchemeNntp_9() const { return ___UriSchemeNntp_9; }
|
|
inline String_t** get_address_of_UriSchemeNntp_9() { return &___UriSchemeNntp_9; }
|
|
inline void set_UriSchemeNntp_9(String_t* value)
|
|
{
|
|
___UriSchemeNntp_9 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNntp_9), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_UriSchemeNetTcp_10() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeNetTcp_10)); }
|
|
inline String_t* get_UriSchemeNetTcp_10() const { return ___UriSchemeNetTcp_10; }
|
|
inline String_t** get_address_of_UriSchemeNetTcp_10() { return &___UriSchemeNetTcp_10; }
|
|
inline void set_UriSchemeNetTcp_10(String_t* value)
|
|
{
|
|
___UriSchemeNetTcp_10 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNetTcp_10), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_UriSchemeNetPipe_11() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeNetPipe_11)); }
|
|
inline String_t* get_UriSchemeNetPipe_11() const { return ___UriSchemeNetPipe_11; }
|
|
inline String_t** get_address_of_UriSchemeNetPipe_11() { return &___UriSchemeNetPipe_11; }
|
|
inline void set_UriSchemeNetPipe_11(String_t* value)
|
|
{
|
|
___UriSchemeNetPipe_11 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNetPipe_11), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_SchemeDelimiter_12() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___SchemeDelimiter_12)); }
|
|
inline String_t* get_SchemeDelimiter_12() const { return ___SchemeDelimiter_12; }
|
|
inline String_t** get_address_of_SchemeDelimiter_12() { return &___SchemeDelimiter_12; }
|
|
inline void set_SchemeDelimiter_12(String_t* value)
|
|
{
|
|
___SchemeDelimiter_12 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___SchemeDelimiter_12), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_s_ConfigInitialized_20() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___s_ConfigInitialized_20)); }
|
|
inline bool get_s_ConfigInitialized_20() const { return ___s_ConfigInitialized_20; }
|
|
inline bool* get_address_of_s_ConfigInitialized_20() { return &___s_ConfigInitialized_20; }
|
|
inline void set_s_ConfigInitialized_20(bool value)
|
|
{
|
|
___s_ConfigInitialized_20 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_s_ConfigInitializing_21() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___s_ConfigInitializing_21)); }
|
|
inline bool get_s_ConfigInitializing_21() const { return ___s_ConfigInitializing_21; }
|
|
inline bool* get_address_of_s_ConfigInitializing_21() { return &___s_ConfigInitializing_21; }
|
|
inline void set_s_ConfigInitializing_21(bool value)
|
|
{
|
|
___s_ConfigInitializing_21 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_s_IdnScope_22() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___s_IdnScope_22)); }
|
|
inline int32_t get_s_IdnScope_22() const { return ___s_IdnScope_22; }
|
|
inline int32_t* get_address_of_s_IdnScope_22() { return &___s_IdnScope_22; }
|
|
inline void set_s_IdnScope_22(int32_t value)
|
|
{
|
|
___s_IdnScope_22 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_s_IriParsing_23() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___s_IriParsing_23)); }
|
|
inline bool get_s_IriParsing_23() const { return ___s_IriParsing_23; }
|
|
inline bool* get_address_of_s_IriParsing_23() { return &___s_IriParsing_23; }
|
|
inline void set_s_IriParsing_23(bool value)
|
|
{
|
|
___s_IriParsing_23 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_useDotNetRelativeOrAbsolute_24() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___useDotNetRelativeOrAbsolute_24)); }
|
|
inline bool get_useDotNetRelativeOrAbsolute_24() const { return ___useDotNetRelativeOrAbsolute_24; }
|
|
inline bool* get_address_of_useDotNetRelativeOrAbsolute_24() { return &___useDotNetRelativeOrAbsolute_24; }
|
|
inline void set_useDotNetRelativeOrAbsolute_24(bool value)
|
|
{
|
|
___useDotNetRelativeOrAbsolute_24 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_IsWindowsFileSystem_25() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___IsWindowsFileSystem_25)); }
|
|
inline bool get_IsWindowsFileSystem_25() const { return ___IsWindowsFileSystem_25; }
|
|
inline bool* get_address_of_IsWindowsFileSystem_25() { return &___IsWindowsFileSystem_25; }
|
|
inline void set_IsWindowsFileSystem_25(bool value)
|
|
{
|
|
___IsWindowsFileSystem_25 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_s_initLock_26() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___s_initLock_26)); }
|
|
inline RuntimeObject * get_s_initLock_26() const { return ___s_initLock_26; }
|
|
inline RuntimeObject ** get_address_of_s_initLock_26() { return &___s_initLock_26; }
|
|
inline void set_s_initLock_26(RuntimeObject * value)
|
|
{
|
|
___s_initLock_26 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___s_initLock_26), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_HexLowerChars_27() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___HexLowerChars_27)); }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_HexLowerChars_27() const { return ___HexLowerChars_27; }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_HexLowerChars_27() { return &___HexLowerChars_27; }
|
|
inline void set_HexLowerChars_27(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
|
|
{
|
|
___HexLowerChars_27 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___HexLowerChars_27), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__WSchars_28() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ____WSchars_28)); }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get__WSchars_28() const { return ____WSchars_28; }
|
|
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of__WSchars_28() { return &____WSchars_28; }
|
|
inline void set__WSchars_28(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
|
|
{
|
|
____WSchars_28 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____WSchars_28), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ArgumentException
|
|
struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
|
|
{
|
|
public:
|
|
// System.String System.ArgumentException::m_paramName
|
|
String_t* ___m_paramName_17;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1, ___m_paramName_17)); }
|
|
inline String_t* get_m_paramName_17() const { return ___m_paramName_17; }
|
|
inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; }
|
|
inline void set_m_paramName_17(String_t* value)
|
|
{
|
|
___m_paramName_17 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.AsyncCallback
|
|
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 : public MulticastDelegate_t
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ComponentModel.DoWorkEventHandler
|
|
struct DoWorkEventHandler_t106AA6C0F543A5A4998F9E9E73F4461D404F20DD : public MulticastDelegate_t
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ComponentModel.DoubleConverter
|
|
struct DoubleConverter_t65A5D8B0C2736FC5469CE5DFA468D371DD5F9F75 : public BaseNumberConverter_t6AF36A2503E7BABF7FB9A8EC05DF8B828491AC63
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ComponentModel.HandledEventHandler
|
|
struct HandledEventHandler_t17748FC020C52377E8BE63A85595C31181910699 : public MulticastDelegate_t
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ComponentModel.Int16Converter
|
|
struct Int16Converter_tA2223DDF2BE99AD79AD836FCEC90F2C12705433B : public BaseNumberConverter_t6AF36A2503E7BABF7FB9A8EC05DF8B828491AC63
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ComponentModel.Int32Converter
|
|
struct Int32Converter_t73A6E403EBE01B56528CB227509954397A46BA22 : public BaseNumberConverter_t6AF36A2503E7BABF7FB9A8EC05DF8B828491AC63
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ComponentModel.Int64Converter
|
|
struct Int64Converter_tED09C98C409F894484943F8D4F9C6468A97F1447 : public BaseNumberConverter_t6AF36A2503E7BABF7FB9A8EC05DF8B828491AC63
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ComponentModel.LicenseException
|
|
struct LicenseException_t68C548BE94D4AD7F82C5AD5E710AC18F50F30F9D : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
|
|
{
|
|
public:
|
|
// System.Type System.ComponentModel.LicenseException::type
|
|
Type_t * ___type_17;
|
|
// System.Object System.ComponentModel.LicenseException::instance
|
|
RuntimeObject * ___instance_18;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_type_17() { return static_cast<int32_t>(offsetof(LicenseException_t68C548BE94D4AD7F82C5AD5E710AC18F50F30F9D, ___type_17)); }
|
|
inline Type_t * get_type_17() const { return ___type_17; }
|
|
inline Type_t ** get_address_of_type_17() { return &___type_17; }
|
|
inline void set_type_17(Type_t * value)
|
|
{
|
|
___type_17 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___type_17), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_instance_18() { return static_cast<int32_t>(offsetof(LicenseException_t68C548BE94D4AD7F82C5AD5E710AC18F50F30F9D, ___instance_18)); }
|
|
inline RuntimeObject * get_instance_18() const { return ___instance_18; }
|
|
inline RuntimeObject ** get_address_of_instance_18() { return &___instance_18; }
|
|
inline void set_instance_18(RuntimeObject * value)
|
|
{
|
|
___instance_18 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___instance_18), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.ListChangedEventHandler
|
|
struct ListChangedEventHandler_t8081F1428D22013519901C16884C5ACE86A72A88 : public MulticastDelegate_t
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ComponentModel.ProgressChangedEventHandler
|
|
struct ProgressChangedEventHandler_t7C77D0D690442151F8203A0BF38966A9B2CF33C0 : public MulticastDelegate_t
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ComponentModel.PropertyChangedEventHandler
|
|
struct PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 : public MulticastDelegate_t
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ComponentModel.PropertyChangingEventHandler
|
|
struct PropertyChangingEventHandler_tE2424019EC48E76381C3EB037326A821D4F833C1 : public MulticastDelegate_t
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.EventHandler
|
|
struct EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C : public MulticastDelegate_t
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.FormatException
|
|
struct FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.IO.FileSystemInfo
|
|
struct FileSystemInfo_t6831B76FBA37F7181E4A5AEB28194730EB356A3D : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF
|
|
{
|
|
public:
|
|
// System.IO.MonoIOStat System.IO.FileSystemInfo::_data
|
|
MonoIOStat_t819C03DA1902AA493BDBF4B55E76DCE6FB16A124 ____data_1;
|
|
// System.Int32 System.IO.FileSystemInfo::_dataInitialised
|
|
int32_t ____dataInitialised_2;
|
|
// System.String System.IO.FileSystemInfo::FullPath
|
|
String_t* ___FullPath_3;
|
|
// System.String System.IO.FileSystemInfo::OriginalPath
|
|
String_t* ___OriginalPath_4;
|
|
// System.String System.IO.FileSystemInfo::_displayPath
|
|
String_t* ____displayPath_5;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__data_1() { return static_cast<int32_t>(offsetof(FileSystemInfo_t6831B76FBA37F7181E4A5AEB28194730EB356A3D, ____data_1)); }
|
|
inline MonoIOStat_t819C03DA1902AA493BDBF4B55E76DCE6FB16A124 get__data_1() const { return ____data_1; }
|
|
inline MonoIOStat_t819C03DA1902AA493BDBF4B55E76DCE6FB16A124 * get_address_of__data_1() { return &____data_1; }
|
|
inline void set__data_1(MonoIOStat_t819C03DA1902AA493BDBF4B55E76DCE6FB16A124 value)
|
|
{
|
|
____data_1 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of__dataInitialised_2() { return static_cast<int32_t>(offsetof(FileSystemInfo_t6831B76FBA37F7181E4A5AEB28194730EB356A3D, ____dataInitialised_2)); }
|
|
inline int32_t get__dataInitialised_2() const { return ____dataInitialised_2; }
|
|
inline int32_t* get_address_of__dataInitialised_2() { return &____dataInitialised_2; }
|
|
inline void set__dataInitialised_2(int32_t value)
|
|
{
|
|
____dataInitialised_2 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_FullPath_3() { return static_cast<int32_t>(offsetof(FileSystemInfo_t6831B76FBA37F7181E4A5AEB28194730EB356A3D, ___FullPath_3)); }
|
|
inline String_t* get_FullPath_3() const { return ___FullPath_3; }
|
|
inline String_t** get_address_of_FullPath_3() { return &___FullPath_3; }
|
|
inline void set_FullPath_3(String_t* value)
|
|
{
|
|
___FullPath_3 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___FullPath_3), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_OriginalPath_4() { return static_cast<int32_t>(offsetof(FileSystemInfo_t6831B76FBA37F7181E4A5AEB28194730EB356A3D, ___OriginalPath_4)); }
|
|
inline String_t* get_OriginalPath_4() const { return ___OriginalPath_4; }
|
|
inline String_t** get_address_of_OriginalPath_4() { return &___OriginalPath_4; }
|
|
inline void set_OriginalPath_4(String_t* value)
|
|
{
|
|
___OriginalPath_4 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___OriginalPath_4), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of__displayPath_5() { return static_cast<int32_t>(offsetof(FileSystemInfo_t6831B76FBA37F7181E4A5AEB28194730EB356A3D, ____displayPath_5)); }
|
|
inline String_t* get__displayPath_5() const { return ____displayPath_5; }
|
|
inline String_t** get_address_of__displayPath_5() { return &____displayPath_5; }
|
|
inline void set__displayPath_5(String_t* value)
|
|
{
|
|
____displayPath_5 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____displayPath_5), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.IndexOutOfRangeException
|
|
struct IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.InvalidOperationException
|
|
struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.NotSupportedException
|
|
struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.Reflection.TargetInvocationException
|
|
struct TargetInvocationException_t0DD35F6083E1D1E0509BF181A79C76D3339D89B8 : public ApplicationException_t664823C3E0D3E1E7C7FA1C0DB4E19E98E9811C74
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.Runtime.InteropServices.ExternalException
|
|
struct ExternalException_t68841FD169C0CB00CC950EDA7E2A59540D65B1CE : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
|
struct BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0 : public RuntimeObject
|
|
{
|
|
public:
|
|
// System.Runtime.Serialization.ISurrogateSelector System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::m_surrogates
|
|
RuntimeObject* ___m_surrogates_0;
|
|
// System.Runtime.Serialization.StreamingContext System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::m_context
|
|
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___m_context_1;
|
|
// System.Runtime.Serialization.SerializationBinder System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::m_binder
|
|
SerializationBinder_tB5EBAF328371FB7CF23E37F5984D8412762CFFA4 * ___m_binder_2;
|
|
// System.Runtime.Serialization.Formatters.FormatterTypeStyle System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::m_typeFormat
|
|
int32_t ___m_typeFormat_3;
|
|
// System.Runtime.Serialization.Formatters.FormatterAssemblyStyle System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::m_assemblyFormat
|
|
int32_t ___m_assemblyFormat_4;
|
|
// System.Runtime.Serialization.Formatters.TypeFilterLevel System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::m_securityLevel
|
|
int32_t ___m_securityLevel_5;
|
|
// System.Object[] System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::m_crossAppDomainArray
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___m_crossAppDomainArray_6;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_m_surrogates_0() { return static_cast<int32_t>(offsetof(BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0, ___m_surrogates_0)); }
|
|
inline RuntimeObject* get_m_surrogates_0() const { return ___m_surrogates_0; }
|
|
inline RuntimeObject** get_address_of_m_surrogates_0() { return &___m_surrogates_0; }
|
|
inline void set_m_surrogates_0(RuntimeObject* value)
|
|
{
|
|
___m_surrogates_0 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_surrogates_0), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_context_1() { return static_cast<int32_t>(offsetof(BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0, ___m_context_1)); }
|
|
inline StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 get_m_context_1() const { return ___m_context_1; }
|
|
inline StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 * get_address_of_m_context_1() { return &___m_context_1; }
|
|
inline void set_m_context_1(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 value)
|
|
{
|
|
___m_context_1 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&___m_context_1))->___m_additionalContext_0), (void*)NULL);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_binder_2() { return static_cast<int32_t>(offsetof(BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0, ___m_binder_2)); }
|
|
inline SerializationBinder_tB5EBAF328371FB7CF23E37F5984D8412762CFFA4 * get_m_binder_2() const { return ___m_binder_2; }
|
|
inline SerializationBinder_tB5EBAF328371FB7CF23E37F5984D8412762CFFA4 ** get_address_of_m_binder_2() { return &___m_binder_2; }
|
|
inline void set_m_binder_2(SerializationBinder_tB5EBAF328371FB7CF23E37F5984D8412762CFFA4 * value)
|
|
{
|
|
___m_binder_2 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_binder_2), (void*)value);
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_typeFormat_3() { return static_cast<int32_t>(offsetof(BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0, ___m_typeFormat_3)); }
|
|
inline int32_t get_m_typeFormat_3() const { return ___m_typeFormat_3; }
|
|
inline int32_t* get_address_of_m_typeFormat_3() { return &___m_typeFormat_3; }
|
|
inline void set_m_typeFormat_3(int32_t value)
|
|
{
|
|
___m_typeFormat_3 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_assemblyFormat_4() { return static_cast<int32_t>(offsetof(BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0, ___m_assemblyFormat_4)); }
|
|
inline int32_t get_m_assemblyFormat_4() const { return ___m_assemblyFormat_4; }
|
|
inline int32_t* get_address_of_m_assemblyFormat_4() { return &___m_assemblyFormat_4; }
|
|
inline void set_m_assemblyFormat_4(int32_t value)
|
|
{
|
|
___m_assemblyFormat_4 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_securityLevel_5() { return static_cast<int32_t>(offsetof(BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0, ___m_securityLevel_5)); }
|
|
inline int32_t get_m_securityLevel_5() const { return ___m_securityLevel_5; }
|
|
inline int32_t* get_address_of_m_securityLevel_5() { return &___m_securityLevel_5; }
|
|
inline void set_m_securityLevel_5(int32_t value)
|
|
{
|
|
___m_securityLevel_5 = value;
|
|
}
|
|
|
|
inline static int32_t get_offset_of_m_crossAppDomainArray_6() { return static_cast<int32_t>(offsetof(BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0, ___m_crossAppDomainArray_6)); }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_m_crossAppDomainArray_6() const { return ___m_crossAppDomainArray_6; }
|
|
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_m_crossAppDomainArray_6() { return &___m_crossAppDomainArray_6; }
|
|
inline void set_m_crossAppDomainArray_6(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
|
|
{
|
|
___m_crossAppDomainArray_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___m_crossAppDomainArray_6), (void*)value);
|
|
}
|
|
};
|
|
|
|
struct BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0_StaticFields
|
|
{
|
|
public:
|
|
// System.Collections.Generic.Dictionary`2<System.Type,System.Runtime.Serialization.Formatters.Binary.TypeInformation> System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::typeNameCache
|
|
Dictionary_2_tDF0B764EEAE1242A344103EC40130E5D891C6934 * ___typeNameCache_7;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_typeNameCache_7() { return static_cast<int32_t>(offsetof(BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0_StaticFields, ___typeNameCache_7)); }
|
|
inline Dictionary_2_tDF0B764EEAE1242A344103EC40130E5D891C6934 * get_typeNameCache_7() const { return ___typeNameCache_7; }
|
|
inline Dictionary_2_tDF0B764EEAE1242A344103EC40130E5D891C6934 ** get_address_of_typeNameCache_7() { return &___typeNameCache_7; }
|
|
inline void set_typeNameCache_7(Dictionary_2_tDF0B764EEAE1242A344103EC40130E5D891C6934 * value)
|
|
{
|
|
___typeNameCache_7 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___typeNameCache_7), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Threading.ThreadAbortException
|
|
struct ThreadAbortException_t0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ArgumentNullException
|
|
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ComponentModel.Design.CheckoutException
|
|
struct CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 : public ExternalException_t68841FD169C0CB00CC950EDA7E2A59540D65B1CE
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
struct CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_StaticFields
|
|
{
|
|
public:
|
|
// System.ComponentModel.Design.CheckoutException System.ComponentModel.Design.CheckoutException::Canceled
|
|
CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * ___Canceled_17;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of_Canceled_17() { return static_cast<int32_t>(offsetof(CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_StaticFields, ___Canceled_17)); }
|
|
inline CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * get_Canceled_17() const { return ___Canceled_17; }
|
|
inline CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 ** get_address_of_Canceled_17() { return &___Canceled_17; }
|
|
inline void set_Canceled_17(CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * value)
|
|
{
|
|
___Canceled_17 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&___Canceled_17), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.ComponentModel.InvalidAsynchronousStateException
|
|
struct InvalidAsynchronousStateException_t7DB1CEE45E73613ADBB359792244856600B5E5D7 : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.ComponentModel.InvalidEnumArgumentException
|
|
struct InvalidEnumArgumentException_tCC80F4F8EF655A404E9D11895A6477AA3D210BB1 : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
// System.IO.FileInfo
|
|
struct FileInfo_tF8C1D41E1ABDAC19BF4F76A491DD28DD8DBEE35C : public FileSystemInfo_t6831B76FBA37F7181E4A5AEB28194730EB356A3D
|
|
{
|
|
public:
|
|
// System.String System.IO.FileInfo::_name
|
|
String_t* ____name_6;
|
|
|
|
public:
|
|
inline static int32_t get_offset_of__name_6() { return static_cast<int32_t>(offsetof(FileInfo_tF8C1D41E1ABDAC19BF4F76A491DD28DD8DBEE35C, ____name_6)); }
|
|
inline String_t* get__name_6() const { return ____name_6; }
|
|
inline String_t** get_address_of__name_6() { return &____name_6; }
|
|
inline void set__name_6(String_t* value)
|
|
{
|
|
____name_6 = value;
|
|
Il2CppCodeGenWriteBarrier((void**)(&____name_6), (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Runtime.InteropServices.COMException
|
|
struct COMException_t16C4698DE84A5ED9085B5545DEE0EDE38DB455DD : public ExternalException_t68841FD169C0CB00CC950EDA7E2A59540D65B1CE
|
|
{
|
|
public:
|
|
|
|
public:
|
|
};
|
|
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
// System.Type[]
|
|
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F : public RuntimeArray
|
|
{
|
|
public:
|
|
ALIGN_FIELD (8) Type_t * m_Items[1];
|
|
|
|
public:
|
|
inline Type_t * GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Type_t ** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Type_t * value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline Type_t * GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Type_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t * value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// System.Object[]
|
|
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A : public RuntimeArray
|
|
{
|
|
public:
|
|
ALIGN_FIELD (8) RuntimeObject * m_Items[1];
|
|
|
|
public:
|
|
inline RuntimeObject * GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// System.ComponentModel.IExtenderProvider[]
|
|
struct IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031 : public RuntimeArray
|
|
{
|
|
public:
|
|
ALIGN_FIELD (8) RuntimeObject* m_Items[1];
|
|
|
|
public:
|
|
inline RuntimeObject* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline RuntimeObject** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, RuntimeObject* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline RuntimeObject* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline RuntimeObject** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// System.Reflection.Assembly[]
|
|
struct AssemblyU5BU5D_t90BF014AA048450526A42C74F9583341A138DE58 : public RuntimeArray
|
|
{
|
|
public:
|
|
ALIGN_FIELD (8) Assembly_t * m_Items[1];
|
|
|
|
public:
|
|
inline Assembly_t * GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Assembly_t ** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Assembly_t * value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline Assembly_t * GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Assembly_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Assembly_t * value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// System.String[]
|
|
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E : public RuntimeArray
|
|
{
|
|
public:
|
|
ALIGN_FIELD (8) String_t* m_Items[1];
|
|
|
|
public:
|
|
inline String_t* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline String_t** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, String_t* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// System.Reflection.ParameterInfo[]
|
|
struct ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694 : public RuntimeArray
|
|
{
|
|
public:
|
|
ALIGN_FIELD (8) ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * m_Items[1];
|
|
|
|
public:
|
|
inline ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB ** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB ** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// System.Delegate[]
|
|
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86 : public RuntimeArray
|
|
{
|
|
public:
|
|
ALIGN_FIELD (8) Delegate_t * m_Items[1];
|
|
|
|
public:
|
|
inline Delegate_t * GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Delegate_t ** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Delegate_t * value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline Delegate_t * GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Delegate_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t * value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// System.Enum[]
|
|
struct EnumU5BU5D_t89BCD01877A8CDBF7729DE77C6185E8DC1432BCA : public RuntimeArray
|
|
{
|
|
public:
|
|
ALIGN_FIELD (8) Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 * m_Items[1];
|
|
|
|
public:
|
|
inline Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 * GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 ** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 * value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 * GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 * value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// System.Char[]
|
|
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2 : public RuntimeArray
|
|
{
|
|
public:
|
|
ALIGN_FIELD (8) Il2CppChar m_Items[1];
|
|
|
|
public:
|
|
inline Il2CppChar GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Il2CppChar value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
// System.Int64[]
|
|
struct Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F : public RuntimeArray
|
|
{
|
|
public:
|
|
ALIGN_FIELD (8) int64_t m_Items[1];
|
|
|
|
public:
|
|
inline int64_t GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline int64_t* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, int64_t value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline int64_t GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline int64_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, int64_t value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
// System.Reflection.FieldInfo[]
|
|
struct FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE : public RuntimeArray
|
|
{
|
|
public:
|
|
ALIGN_FIELD (8) FieldInfo_t * m_Items[1];
|
|
|
|
public:
|
|
inline FieldInfo_t * GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline FieldInfo_t ** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, FieldInfo_t * value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline FieldInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline FieldInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, FieldInfo_t * value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// System.Attribute[]
|
|
struct AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17 : public RuntimeArray
|
|
{
|
|
public:
|
|
ALIGN_FIELD (8) Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * m_Items[1];
|
|
|
|
public:
|
|
inline Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 ** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// System.ComponentModel.EventDescriptor[]
|
|
struct EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4 : public RuntimeArray
|
|
{
|
|
public:
|
|
ALIGN_FIELD (8) EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * m_Items[1];
|
|
|
|
public:
|
|
inline EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 ** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// System.ComponentModel.ListSortDescription[]
|
|
struct ListSortDescriptionU5BU5D_t852C81EC628A962BC76EF59B86ADF79FA8C00A76 : public RuntimeArray
|
|
{
|
|
public:
|
|
ALIGN_FIELD (8) ListSortDescription_t70B03E24814E0475DA906045690FBE5010F28C75 * m_Items[1];
|
|
|
|
public:
|
|
inline ListSortDescription_t70B03E24814E0475DA906045690FBE5010F28C75 * GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline ListSortDescription_t70B03E24814E0475DA906045690FBE5010F28C75 ** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, ListSortDescription_t70B03E24814E0475DA906045690FBE5010F28C75 * value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline ListSortDescription_t70B03E24814E0475DA906045690FBE5010F28C75 * GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline ListSortDescription_t70B03E24814E0475DA906045690FBE5010F28C75 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, ListSortDescription_t70B03E24814E0475DA906045690FBE5010F28C75 * value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// System.Globalization.CultureInfo[]
|
|
struct CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31 : public RuntimeArray
|
|
{
|
|
public:
|
|
ALIGN_FIELD (8) CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * m_Items[1];
|
|
|
|
public:
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// System.Reflection.ParameterModifier[]
|
|
struct ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA : public RuntimeArray
|
|
{
|
|
public:
|
|
ALIGN_FIELD (8) ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E m_Items[1];
|
|
|
|
public:
|
|
inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E * GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____byRef_0), (void*)NULL);
|
|
}
|
|
inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E * GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____byRef_0), (void*)NULL);
|
|
}
|
|
};
|
|
// System.ComponentModel.PropertyDescriptor[]
|
|
struct PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F : public RuntimeArray
|
|
{
|
|
public:
|
|
ALIGN_FIELD (8) PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * m_Items[1];
|
|
|
|
public:
|
|
inline PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D ** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D ** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method);
|
|
// System.Void System.Collections.Generic.List`1<System.Object>::Add(!0)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, RuntimeObject * ___item0, const RuntimeMethod* method);
|
|
// !0[] System.Collections.Generic.List`1<System.Object>::ToArray()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* List_1_ToArray_m801D4DEF3587F60F463F04EEABE5CBE711FE5612_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method);
|
|
// System.Int32 System.Array::IndexOf<System.Object>(!!0[],!!0,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisRuntimeObject_mAA3A139827BE306C01514EBF4F21041FC2285EAF_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method);
|
|
// !0 System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___index0, const RuntimeMethod* method);
|
|
// System.Void System.Collections.Generic.List`1<System.Int32>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mA7F9F92F641CEECFD9D8CFDC667568A05FFD27B4_gshared (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * __this, const RuntimeMethod* method);
|
|
// System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<System.Object>::GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD List_1_GetEnumerator_m52CC760E475D226A2B75048D70C4E22692F9F68D_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method);
|
|
// !0 System.Collections.Generic.List`1/Enumerator<System.Object>::get_Current()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mD7829C7E8CFBEDD463B15A951CDE9B90A12CC55C_gshared_inline (Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD * __this, const RuntimeMethod* method);
|
|
// System.Void System.Collections.Generic.List`1<System.Int32>::Add(!0)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_m50C0D1F69B2EF31137658E2F052EBBAC7BF82771_gshared (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * __this, int32_t ___item0, const RuntimeMethod* method);
|
|
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNext()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m38B1099DDAD7EEDE2F4CDAB11C095AC784AC2E34_gshared (Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD * __this, const RuntimeMethod* method);
|
|
// System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m94D0DAE031619503CDA6E53C5C3CC78AF3139472_gshared (Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD * __this, const RuntimeMethod* method);
|
|
|
|
// System.Void System.ComponentModel.TypeDescriptionProvider::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptionProvider__ctor_m9A35B40DE4D4CCB86B72BD3BABF375982DB32912 (TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * __this, const RuntimeMethod* method);
|
|
// System.ComponentModel.TypeDescriptionProvider System.ComponentModel.TypeDescriptor::GetProviderRecursive(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * TypeDescriptor_GetProviderRecursive_mFA9FD212A625262784E9B1B05D3B82564B393877 (Type_t * ___type0, const RuntimeMethod* method);
|
|
// System.ComponentModel.TypeDescriptionProvider System.ComponentModel.DelegatingTypeDescriptionProvider::get_Provider()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * DelegatingTypeDescriptionProvider_get_Provider_mA048A519047ACF1FB8AB8604AC985038883688E7 (DelegatingTypeDescriptionProvider_t1479D886AEC7B0D4A74E19212E904337D5505A56 * __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.DescriptionAttribute::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DescriptionAttribute__ctor_m5964EBBE5F72FC3B765F2657E0C7A6A9EF1DF2C5 (DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75 * __this, String_t* ___description0, const RuntimeMethod* method);
|
|
// System.Void System.Attribute::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0 (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * __this, const RuntimeMethod* method);
|
|
// System.String System.ComponentModel.DescriptionAttribute::get_DescriptionValue()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* DescriptionAttribute_get_DescriptionValue_mD892D328BECCFE526144A4B778DCC2B4BC8D45CD_inline (DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75 * __this, const RuntimeMethod* method);
|
|
// System.Boolean System.String::op_Equality(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.DescriptionAttribute::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DescriptionAttribute__ctor_m4813112E0C52509AA577C0A9A27A8C1D596CFF4E (DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75 * __this, const RuntimeMethod* method);
|
|
// System.Void System.Runtime.InteropServices.ExternalException::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExternalException__ctor_m39DE380F29DC9851D280AB5D0E8F1F6254B1645A (ExternalException_t68841FD169C0CB00CC950EDA7E2A59540D65B1CE * __this, const RuntimeMethod* method);
|
|
// System.Void System.Runtime.InteropServices.ExternalException::.ctor(System.String,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExternalException__ctor_m232D22DAF4799CA71B8567B51E7A01B3E492ED8E (ExternalException_t68841FD169C0CB00CC950EDA7E2A59540D65B1CE * __this, String_t* ___message0, int32_t ___errorCode1, const RuntimeMethod* method);
|
|
// System.Void System.Runtime.InteropServices.ExternalException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExternalException__ctor_mFEC5FB15E763D381775B80255162202A3F961FCC (ExternalException_t68841FD169C0CB00CC950EDA7E2A59540D65B1CE * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
|
|
// System.String SR::GetString(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7 (String_t* ___name0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.Design.CheckoutException::.ctor(System.String,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CheckoutException__ctor_mBC5CAF08178375CE5A5E0E743F162EB7ABECCD2D (CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * __this, String_t* ___message0, int32_t ___errorCode1, const RuntimeMethod* method);
|
|
// System.Void System.Collections.Hashtable::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.LicenseContext::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseContext__ctor_mAB5FAA290C59283C695E6D1E55E479BC7435AB51 (LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * __this, const RuntimeMethod* method);
|
|
// System.Void System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryFormatter__ctor_mEA8ADD359BFAC7D9E9B6183FDC1C5C80E0F29806 (BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0 * __this, const RuntimeMethod* method);
|
|
// System.Void System.Uri::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_mBA69907A1D799CD12ED44B611985B25FE4C626A2 (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, String_t* ___uriString0, const RuntimeMethod* method);
|
|
// System.String System.Uri::get_LocalPath()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_LocalPath_mA82E33D3A3CC238669E0CE3B7AD298AA9C8695D0 (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, const RuntimeMethod* method);
|
|
// System.String System.Uri::get_Fragment()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_Fragment_m111666DD668AC59B9F3C3D3CEEEC7F70F6904D41 (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, const RuntimeMethod* method);
|
|
// System.String System.String::Concat(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method);
|
|
// System.Boolean System.Reflection.Assembly::op_Equality(System.Reflection.Assembly,System.Reflection.Assembly)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Assembly_op_Equality_m4B6A318CE4104781ABF30A2BBBCCCFB0FE342316 (Assembly_t * ___left0, Assembly_t * ___right1, const RuntimeMethod* method);
|
|
// System.AppDomain System.AppDomain::get_CurrentDomain()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * AppDomain_get_CurrentDomain_m3D3D52C9382D6853E49551DA6182DBC5F1118BF0 (const RuntimeMethod* method);
|
|
// System.AppDomainSetup System.AppDomain::get_SetupInformation()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * AppDomain_get_SetupInformation_m0D54A56359F4CB4EB20A40B9C8212C67000D9BB8 (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, const RuntimeMethod* method);
|
|
// System.String System.AppDomainSetup::get_LicenseFile()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* AppDomainSetup_get_LicenseFile_mF15AC0328CB9C99BB56183BE934B0CB208066C18_inline (AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * __this, const RuntimeMethod* method);
|
|
// System.String System.AppDomainSetup::get_ApplicationBase()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AppDomainSetup_get_ApplicationBase_mF644882409BB7CAF59E481600E02733D5CF5C578 (AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * __this, const RuntimeMethod* method);
|
|
// System.Void System.Uri::.ctor(System.Uri,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m41A759BF295FB902084DD289849793E01A65A14E (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * ___baseUri0, String_t* ___relativeUri1, const RuntimeMethod* method);
|
|
// System.Boolean System.Uri::op_Equality(System.Uri,System.Uri)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_op_Equality_mFED3D4AFAB090B76D2088C485507F8F702ADA18F (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * ___uri10, Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * ___uri21, const RuntimeMethod* method);
|
|
// System.Reflection.Assembly System.Reflection.Assembly::GetEntryAssembly()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Assembly_t * Assembly_GetEntryAssembly_m772FBF677135DBA699343463186D78589751C319 (const RuntimeMethod* method);
|
|
// System.Reflection.Assembly[] System.AppDomain::GetAssemblies()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AssemblyU5BU5D_t90BF014AA048450526A42C74F9583341A138DE58* AppDomain_GetAssemblies_mF1A63ADFC80562168DF846017BB72CAB09298A23 (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, const RuntimeMethod* method);
|
|
// System.String System.ComponentModel.Design.RuntimeLicenseContext::GetLocalPath(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RuntimeLicenseContext_GetLocalPath_mE9FE2C16545D4E437A8D3CAA6D8D20F995D3E972 (RuntimeLicenseContext_t1367392EED5E28C90B5128BF01CA0B846120C641 * __this, String_t* ___fileName0, const RuntimeMethod* method);
|
|
// System.Void System.IO.FileInfo::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileInfo__ctor_m77D19A494A542C924C36FDD8AE5CDBEA97CE68B8 (FileInfo_tF8C1D41E1ABDAC19BF4F76A491DD28DD8DBEE35C * __this, String_t* ___fileName0, const RuntimeMethod* method);
|
|
// System.IO.Stream System.ComponentModel.Design.RuntimeLicenseContext::CaseInsensitiveManifestResourceStreamLookup(System.Reflection.Assembly,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * RuntimeLicenseContext_CaseInsensitiveManifestResourceStreamLookup_mE5D3133B975E0F2927C890DA7CBECD6A84D9C60D (RuntimeLicenseContext_t1367392EED5E28C90B5128BF01CA0B846120C641 * __this, Assembly_t * ___satellite0, String_t* ___name1, const RuntimeMethod* method);
|
|
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72 (const RuntimeMethod* method);
|
|
// System.String System.String::ToUpper(System.Globalization.CultureInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToUpper_m8C69D974350ABA8BA0BC3A66996004CCEFD64293 (String_t* __this, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.Design.DesigntimeLicenseContextSerializer::Deserialize(System.IO.Stream,System.String,System.ComponentModel.Design.RuntimeLicenseContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DesigntimeLicenseContextSerializer_Deserialize_m0B4A6B7AA6D2E9E30670A8EDF545C79420FE7DE0 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___o0, String_t* ___cryptoKey1, RuntimeLicenseContext_t1367392EED5E28C90B5128BF01CA0B846120C641 * ___context2, const RuntimeMethod* method);
|
|
// System.String System.IO.Path::GetFileName(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Path_GetFileName_m2307E8E0B250632002840D9EC27DBABE9C4EB85E (String_t* ___path0, const RuntimeMethod* method);
|
|
// System.String System.Reflection.AssemblyName::get_Name()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* AssemblyName_get_Name_m6EA5C18D2FF050D3AF58D4A21ED39D161DFF218B_inline (AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * __this, const RuntimeMethod* method);
|
|
// System.Boolean System.Uri::op_Inequality(System.Uri,System.Uri)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_op_Inequality_m07015206F59460E87CDE2A8D303D5712E30A7F6B (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * ___uri10, Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * ___uri21, const RuntimeMethod* method);
|
|
// System.IO.Stream System.ComponentModel.Design.RuntimeLicenseContext::OpenRead(System.Uri)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * RuntimeLicenseContext_OpenRead_mCE557ABB1B8D5358ED3FA35B11CCD8A181CEA5F0 (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * ___resourceUri0, const RuntimeMethod* method);
|
|
// System.String[] System.Uri::get_Segments()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* Uri_get_Segments_m8DC51AEEA9E2094C435896F4328A963927426AE2 (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, const RuntimeMethod* method);
|
|
// System.Int32 System.String::LastIndexOf(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_LastIndexOf_mC924D20DC71F85A7106D9DD09BF41497C6816E20 (String_t* __this, String_t* ___value0, const RuntimeMethod* method);
|
|
// System.String System.String::Substring(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB (String_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method);
|
|
// System.Void System.Net.WebClient::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebClient__ctor_mCF3ACBA3EA11A7EF963B976A0A504B1911B0249E (WebClient_t0BFD938623FF98FA7EEE0031AB9E8293DD295F6A * __this, const RuntimeMethod* method);
|
|
// System.Net.ICredentials System.Net.CredentialCache::get_DefaultCredentials()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject* CredentialCache_get_DefaultCredentials_m669684689D1F69432F33D9B1E0ECF53080BB8CDC_inline (const RuntimeMethod* method);
|
|
// System.Void System.Net.WebClient::set_Credentials(System.Net.ICredentials)
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void WebClient_set_Credentials_mDF72650CD17893531D179F0BF2EBC33005CDF1C7_inline (WebClient_t0BFD938623FF98FA7EEE0031AB9E8293DD295F6A * __this, RuntimeObject* ___value0, const RuntimeMethod* method);
|
|
// System.IO.Stream System.Net.WebClient::OpenRead(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * WebClient_OpenRead_m3FFE890B8B6F2F5C234F074A386282C9A03C0C06 (WebClient_t0BFD938623FF98FA7EEE0031AB9E8293DD295F6A * __this, String_t* ___address0, const RuntimeMethod* method);
|
|
// System.Void System.Diagnostics.TraceSwitch::.ctor(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceSwitch__ctor_mDBA48A8FB03E3CED698799144535B99F84D81008 (TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8 * __this, String_t* ___displayName0, String_t* ___description1, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.Design.Serialization.InstanceDescriptor::.ctor(System.Reflection.MemberInfo,System.Collections.ICollection,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InstanceDescriptor__ctor_m47D0A6167384EA496F0734E951DECD7EE576CAC4 (InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6 * __this, MemberInfo_t * ___member0, RuntimeObject* ___arguments1, bool ___isComplete2, const RuntimeMethod* method);
|
|
// System.Void System.Object::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0 (RuntimeObject * __this, const RuntimeMethod* method);
|
|
// System.Boolean System.Reflection.FieldInfo::get_IsStatic()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FieldInfo_get_IsStatic_mDEB4099D238E5846246F0ACED3FF9AD9C93D8ECA (FieldInfo_t * __this, const RuntimeMethod* method);
|
|
// System.Void System.ArgumentException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, const RuntimeMethod* method);
|
|
// System.Boolean System.Reflection.MethodBase::get_IsStatic()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodBase_get_IsStatic_m745A9BDA4869DB7CC4886436C52D34855C1270A5 (MethodBase_t * __this, const RuntimeMethod* method);
|
|
// System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetGetMethod()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * PropertyInfo_GetGetMethod_m90BA90BA1CAFEE1CC273BB8B3BD289890373CB8A (PropertyInfo_t * __this, const RuntimeMethod* method);
|
|
// System.Boolean System.Reflection.MethodInfo::op_Inequality(System.Reflection.MethodInfo,System.Reflection.MethodInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237 (MethodInfo_t * ___left0, MethodInfo_t * ___right1, const RuntimeMethod* method);
|
|
// System.Object System.ComponentModel.Design.Serialization.InstanceDescriptor::Invoke()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InstanceDescriptor_Invoke_mFA1E52E0F4971ABC4432D30F7CF80304272355C0 (InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6 * __this, const RuntimeMethod* method);
|
|
// System.Object System.Reflection.ConstructorInfo::Invoke(System.Object[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ConstructorInfo_Invoke_m9E7A03EC2DDACA7A9C1E1609D4AB2BE90CD2E2AF (ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___parameters0, const RuntimeMethod* method);
|
|
// System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Object[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MethodBase_Invoke_m471794D56262D9DB5B5A324883030AB16BD39674 (MethodBase_t * __this, RuntimeObject * ___obj0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___parameters1, const RuntimeMethod* method);
|
|
// System.Int32 System.String::IndexOf(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m2909B8CF585E1BD0C81E11ACA2F48012156FD5BD (String_t* __this, Il2CppChar ___value0, const RuntimeMethod* method);
|
|
// System.Type System.Object::GetType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60 (RuntimeObject * __this, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.DesignOnlyAttribute::get_IsDesignOnly()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool DesignOnlyAttribute_get_IsDesignOnly_m68CBE6C4AD7154EE82ECD431849BA377756874CF_inline (DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * __this, const RuntimeMethod* method);
|
|
// System.Int32 System.Boolean::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_GetHashCode_m92C426D44100ED098FEECC96A743C3CB92DFF737 (bool* __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.DesignOnlyAttribute::.ctor(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DesignOnlyAttribute__ctor_mEBDD48E0B85C8D87398601C52C8FFFD17CB39415 (DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * __this, bool ___isDesignOnly0, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.DesignTimeVisibleAttribute::get_Visible()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool DesignTimeVisibleAttribute_get_Visible_m2C77A86E094E7B13E0D02EE77FE7AACC8C61A9BA_inline (DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 * __this, const RuntimeMethod* method);
|
|
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6 (RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ___handle0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.DesignTimeVisibleAttribute::.ctor(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DesignTimeVisibleAttribute__ctor_m970A7BE0AA7704791B8F16705CD9011A9BDDD098 (DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 * __this, bool ___visible0, const RuntimeMethod* method);
|
|
// System.String System.ComponentModel.DesignerCategoryAttribute::get_Category()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* DesignerCategoryAttribute_get_Category_mDCB2D0B9A4F5FAD33260300979D52A4A9EC1C80D_inline (DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA * __this, const RuntimeMethod* method);
|
|
// System.Boolean System.String::Equals(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1 (String_t* __this, String_t* ___value0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.DesignerCategoryAttribute::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DesignerCategoryAttribute__ctor_m4699FB87C02E6D4B8E417C462B5BB6F76E0EC694 (DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA * __this, String_t* ___category0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.DesignerCategoryAttribute::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DesignerCategoryAttribute__ctor_mF489EBD57068DA5F3FE4DCA8300CB5A78CF34CE0 (DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA * __this, const RuntimeMethod* method);
|
|
// System.ComponentModel.DesignerSerializationVisibility System.ComponentModel.DesignerSerializationVisibilityAttribute::get_Visibility()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t DesignerSerializationVisibilityAttribute_get_Visibility_mAE359C5749C4000C2A382C64B1DCFC3AC4B2FFC5_inline (DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * __this, const RuntimeMethod* method);
|
|
// System.Int32 System.Attribute::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.DesignerSerializationVisibilityAttribute::.ctor(System.ComponentModel.DesignerSerializationVisibility)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DesignerSerializationVisibilityAttribute__ctor_m5DCCCF10B65CB984ACAA2C821CD59E0A5591CC91 (DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * __this, int32_t ___visibility0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.DisplayNameAttribute::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DisplayNameAttribute__ctor_m3D4B66E435734FFA29B405B346956880AD44AF5B (DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE * __this, String_t* ___displayName0, const RuntimeMethod* method);
|
|
// System.String System.ComponentModel.DisplayNameAttribute::get_DisplayNameValue()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* DisplayNameAttribute_get_DisplayNameValue_m6A75B8CBDD8F55609180D19E79E74BF7656F9163_inline (DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE * __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.DisplayNameAttribute::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DisplayNameAttribute__ctor_mCA2BCC655453F00B75B3E6E072777304FA3599A9 (DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE * __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.CancelEventArgs::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancelEventArgs__ctor_m117DC81FF8BAEBB33345EF3C8444D94E15F78B0C (CancelEventArgs_t2843141F2893A01C11535CD7E38072CA26D7794D * __this, const RuntimeMethod* method);
|
|
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_CurrentCulture()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831 (const RuntimeMethod* method);
|
|
// System.Double System.Convert::ToDouble(System.String,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m8EAF69AB183D6DF604898A3EDE5A27A4AFBFF1D8 (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method);
|
|
// System.Double System.Double::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Double_Parse_m52FA2C773282C04605DA871AC7093A66FA8A746B (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method);
|
|
// System.Double System.Double::Parse(System.String,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Double_Parse_m598B75F6A7C50F719F439CF354BDDD22B9AF8C67 (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method);
|
|
// System.String System.Double::ToString(System.String,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Double_ToString_m1D341E667E85E9E18783A14CB02982643E96C616 (double* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.BaseNumberConverter::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseNumberConverter__ctor_mD78E1C7E1F8A977BC7AD33DB0C1E5E32C60E8E83 (BaseNumberConverter_t6AF36A2503E7BABF7FB9A8EC05DF8B828491AC63 * __this, const RuntimeMethod* method);
|
|
// System.String System.String::ToUpperInvariant()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToUpperInvariant_m0AA42416F4CACA4D0E3B89D97E534D88AB136338 (String_t* __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.EditorBrowsableAttribute::.ctor(System.ComponentModel.EditorBrowsableState)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EditorBrowsableAttribute__ctor_mACDE45DF0DCAA6E923120D6AEC45422AEF958C2E (EditorBrowsableAttribute_tF3507DF0AB82A8D54C70D6F7FB4D363DF729D516 * __this, int32_t ___state0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.TypeConverter::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeConverter__ctor_m7F8A006E775CCB83A8ACB042B296E48B0AE501CD (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, const RuntimeMethod* method);
|
|
// System.Boolean System.Type::op_Equality(System.Type,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.TypeConverter::CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverter_CanConvertFrom_m8E1F9E41B7DEE6A032EAC70130ADC6356C3F227D (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, Type_t * ___sourceType1, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.TypeConverter::CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverter_CanConvertTo_m1CD3397D9E5717DE72A13B28C0A75D997A9F337D (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, Type_t * ___destinationType1, const RuntimeMethod* method);
|
|
// System.String[] System.String::Split(System.Char[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* String_Split_m13262358217AD2C119FD1B9733C3C0289D608512 (String_t* __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___separator0, const RuntimeMethod* method);
|
|
// System.Object System.Enum::Parse(System.Type,System.String,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_Parse_mC51A0BD680AC2D2152A541E2A8475DB61A83A6E7 (Type_t * ___enumType0, String_t* ___value1, bool ___ignoreCase2, const RuntimeMethod* method);
|
|
// System.Int64 System.Convert::ToInt64(System.Object,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m8964FDE5D82FEC54106DBF35E1F67D70F6E73E29 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method);
|
|
// System.Object System.Enum::ToObject(System.Type,System.Int64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mE84F27DFCF3F22A1053968A9DCE6C0D14D25B7E2 (Type_t * ___enumType0, int64_t ___value1, const RuntimeMethod* method);
|
|
// System.String SR::GetString(System.String,System.Object[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetString_m9548BD6DD52DFDB46372F211078AE57FA2401E39 (String_t* ___name0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args1, const RuntimeMethod* method);
|
|
// System.Void System.FormatException::.ctor(System.String,System.Exception)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_m4DC702D2EF54A4AD4F704A7217680A4897292DE8 (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method);
|
|
// System.Object System.ComponentModel.TypeConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TypeConverter_ConvertFrom_mD5AE49E422520F6E07B3C0D6202788E49B4698A3 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, RuntimeObject * ___value2, const RuntimeMethod* method);
|
|
// System.Void System.ArgumentNullException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, const RuntimeMethod* method);
|
|
// System.Type System.Enum::GetUnderlyingType(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1 (Type_t * ___enumType0, const RuntimeMethod* method);
|
|
// System.Boolean System.Type::op_Inequality(System.Type,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method);
|
|
// System.Boolean System.Enum::IsDefined(System.Type,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enum_IsDefined_mA573B15329CA2AA7C59367D514D2927FC66217E2 (Type_t * ___enumType0, RuntimeObject * ___value1, const RuntimeMethod* method);
|
|
// System.String System.Enum::Format(System.Type,System.Object,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_Format_m57012EA1132AC3A3A82F9032137D5E252924595B (Type_t * ___enumType0, RuntimeObject * ___value1, String_t* ___format2, const RuntimeMethod* method);
|
|
// System.String System.ComponentModel.TypeConverter::ConvertToInvariantString(System.ComponentModel.ITypeDescriptorContext,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeConverter_ConvertToInvariantString_m382F27F2262271AB0775D6FA6F413D24BEA28808 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, RuntimeObject * ___value1, const RuntimeMethod* method);
|
|
// System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Type[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Type_GetMethod_m54E1EF62AFF44AA621E074D123C5C0B3E73A7DD5 (Type_t * __this, String_t* ___name0, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___types1, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.Design.Serialization.InstanceDescriptor::.ctor(System.Reflection.MemberInfo,System.Collections.ICollection)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InstanceDescriptor__ctor_m90DA8CABB01052EA5C5022E14FE50533254C71DD (InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6 * __this, MemberInfo_t * ___member0, RuntimeObject* ___arguments1, const RuntimeMethod* method);
|
|
// System.Reflection.FieldInfo System.Type::GetField(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FieldInfo_t * Type_GetField_m564F7686385A6EA8C30F81C939250D5010DC0CA5 (Type_t * __this, String_t* ___name0, const RuntimeMethod* method);
|
|
// System.Boolean System.Reflection.FieldInfo::op_Inequality(System.Reflection.FieldInfo,System.Reflection.FieldInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FieldInfo_op_Inequality_mB88B704E9238C7A9FD42274FCFEFA7CFABBF16EE (FieldInfo_t * ___left0, FieldInfo_t * ___right1, const RuntimeMethod* method);
|
|
// System.Void System.Collections.Generic.List`1<System.Enum>::.ctor()
|
|
inline void List_1__ctor_mEDCB84C238744496A7F479DB6ABCA4D23AAC5542 (List_1_t0A40881AA73F2F363AD72BF7C074350FD9178030 * __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t0A40881AA73F2F363AD72BF7C074350FD9178030 *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method);
|
|
}
|
|
// System.Array System.Enum::GetValues(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Enum_GetValues_m20F5C0B826344A499B1C23BB7A3B532017F0F30C (Type_t * ___enumType0, const RuntimeMethod* method);
|
|
// System.Int32 System.Array::get_Length()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D (RuntimeArray * __this, const RuntimeMethod* method);
|
|
// System.Object System.Array::GetValue(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544 (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method);
|
|
// System.Void System.Collections.Generic.List`1<System.Enum>::Add(!0)
|
|
inline void List_1_Add_m06F8974F98146F609320A5E454D4F78A89DB8770 (List_1_t0A40881AA73F2F363AD72BF7C074350FD9178030 * __this, Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 * ___item0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t0A40881AA73F2F363AD72BF7C074350FD9178030 *, Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method);
|
|
}
|
|
// !0[] System.Collections.Generic.List`1<System.Enum>::ToArray()
|
|
inline EnumU5BU5D_t89BCD01877A8CDBF7729DE77C6185E8DC1432BCA* List_1_ToArray_m053CEABF5E110E006609B778AB5547C8EE6B14F4 (List_1_t0A40881AA73F2F363AD72BF7C074350FD9178030 * __this, const RuntimeMethod* method)
|
|
{
|
|
return (( EnumU5BU5D_t89BCD01877A8CDBF7729DE77C6185E8DC1432BCA* (*) (List_1_t0A40881AA73F2F363AD72BF7C074350FD9178030 *, const RuntimeMethod*))List_1_ToArray_m801D4DEF3587F60F463F04EEABE5CBE711FE5612_gshared)(__this, method);
|
|
}
|
|
// System.Object System.Enum::ToObject(System.Type,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mED18F2B01F4BA412C1882396CE977411BB54165D (Type_t * ___enumType0, RuntimeObject * ___value1, const RuntimeMethod* method);
|
|
// System.Object System.ComponentModel.TypeConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TypeConverter_ConvertTo_mFC7AA7F0A382607E75CCE820A705B5965D099AAC (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, RuntimeObject * ___value2, Type_t * ___destinationType3, const RuntimeMethod* method);
|
|
// System.Type System.ComponentModel.TypeDescriptor::GetReflectionType(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * TypeDescriptor_GetReflectionType_mB28D64FBA294D618334381A77DAE790811611C3D (Type_t * ___type0, const RuntimeMethod* method);
|
|
// System.Void System.Collections.ArrayList::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList__ctor_m0EEFF564D3B55439C82DC958952CCC98C47ABF4C (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, int32_t ___capacity0, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.BrowsableAttribute::get_Browsable()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool BrowsableAttribute_get_Browsable_m84931BFF3F51CB9F14D7B1D7548B796FE2DBB8D2_inline (BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 * __this, const RuntimeMethod* method);
|
|
// System.Object System.Enum::Parse(System.Type,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_Parse_m8677C5E01F1258902058D844824B93F7836BF4C3 (Type_t * ___enumType0, String_t* ___value1, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.TypeConverter/StandardValuesCollection::.ctor(System.Collections.ICollection)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandardValuesCollection__ctor_m75578979BC0D77C0D622E4C9D7C1CB1E047615C1 (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * __this, RuntimeObject* ___values0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.MemberDescriptor::.ctor(System.String,System.Attribute[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberDescriptor__ctor_m7DA97C2FCA1C99D7D7B31A89A908219E4A48DE7B (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * __this, String_t* ___name0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes1, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.MemberDescriptor::.ctor(System.ComponentModel.MemberDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberDescriptor__ctor_mFD23579925A3F34CB985856C22D3CD13BB49D41B (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * __this, MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * ___descr0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.MemberDescriptor::.ctor(System.ComponentModel.MemberDescriptor,System.Attribute[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberDescriptor__ctor_mDDA60D0BB2448D6607AB2F2C353A8C30CFABE0A3 (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * __this, MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * ___oldMemberDescriptor0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___newAttributes1, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.EventDescriptorCollection::.ctor(System.ComponentModel.EventDescriptor[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptorCollection__ctor_m39980AB8EA7F2F7B480F18E4EC36796C1A259CD7 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* ___events0, const RuntimeMethod* method);
|
|
// System.Object System.Array::Clone()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176 (RuntimeArray * __this, const RuntimeMethod* method);
|
|
// System.Void System.IndexOutOfRangeException::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IndexOutOfRangeException__ctor_m17448AB4B27BC9D8AEB4605CDB0EA053626ABEC1 (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.EventDescriptorCollection::EnsureEventsOwned()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptorCollection_EnsureEventsOwned_mF1722C2F3574DFE39C8509B62BA0013A68A1C8FB (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, const RuntimeMethod* method);
|
|
// System.Void System.NotSupportedException::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33 (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.EventDescriptorCollection::EnsureSize(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptorCollection_EnsureSize_m025A1E96DE65403C6BB70BB95F9098E6572EF191 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, int32_t ___sizeNeeded0, const RuntimeMethod* method);
|
|
// System.Int32 System.ComponentModel.EventDescriptorCollection::IndexOf(System.ComponentModel.EventDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EventDescriptorCollection_IndexOf_m2F0D99D9E5885CC7DB6133839635E9C806F6A385 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * ___value0, const RuntimeMethod* method);
|
|
// System.Int32 System.ComponentModel.EventDescriptorCollection::get_Count()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventDescriptorCollection_get_Count_mCAA673C0D2447E4823B34AE97D61BBC999A3E6BC_inline (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, const RuntimeMethod* method);
|
|
// System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6 (RuntimeArray * ___sourceArray0, int32_t ___sourceIndex1, RuntimeArray * ___destinationArray2, int32_t ___destinationIndex3, int32_t ___length4, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.EventDescriptorCollection::InternalSort(System.String[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptorCollection_InternalSort_mFC9324E5B172C969B8930B47ABE42FF8C2FEEC72 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___names0, const RuntimeMethod* method);
|
|
// System.Int32 System.Math::Max(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Max_mA99E48BB021F2E4B62D4EA9F52EA6928EED618A2 (int32_t ___val10, int32_t ___val21, const RuntimeMethod* method);
|
|
// System.Boolean System.String::Equals(System.String,System.String,System.StringComparison)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_m1A3302D7214F75FB06302101934BF3EE9282AA43 (String_t* ___a0, String_t* ___b1, int32_t ___comparisonType2, const RuntimeMethod* method);
|
|
// System.Int32 System.Array::IndexOf<System.ComponentModel.EventDescriptor>(!!0[],!!0,System.Int32,System.Int32)
|
|
inline int32_t Array_IndexOf_TisEventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222_m0E7AA94FB6DD5B8865347D3C3E259BE6A3ABA6D8 (EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* ___array0, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 *, int32_t, int32_t, const RuntimeMethod*))Array_IndexOf_TisRuntimeObject_mAA3A139827BE306C01514EBF4F21041FC2285EAF_gshared)(___array0, ___value1, ___startIndex2, ___count3, method);
|
|
}
|
|
// System.Void System.ComponentModel.EventDescriptorCollection::RemoveAt(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptorCollection_RemoveAt_m3124EA86A586B8FE157E6D6F594E3DCA0752D6D1 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, int32_t ___index0, const RuntimeMethod* method);
|
|
// System.Collections.IEnumerator System.Array::GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Array_GetEnumerator_m3BD9ACCA9512DA3687C8369BF999BA2916F0EA15 (RuntimeArray * __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.ArraySubsetEnumerator::.ctor(System.Array,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySubsetEnumerator__ctor_m39C3859EB2625F6E584E35FDB1950B5E8407761C (ArraySubsetEnumerator_tA39E27E02B80287A51F09D2875F1A3AF86768BDA * __this, RuntimeArray * ___array0, int32_t ___count1, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.EventDescriptorCollection::.ctor(System.ComponentModel.EventDescriptor[],System.Int32,System.String[],System.Collections.IComparer)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptorCollection__ctor_m855A2D527708065CD2E181EBF15A7C743AB6FAC1 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* ___events0, int32_t ___eventCount1, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___namedSort2, RuntimeObject* ___comparer3, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.EventDescriptorCollection::InternalSort(System.Collections.IComparer)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptorCollection_InternalSort_mAF3920AA7607A00C1B327539E007F9BBCD2FF13F (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, RuntimeObject* ___sorter0, const RuntimeMethod* method);
|
|
// System.Void System.Collections.ArrayList::.ctor(System.Collections.ICollection)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList__ctor_m5BD62A8348AB3A2F573860E81A181B5376AF8FA1 (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, RuntimeObject* ___c0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.TypeDescriptor::SortDescriptorArray(System.Collections.IList)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeDescriptor_SortDescriptorArray_mF1BF8FDE18108198B6E5CF6B31909A7F544F649C (RuntimeObject* ___infos0, const RuntimeMethod* method);
|
|
// System.Void System.Array::Sort(System.Array,System.Collections.IComparer)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_mF1CCD5D84D8D9EF9872FAB34A474119942AD495A (RuntimeArray * ___array0, RuntimeObject* ___comparer1, const RuntimeMethod* method);
|
|
// System.Collections.IEnumerator System.ComponentModel.EventDescriptorCollection::GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* EventDescriptorCollection_GetEnumerator_mEC07212EAD84EF5CD1DB03CFF3773669A030342F (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, const RuntimeMethod* method);
|
|
// System.Int32 System.ComponentModel.EventDescriptorCollection::Add(System.ComponentModel.EventDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EventDescriptorCollection_Add_mC05DAE99E5D1B041F5755F71E6A2E114640F9779 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * ___value0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.EventDescriptorCollection::Clear()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptorCollection_Clear_m72C4D0C9B92F9055A62EE6D86D9F3E86264405B5 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.EventDescriptorCollection::Contains(System.ComponentModel.EventDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventDescriptorCollection_Contains_mD58C927756864E91133BD59356756E96253D4416 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * ___value0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.EventDescriptorCollection::Insert(System.Int32,System.ComponentModel.EventDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptorCollection_Insert_mB3259BB95ADAA9B11B8A2171F5FAD03C52C40557 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, int32_t ___index0, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * ___value1, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.EventDescriptorCollection::Remove(System.ComponentModel.EventDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptorCollection_Remove_m9F6BF67636B9406EEFB0E3589F4EB3BAF625447E (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * ___value0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.EventDescriptorCollection::.ctor(System.ComponentModel.EventDescriptor[],System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptorCollection__ctor_mDC62048A9CCD9F4E5C2CE7BBEB7C995A60ACB0D5 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* ___events0, bool ___readOnly1, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.Component::get_CanRaiseEventsInternal()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Component_get_CanRaiseEventsInternal_mEB36254A3CA5E7A1BD31D1B9F13D93ACC295936F (Component_t7AEFE153F6778CF52E1981BC3E811A9604B29473 * __this, const RuntimeMethod* method);
|
|
// System.ComponentModel.EventHandlerList/ListEntry System.ComponentModel.EventHandlerList::Find(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * EventHandlerList_Find_m0D64F77486BF4EABD934BF04CE38EF6DB0450B42 (EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 * __this, RuntimeObject * ___key0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.EventHandlerList/ListEntry::.ctor(System.Object,System.Delegate,System.ComponentModel.EventHandlerList/ListEntry)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListEntry__ctor_m8FB0789AFD94BD817A59EB14EF2064A2F4270220 (ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * __this, RuntimeObject * ___key0, Delegate_t * ___handler1, ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * ___next2, const RuntimeMethod* method);
|
|
// System.Delegate System.Delegate::Combine(System.Delegate,System.Delegate)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * Delegate_Combine_mC25D2F7DECAFBA6D9A2F9EBA8A77063F0658ECF1 (Delegate_t * ___a0, Delegate_t * ___b1, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.EventHandlerList::AddHandler(System.Object,System.Delegate)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandlerList_AddHandler_m7C93C7AF6FD41E4C41E444CCEC0E46C9F3F01A09 (EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 * __this, RuntimeObject * ___key0, Delegate_t * ___value1, const RuntimeMethod* method);
|
|
// System.Delegate System.Delegate::Remove(System.Delegate,System.Delegate)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * Delegate_Remove_m0B0DB7D1B3AF96B71AFAA72BA0EFE32FBBC2932D (Delegate_t * ___source0, Delegate_t * ___value1, const RuntimeMethod* method);
|
|
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeDescriptor::GetProperties(System.Object,System.Attribute[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * TypeDescriptor_GetProperties_m05CFF294019C93C8ADC7433BB7D5D87F19DDE7FC (RuntimeObject * ___component0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes1, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.PropertyDescriptor::.ctor(System.ComponentModel.MemberDescriptor,System.Attribute[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptor__ctor_m8C1C276319F5C29A452F48C89B595334AB7E65B0 (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * ___descr0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attrs1, const RuntimeMethod* method);
|
|
// System.ComponentModel.ExtenderProvidedPropertyAttribute System.ComponentModel.ExtenderProvidedPropertyAttribute::Create(System.ComponentModel.PropertyDescriptor,System.Type,System.ComponentModel.IExtenderProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * ExtenderProvidedPropertyAttribute_Create_mB53BAA317F0E146F21F4508E51921C05459A756B (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___extenderProperty0, Type_t * ___receiverType1, RuntimeObject* ___provider2, const RuntimeMethod* method);
|
|
// System.ComponentModel.PropertyDescriptor System.ComponentModel.ExtenderProvidedPropertyAttribute::get_ExtenderProperty()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ExtenderProvidedPropertyAttribute_get_ExtenderProperty_mB56FFEF61D8278AFFA0FB91710E1A37795738E47_inline (ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * __this, const RuntimeMethod* method);
|
|
// System.ComponentModel.IExtenderProvider System.ComponentModel.ExtenderProvidedPropertyAttribute::get_Provider()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject* ExtenderProvidedPropertyAttribute_get_Provider_m54BFFEFF3AF82BD3F36AC3A1D473FAC53CF368C6_inline (ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * __this, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.ReflectPropertyDescriptor::ExtenderCanResetValue(System.ComponentModel.IExtenderProvider,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectPropertyDescriptor_ExtenderCanResetValue_mACFED798483AFF6BB779CF30C35D735A484B4DAB (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, RuntimeObject* ___provider0, RuntimeObject * ___component1, const RuntimeMethod* method);
|
|
// System.Type System.ComponentModel.ReflectPropertyDescriptor::ExtenderGetType(System.ComponentModel.IExtenderProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * ReflectPropertyDescriptor_ExtenderGetType_mD6042994CD9EFFCDE3177C09E58823CADA0CFBD7 (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.String System.ComponentModel.MemberDescriptor::get_DisplayName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MemberDescriptor_get_DisplayName_m985D97ED7EAEC1A7DA3524E50FB0CF9B3704B746 (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * __this, const RuntimeMethod* method);
|
|
// System.ComponentModel.ISite System.ComponentModel.MemberDescriptor::GetSite(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MemberDescriptor_GetSite_mCB20B3C6E8E9E4018655CB861FBC408F4468FFD6 (RuntimeObject * ___component0, const RuntimeMethod* method);
|
|
// System.Int32 System.String::get_Length()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline (String_t* __this, const RuntimeMethod* method);
|
|
// System.Object System.ComponentModel.ReflectPropertyDescriptor::ExtenderGetValue(System.ComponentModel.IExtenderProvider,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReflectPropertyDescriptor_ExtenderGetValue_m741FE4C60D34936C3505CE5E90DB426593C7F96F (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, RuntimeObject* ___provider0, RuntimeObject * ___component1, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.ReflectPropertyDescriptor::ExtenderResetValue(System.ComponentModel.IExtenderProvider,System.Object,System.ComponentModel.PropertyDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectPropertyDescriptor_ExtenderResetValue_mD615C4E5718D88643447EA1115D1B48460D2DA06 (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, RuntimeObject* ___provider0, RuntimeObject * ___component1, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___notifyDesc2, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.ReflectPropertyDescriptor::ExtenderSetValue(System.ComponentModel.IExtenderProvider,System.Object,System.Object,System.ComponentModel.PropertyDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReflectPropertyDescriptor_ExtenderSetValue_mC58759964687244DFA66A4330C48B8EC0BFA860E (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, RuntimeObject* ___provider0, RuntimeObject * ___component1, RuntimeObject * ___value2, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___notifyDesc3, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.ReflectPropertyDescriptor::ExtenderShouldSerializeValue(System.ComponentModel.IExtenderProvider,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectPropertyDescriptor_ExtenderShouldSerializeValue_mD2094CC76B452BFB3D7157B92FC88D1F3C016BE9 (ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * __this, RuntimeObject* ___provider0, RuntimeObject * ___component1, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.ExtenderProvidedPropertyAttribute::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExtenderProvidedPropertyAttribute__ctor_mED416479A8167DB724212857B8421BB4079D9F14 (ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * __this, const RuntimeMethod* method);
|
|
// System.String System.String::Trim()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D (String_t* __this, const RuntimeMethod* method);
|
|
// System.Void System.Guid::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Guid__ctor_mC668142577A40A77D13B78AADDEFFFC2E2705079 (Guid_t * __this, String_t* ___g0, const RuntimeMethod* method);
|
|
// System.Reflection.ConstructorInfo System.Type::GetConstructor(System.Type[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * Type_GetConstructor_m4371D7AD6A8E15067C698696B0167323CBC7F3DA (Type_t * __this, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___types0, const RuntimeMethod* method);
|
|
// System.Boolean System.Reflection.ConstructorInfo::op_Inequality(System.Reflection.ConstructorInfo,System.Reflection.ConstructorInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConstructorInfo_op_Inequality_m7BACC92FB27D1999A084F5346451CEE9FD0445E4 (ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * ___left0, ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * ___right1, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.HandledEventArgs::.ctor(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HandledEventArgs__ctor_m3B9A8B0FF620FC343E98B455D30C46B12239BA3A (HandledEventArgs_t26999700606DD7EC365648A50C9E3E15EFCAC2DF * __this, bool ___defaultHandledValue0, const RuntimeMethod* method);
|
|
// System.Void System.EventArgs::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7 (EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * __this, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.ImmutableObjectAttribute::get_Immutable()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool ImmutableObjectAttribute_get_Immutable_m3ABF9ED723E613F83942F47A4B2B3525430BD8A8_inline (ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 * __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.ImmutableObjectAttribute::.ctor(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImmutableObjectAttribute__ctor_m26C7DB2D34B3942D2B97EBA31E3171BED775C726 (ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 * __this, bool ___immutable0, const RuntimeMethod* method);
|
|
// System.ComponentModel.InheritanceLevel System.ComponentModel.InheritanceAttribute::get_InheritanceLevel()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t InheritanceAttribute_get_InheritanceLevel_mA90C9C95D4B7D9AE8F4713F91A0ED806D68B06CC_inline (InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 * __this, const RuntimeMethod* method);
|
|
// System.ComponentModel.TypeConverter System.ComponentModel.TypeDescriptor::GetConverter(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * TypeDescriptor_GetConverter_m30E075F6ED53FD85B7C1F7F44E58BA20645A68BA (Type_t * ___type0, const RuntimeMethod* method);
|
|
// System.String System.ComponentModel.TypeConverter::ConvertToString(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeConverter_ConvertToString_m2CBE8E127541982F2FB74F81D59AA62D097FD623 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject * ___value0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.InheritanceAttribute::.ctor(System.ComponentModel.InheritanceLevel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InheritanceAttribute__ctor_mCA254DAC0CC24E08736F8034929EE421975F29C4 (InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 * __this, int32_t ___inheritanceLevel0, const RuntimeMethod* method);
|
|
// System.Type System.Type::GetType(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetType_mCF0A3B28889C9FFB9987C8D30C23DF0912E7C00C (String_t* ___typeName0);
|
|
// System.Int16 System.Convert::ToInt16(System.String,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mE45C6C06FA6664B29F1C763C08CF4846A06B27D5 (String_t* ___value0, int32_t ___fromBase1, const RuntimeMethod* method);
|
|
// System.Int16 System.Int16::Parse(System.String,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Int16_Parse_m1BA1421C8060847322823397FAE590E371B0A92F (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method);
|
|
// System.Int16 System.Int16::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Int16_Parse_m8974BEBECCE6184E1A2CA312D637E40B731F49B2 (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method);
|
|
// System.String System.Int16::ToString(System.String,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int16_ToString_m9D8BFF89E90032C2A3332CF5831C38AFD2C9E31A (int16_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method);
|
|
// System.Int32 System.Convert::ToInt32(System.String,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m8DC81C7C49EE4A9334E71E45E3A220644E45B4F4 (String_t* ___value0, int32_t ___fromBase1, const RuntimeMethod* method);
|
|
// System.Int32 System.Int32::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_Parse_m17BA45CC13A0E08712F2EE60CC1356291D0592AC (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method);
|
|
// System.Int32 System.Int32::Parse(System.String,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_Parse_m9FD0A75E9C7A9BFC26070A60A420D77CD629CC58 (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method);
|
|
// System.String System.Int32::ToString(System.String,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_mE527694B0C55AE14FDCBE1D9C848446C18E22C09 (int32_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method);
|
|
// System.Int64 System.Convert::ToInt64(System.String,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m6E6AC604B6C67431B921B2B3CC577F2F0A70741C (String_t* ___value0, int32_t ___fromBase1, const RuntimeMethod* method);
|
|
// System.Int64 System.Int64::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Int64_Parse_m5113C0CCFB668DBC49D71D9F07CC8A96B8C7773D (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method);
|
|
// System.Int64 System.Int64::Parse(System.String,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Int64_Parse_m58A1CEB948FDC6C2ECCA27CA9D19CB904BF98FD4 (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method);
|
|
// System.String System.Int64::ToString(System.String,System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int64_ToString_mB73201579D1D4BC868EC9BC901B2812AC4B90517 (int64_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method);
|
|
// System.String System.IO.Path::GetFullPath(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Path_GetFullPath_m58677E6FFAFB7BB4A23011CE50F76487226EDE20 (String_t* ___path0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.InvalidAsynchronousStateException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidAsynchronousStateException__ctor_m023121E41FC7A6A4764C71690F9E7914E5A6F244 (InvalidAsynchronousStateException_t7DB1CEE45E73613ADBB359792244856600B5E5D7 * __this, String_t* ___message0, const RuntimeMethod* method);
|
|
// System.Void System.ArgumentException::.ctor(System.String,System.Exception)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m1BF85DCCECA37FCD88A0884AF3C4D03566911BF0 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method);
|
|
// System.Void System.ArgumentException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m33453ED48103C3A4893FBE06039DF7473FBAD7E6 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.InvalidEnumArgumentException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidEnumArgumentException__ctor_m184AA05A3020A39DE26104E0BBB6667B4A0A6D81 (InvalidEnumArgumentException_tCC80F4F8EF655A404E9D11895A6477AA3D210BB1 * __this, String_t* ___message0, const RuntimeMethod* method);
|
|
// System.String System.Int32::ToString(System.IFormatProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m1D0AF82BDAB5D4710527DD3FEFA6F01246D128A5 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
|
|
// System.Void System.ArgumentException::.ctor(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method);
|
|
// System.Boolean System.String::StartsWith(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWith_m7D468FB7C801D9C2DBEEEEC86F8BA8F4EC3243C1 (String_t* __this, String_t* ___value0, const RuntimeMethod* method);
|
|
// System.String System.String::Format(System.IFormatProvider,System.String,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m30892041DA5F50D7B8CFD82FFC0F55B5B97A2B7F (RuntimeObject* ___provider0, String_t* ___format1, RuntimeObject * ___arg02, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.LicFileLicenseProvider/LicFileLicense::.ctor(System.ComponentModel.LicFileLicenseProvider,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicFileLicense__ctor_mA3DCCF9DAAA00809C8F889B59AF1DEF77269C04B (LicFileLicense_t5AF4C870B7DF7EE91D6C0FA5DA1354763EF9E5FF * __this, LicFileLicenseProvider_t458B091F8501C2890FD617BB025AB49DC494076F * ___owner0, String_t* ___key1, const RuntimeMethod* method);
|
|
// System.String System.IO.Path::GetDirectoryName(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Path_GetDirectoryName_m61922AA6D7B48EACBA36FF41A1B28F506CFB8A97 (String_t* ___path0, const RuntimeMethod* method);
|
|
// System.String System.String::Concat(System.String,System.String,System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64 (String_t* ___str00, String_t* ___str11, String_t* ___str22, String_t* ___str33, const RuntimeMethod* method);
|
|
// System.Boolean System.IO.File::Exists(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool File_Exists_m6B9BDD8EEB33D744EB0590DD27BC0152FAFBD1FB (String_t* ___path0, const RuntimeMethod* method);
|
|
// System.Void System.IO.FileStream::.ctor(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileStream__ctor_mB254658F1E758D76B41C942CB91BDF38FD544C83 (FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 * __this, String_t* ___path0, int32_t ___mode1, int32_t ___access2, int32_t ___share3, const RuntimeMethod* method);
|
|
// System.Void System.IO.StreamReader::.ctor(System.IO.Stream)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader__ctor_m6AD25C8043D76E8E4BB14554D59A69035A1908EB (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.LicenseProvider::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseProvider__ctor_mC9C232F22F593BFFD6E17AFBDEE34F0248300C83 (LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596 * __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.License::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void License__ctor_m60C65CA65162567487747456D8A5E6DB3817400F (License_t9011453B97942387364692C7DFAD2DEDB2160F8C * __this, const RuntimeMethod* method);
|
|
// System.Void System.GC::SuppressFinalize(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425 (RuntimeObject * ___obj0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.LicenseException::.ctor(System.Type,System.Object,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseException__ctor_mCCB6A21E8D1D703F71B82A7D498991574AF22086 (LicenseException_t68C548BE94D4AD7F82C5AD5E710AC18F50F30F9D * __this, Type_t * ___type0, RuntimeObject * ___instance1, String_t* ___message2, const RuntimeMethod* method);
|
|
// System.Void System.SystemException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A (SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 * __this, String_t* ___message0, const RuntimeMethod* method);
|
|
// System.Void System.Exception::set_HResult(System.Int32)
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void Exception_set_HResult_m920DF8C728D8A0EC0759685FED890C775FA08B99_inline (Exception_t * __this, int32_t ___value0, const RuntimeMethod* method);
|
|
// System.Void System.SystemException::.ctor(System.String,System.Exception)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mA18D2EA5642C066F35CB8C965398F9A542C33B0A (SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method);
|
|
// System.Void System.SystemException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949 (SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
|
|
// System.Object System.Runtime.Serialization.SerializationInfo::GetValue(System.String,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, Type_t * ___type1, const RuntimeMethod* method);
|
|
// System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, RuntimeObject * ___value1, const RuntimeMethod* method);
|
|
// System.Void System.Exception::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_GetObjectData_m76F759ED00FA218FFC522C32626B851FDE849AD6 (Exception_t * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
|
|
// System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5 (RuntimeObject * ___obj0, bool* ___lockTaken1, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.Design.RuntimeLicenseContext::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeLicenseContext__ctor_m34027F15B8C84AF7AF0C124458FED83141B480F2 (RuntimeLicenseContext_t1367392EED5E28C90B5128BF01CA0B846120C641 * __this, const RuntimeMethod* method);
|
|
// System.Void System.Threading.Monitor::Exit(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2 (RuntimeObject * ___obj0, const RuntimeMethod* method);
|
|
// System.Void System.InvalidOperationException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706 (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, String_t* ___message0, const RuntimeMethod* method);
|
|
// System.Object System.ComponentModel.LicenseManager::CreateWithContext(System.Type,System.ComponentModel.LicenseContext,System.Object[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * LicenseManager_CreateWithContext_m8F60A7F76134A5C372414D6BDF31DA0247BED7E8 (Type_t * ___type0, LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * ___creationContext1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, const RuntimeMethod* method);
|
|
// System.ComponentModel.LicenseContext System.ComponentModel.LicenseManager::get_CurrentContext()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * LicenseManager_get_CurrentContext_m1D8C3D3DF397BF157E8679AF9E51A114BC4255A9 (const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.LicenseManager::set_CurrentContext(System.ComponentModel.LicenseContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseManager_set_CurrentContext_m74C48E5628CD103BA19F67257C52CC83E3B02B25 (LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * ___value0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.LicenseManager::LockContext(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseManager_LockContext_m5F0E9C8C761FADD96A5CD8FAA7D0B25129DCF4B8 (RuntimeObject * ___contextUser0, const RuntimeMethod* method);
|
|
// System.Object System.SecurityUtils::SecureCreateInstance(System.Type,System.Object[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SecurityUtils_SecureCreateInstance_m291D8D6709E79129FDE3E1EA01D37F1D40E73EA4 (Type_t * ___type0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args1, const RuntimeMethod* method);
|
|
// System.Exception System.Exception::get_InnerException()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Exception_t * Exception_get_InnerException_mCB68CC8CBF2540EF381CB17A4E4E3F6D0E33453F_inline (Exception_t * __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.LicenseManager::UnlockContext(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseManager_UnlockContext_mA71102EF4CC72A943687F72E01BFA4A18C30E903 (RuntimeObject * ___contextUser0, const RuntimeMethod* method);
|
|
// System.IntPtr System.RuntimeTypeHandle::get_Value()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR intptr_t RuntimeTypeHandle_get_Value_m3277019DD9C1A7E5D22F075DDF8CBDFA4D146BC6_inline (RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D * __this, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.LicenseManager::ValidateInternal(System.Type,System.Object,System.Boolean,System.ComponentModel.License&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LicenseManager_ValidateInternal_m6FDC9AF38B256326CD5FEB70F21CEE0C73B2FBD0 (Type_t * ___type0, RuntimeObject * ___instance1, bool ___allowExceptions2, License_t9011453B97942387364692C7DFAD2DEDB2160F8C ** ___license3, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.LicenseManager::ValidateInternalRecursive(System.ComponentModel.LicenseContext,System.Type,System.Object,System.Boolean,System.ComponentModel.License&,System.String&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LicenseManager_ValidateInternalRecursive_m3840EF4F43E4A99AC93287DB3D77ACE0D6EAF56F (LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * ___context0, Type_t * ___type1, RuntimeObject * ___instance2, bool ___allowExceptions3, License_t9011453B97942387364692C7DFAD2DEDB2160F8C ** ___license4, String_t** ___licenseKey5, const RuntimeMethod* method);
|
|
// System.ComponentModel.LicenseProvider System.ComponentModel.LicenseManager::GetCachedProvider(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596 * LicenseManager_GetCachedProvider_m2DBCEBBD847008191D4F2D559F13284B94B9BF5F (Type_t * ___type0, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.LicenseManager::GetCachedNoLicenseProvider(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LicenseManager_GetCachedNoLicenseProvider_m4CBF2FBA41AB146963BB10B971CD7B7641A7C71E (Type_t * ___type0, const RuntimeMethod* method);
|
|
// System.Attribute System.Attribute::GetCustomAttribute(System.Reflection.MemberInfo,System.Type,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * Attribute_GetCustomAttribute_m2A281F2593CC0DC3D02E97D79A3581C72A7512E4 (MemberInfo_t * ___element0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method);
|
|
// System.Type System.ComponentModel.LicenseProviderAttribute::get_LicenseProvider()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * LicenseProviderAttribute_get_LicenseProvider_mEECC153EF3491BFE42A37DE3A564BDF277D974DB (LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D * __this, const RuntimeMethod* method);
|
|
// System.ComponentModel.LicenseProvider System.ComponentModel.LicenseManager::GetCachedProviderInstance(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596 * LicenseManager_GetCachedProviderInstance_mB227F49DE9F0309CBA097C14328021C7CA19AD52 (Type_t * ___providerType0, const RuntimeMethod* method);
|
|
// System.Object System.SecurityUtils::SecureCreateInstance(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SecurityUtils_SecureCreateInstance_m00B165286E54C3393CFFE82948E078F96018750A (Type_t * ___type0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.LicenseManager::CacheProvider(System.Type,System.ComponentModel.LicenseProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseManager_CacheProvider_m57C5C69DCA26A0F4DE6393569468CA42E0388807 (Type_t * ___type0, LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596 * ___provider1, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.LicenseException::.ctor(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseException__ctor_m1CE763695A858FDCCB8DA467E174BAB454319080 (LicenseException_t68C548BE94D4AD7F82C5AD5E710AC18F50F30F9D * __this, Type_t * ___type0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.LicenseException::.ctor(System.Type,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseException__ctor_mB94330021DE40D6A3E84D0C28A69A79CB1575A0C (LicenseException_t68C548BE94D4AD7F82C5AD5E710AC18F50F30F9D * __this, Type_t * ___type0, RuntimeObject * ___instance1, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.LicenseManager/LicenseInteropHelper/CLRLicenseContext::.ctor(System.ComponentModel.LicenseUsageMode,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CLRLicenseContext__ctor_mDD7E6CA9FE763FC4ECAC93AD03E00A55B8BC251D (CLRLicenseContext_t16B4876D030AD05B4AEA1B65FDC49BC8E4BF64DC * __this, int32_t ___usageMode0, Type_t * ___type1, const RuntimeMethod* method);
|
|
// System.IntPtr System.IntPtr::op_Explicit(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t IntPtr_op_Explicit_m62A5ED7757661C8DB6AEF4816829ED92A1929F91 (int32_t ___value0, const RuntimeMethod* method);
|
|
// System.Boolean System.IntPtr::op_Inequality(System.IntPtr,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_op_Inequality_mB4886A806009EA825EFCC60CD2A7F6EB8E273A61 (intptr_t ___value10, intptr_t ___value21, const RuntimeMethod* method);
|
|
// System.String System.Runtime.InteropServices.Marshal::PtrToStringBSTR(System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Marshal_PtrToStringBSTR_m08D1E116E42F1BD91691298B409D67B95149ABFF (intptr_t ___ptr0, const RuntimeMethod* method);
|
|
// System.Object System.ComponentModel.LicenseManager::CreateWithContext(System.Type,System.ComponentModel.LicenseContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * LicenseManager_CreateWithContext_m30AF17D75C786F9E775F67A22E4B9A79291412DF (Type_t * ___type0, LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * ___creationContext1, const RuntimeMethod* method);
|
|
// System.Void System.Runtime.InteropServices.COMException::.ctor(System.String,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void COMException__ctor_m8DA73F7E8F5C315508CB4DA67BF396FB07509685 (COMException_t16C4698DE84A5ED9085B5545DEE0EDE38DB455DD * __this, String_t* ___message0, int32_t ___errorCode1, const RuntimeMethod* method);
|
|
// System.IntPtr System.Runtime.InteropServices.Marshal::StringToBSTR(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t Marshal_StringToBSTR_mD81E2E08A2BCAA32B23C008F8DF017F8FB0D7BEC (String_t* ___s0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.Design.DesigntimeLicenseContext::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DesigntimeLicenseContext__ctor_mF2389DEF22E3FAE1E69F4F84F0CE6BD871AB0409 (DesigntimeLicenseContext_tFBEF4E72A1E0E7F03A01D35ADFEE86A23F848AA1 * __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.LicenseProviderAttribute::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseProviderAttribute__ctor_m6ECFF85A8CD68AB79F7BEA5B959E4EAB0086A8AB (LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D * __this, String_t* ___typeName0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.LicenseProviderAttribute::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseProviderAttribute__ctor_m9B1C8D37F4C2C493855AA51C6A25F7656CE65F11 (LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D * __this, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.ListBindableAttribute::get_ListBindable()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool ListBindableAttribute_get_ListBindable_m47F216E6B441C3BFA16C6A5AEAAB9F5B7A1C5968_inline (ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 * __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.ListBindableAttribute::.ctor(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListBindableAttribute__ctor_m2719FC29AE9A73EF9DEC0C2B27A48012F927FBB9 (ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 * __this, bool ___listBindable0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.ListChangedEventArgs::.ctor(System.ComponentModel.ListChangedType,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListChangedEventArgs__ctor_m4233B600D91A937AE548C66737944FDA0EA9901D (ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84 * __this, int32_t ___listChangedType0, int32_t ___newIndex1, int32_t ___oldIndex2, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.ListChangedEventArgs::.ctor(System.ComponentModel.ListChangedType,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListChangedEventArgs__ctor_mDD7F871F692CF84679A28F9A21AB003B16128D6D (ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84 * __this, int32_t ___listChangedType0, int32_t ___newIndex1, const RuntimeMethod* method);
|
|
// System.Void System.Collections.ArrayList::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6 (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, const RuntimeMethod* method);
|
|
// System.ComponentModel.ListSortDescription System.ComponentModel.ListSortDescriptionCollection::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ListSortDescription_t70B03E24814E0475DA906045690FBE5010F28C75 * ListSortDescriptionCollection_get_Item_m8E2FD41D5BF275189626745662B8F39BCCA4FB3C (ListSortDescriptionCollection_t861BA7E63FFEBDC5C46C048FEA7B60EC580964CB * __this, int32_t ___index0, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.LocalizableAttribute::get_IsLocalizable()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool LocalizableAttribute_get_IsLocalizable_m2160A758D5CD3DD22A533EDDA3CD6C6164047FDB_inline (LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F * __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.LocalizableAttribute::.ctor(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalizableAttribute__ctor_mFAE21275AE19C981F760A0FBE50589E72E07AA2C (LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F * __this, bool ___isLocalizable0, const RuntimeMethod* method);
|
|
// System.String System.ComponentModel.LookupBindingPropertiesAttribute::get_DataSource()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* LookupBindingPropertiesAttribute_get_DataSource_mF21E618E0602FAB1E8976524DE0ACFDE66CFD589_inline (LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B * __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.LookupBindingPropertiesAttribute::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LookupBindingPropertiesAttribute__ctor_mC0896EE859FD5BC72A5D4CF2F7ACD13F052EB07F (LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B * __this, const RuntimeMethod* method);
|
|
// System.Void System.Object::Finalize()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380 (RuntimeObject * __this, const RuntimeMethod* method);
|
|
// System.ComponentModel.EventHandlerList System.ComponentModel.MarshalByValueComponent::get_Events()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 * MarshalByValueComponent_get_Events_mA41018766AC3C752652DDD522170E0F00A2FFFF9 (MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B * __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.EventHandlerList::RemoveHandler(System.Object,System.Delegate)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandlerList_RemoveHandler_mC125E76596116E967804D771CC7551ED5E700718 (EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 * __this, RuntimeObject * ___key0, Delegate_t * ___value1, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.EventHandlerList::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandlerList__ctor_mE953BDF2C360A0ABCD90892E5F48D26762358CC8 (EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 * __this, const RuntimeMethod* method);
|
|
// System.Delegate System.ComponentModel.EventHandlerList::get_Item(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * EventHandlerList_get_Item_mFB7DC8CD40DFDA76E9732CB48CE774DDEC373C42 (EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 * __this, RuntimeObject * ___key0, const RuntimeMethod* method);
|
|
// System.Void System.EventHandler::Invoke(System.Object,System.EventArgs)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandler_Invoke_mD23D5EFEA562A05C5EACDD3E91EEDD2BF6C22800 (EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * __this, RuntimeObject * ___sender0, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * ___e1, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.MaskedTextProvider::.ctor(System.String,System.Globalization.CultureInfo,System.Boolean,System.Char,System.Char,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider__ctor_mC3DF68C53AB12952AA699D6C4F61C04F32A38175 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___mask0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, bool ___allowPromptAsInput2, Il2CppChar ___promptChar3, Il2CppChar ___passwordChar4, bool ___restrictToAscii5, const RuntimeMethod* method);
|
|
// System.Boolean System.String::IsNullOrEmpty(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229 (String_t* ___value0, const RuntimeMethod* method);
|
|
// System.Char System.String::get_Chars(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96 (String_t* __this, int32_t ___index0, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::IsPrintableChar(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_IsPrintableChar_m1DBB3F4195B64CD712FF8D108CC61513358031EC (Il2CppChar ___c0, const RuntimeMethod* method);
|
|
// System.Globalization.CultureInfo[] System.Globalization.CultureInfo::GetCultures(System.Globalization.CultureTypes)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31* CultureInfo_GetCultures_mF06FF1D19C1F6626A89ECAEEC152194FEE7EDEC6 (int32_t ___types0, const RuntimeMethod* method);
|
|
// System.Boolean System.Globalization.CultureInfo::get_IsReadOnly()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool CultureInfo_get_IsReadOnly_m527F0337C516B57391AD20A70BF18FF7B0AC4849_inline (CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * __this, const RuntimeMethod* method);
|
|
// System.Globalization.CultureInfo System.Globalization.CultureInfo::ReadOnly(System.Globalization.CultureInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_ReadOnly_m794584C344F127E7918300FC386B852A93BB98F8 (CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___ci0, const RuntimeMethod* method);
|
|
// System.Void System.Collections.Specialized.BitVector32::set_Item(System.Int32,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BitVector32_set_Item_mA42604EC8406BCA63DEB3434E3F9D8D16742400C (BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * __this, int32_t ___bit0, bool ___value1, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.MaskedTextProvider::Initialize()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider_Initialize_mFA46F8C5B80302A9E759236BDEC5FEA126ACB858 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method);
|
|
// System.Void System.Text.StringBuilder::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E (StringBuilder_t * __this, const RuntimeMethod* method);
|
|
// System.Void System.Collections.Generic.List`1<System.ComponentModel.MaskedTextProvider/CharDescriptor>::.ctor()
|
|
inline void List_1__ctor_m35242122456E5BCFA71F1F4A2924B393DF228020 (List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 * __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method);
|
|
}
|
|
// System.String System.Globalization.NumberFormatInfo::get_NumberDecimalSeparator()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_NumberDecimalSeparator_m1A9F946D267B5C2FC5982D34AF97D9AEB9C24A6E_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
|
|
// System.String System.Globalization.NumberFormatInfo::get_NumberGroupSeparator()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_NumberGroupSeparator_mD995708E10C4CC55A19E7126E7A6C256A2DD1A35_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
|
|
// System.String System.Globalization.DateTimeFormatInfo::get_TimeSeparator()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_TimeSeparator_m9D230E9D88CE3E2EBA24365775D2B4B2D5621C58_inline (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, const RuntimeMethod* method);
|
|
// System.String System.Globalization.DateTimeFormatInfo::get_DateSeparator()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_DateSeparator_m68C0C4E4320F22BAA7B6E6EFF7DD7349541D509C_inline (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, const RuntimeMethod* method);
|
|
// System.String System.Globalization.NumberFormatInfo::get_CurrencySymbol()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.MaskedTextProvider/CharDescriptor::.ctor(System.Int32,System.ComponentModel.MaskedTextProvider/CharType)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharDescriptor__ctor_m19AB18A65157129B4CFB273E1BC5FCF7D8C6E93B (CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * __this, int32_t ___maskPos0, int32_t ___charType1, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::IsEditPosition(System.ComponentModel.MaskedTextProvider/CharDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_IsEditPosition_m8614884878C3CE2E788A9E90FF6B2BFA296730DE (CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * ___charDescriptor0, const RuntimeMethod* method);
|
|
// System.String System.Char::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_mA42A88FEBA41B72D48BB24373E3101B7A91B6FD8 (Il2CppChar* __this, const RuntimeMethod* method);
|
|
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A (StringBuilder_t * __this, Il2CppChar ___value0, const RuntimeMethod* method);
|
|
// System.Void System.Collections.Generic.List`1<System.ComponentModel.MaskedTextProvider/CharDescriptor>::Add(!0)
|
|
inline void List_1_Add_mE5E3B94F4609E4583BDAF08320027CDDBE7CBF79 (List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 * __this, CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * ___item0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 *, CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method);
|
|
}
|
|
// System.Int32 System.Text.StringBuilder::get_Length()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07 (StringBuilder_t * __this, const RuntimeMethod* method);
|
|
// System.Void System.Text.StringBuilder::set_Capacity(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_set_Capacity_mCE0BA9AFD80253DEDA6CD5CDF73903711B5341D6 (StringBuilder_t * __this, int32_t ___value0, const RuntimeMethod* method);
|
|
// System.Boolean System.Collections.Specialized.BitVector32::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BitVector32_get_Item_m00C3142256C406B075C4E364C03AC3A89E37A0CB (BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * __this, int32_t ___bit0, const RuntimeMethod* method);
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::get_EditPositionCount()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MaskedTextProvider_get_EditPositionCount_m1F33DA7D57FBEF3405DE960CD6AC7C924D831721 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method);
|
|
// System.String System.ComponentModel.MaskedTextProvider::get_Mask()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* MaskedTextProvider_get_Mask_m9074C064ACA7A4D2493E30218946B86BAFA028E5_inline (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method);
|
|
// System.Globalization.CultureInfo System.ComponentModel.MaskedTextProvider::get_Culture()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * MaskedTextProvider_get_Culture_mA9C9D928B88422DD51F7977FD7C6AAF45642E244_inline (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::get_AllowPromptAsInput()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_get_AllowPromptAsInput_mF973B54A49DDA82ED811F80E17A34E4BEA223371 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method);
|
|
// System.Char System.ComponentModel.MaskedTextProvider::get_PromptChar()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Il2CppChar MaskedTextProvider_get_PromptChar_m636160F1EE3A969F32E034B7FCD544D289DAA01A_inline (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method);
|
|
// System.Char System.ComponentModel.MaskedTextProvider::get_PasswordChar()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Il2CppChar MaskedTextProvider_get_PasswordChar_m0120F429F1FFA47566F840B17E557DFD6FDDD646_inline (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::get_AsciiOnly()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_get_AsciiOnly_m21E1B443153C205B73EA324268FF2F453CB3B399 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.MaskedTextProvider::set_ResetOnPrompt(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider_set_ResetOnPrompt_m78FF27069210D9E5E1E18546AAB874F62C09DC50 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, bool ___value0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.MaskedTextProvider::set_ResetOnSpace(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider_set_ResetOnSpace_mB173AB1A0E702AB372552BDB373C3CB2B9A19530 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, bool ___value0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.MaskedTextProvider::set_SkipLiterals(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider_set_SkipLiterals_m02619ADF4557203B3BA14CC13144AF65DC13D91A (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, bool ___value0, const RuntimeMethod* method);
|
|
// !0 System.Collections.Generic.List`1<System.ComponentModel.MaskedTextProvider/CharDescriptor>::get_Item(System.Int32)
|
|
inline CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_inline (List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 * __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
return (( CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * (*) (List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 *, int32_t, const RuntimeMethod*))List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline)(__this, ___index0, method);
|
|
}
|
|
// System.Char System.Text.StringBuilder::get_Chars(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6 (StringBuilder_t * __this, int32_t ___index0, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::Replace(System.Char,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_Replace_m6956AFF52D6BD77A812FAEE12B0BB64EAFA0234C (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, Il2CppChar ___input0, int32_t ___position1, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::get_ResetOnPrompt()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_get_ResetOnPrompt_m7DAEE4DE22E656C711D453F84240D96C9BF8EC5D (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::get_ResetOnSpace()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_get_ResetOnSpace_m40890F87C8C68801526F427555BD40B74B5A19CE (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::get_SkipLiterals()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_get_SkipLiterals_m410CDF3FF094DDE966BA6F3665F696F53FD60312 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::get_IncludeLiterals()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_get_IncludeLiterals_m37C703CB7096946E740EFF2627E44EE4B81BDBBB (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.MaskedTextProvider::set_IncludeLiterals(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider_set_IncludeLiterals_m88D834651ADFBA6B6153C8D172E045A464F8A752 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, bool ___value0, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::get_IncludePrompt()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_get_IncludePrompt_mCFBC56EB7B5CB5517B0ECAD8D0683B2AFC73F8C8 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.MaskedTextProvider::set_IncludePrompt(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider_set_IncludePrompt_mA93583841E0E1EA4F382801967F83B731735BEE8 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, bool ___value0, const RuntimeMethod* method);
|
|
// System.Void System.Collections.Generic.List`1<System.Int32>::.ctor()
|
|
inline void List_1__ctor_mA7F9F92F641CEECFD9D8CFDC667568A05FFD27B4 (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 *, const RuntimeMethod*))List_1__ctor_mA7F9F92F641CEECFD9D8CFDC667568A05FFD27B4_gshared)(__this, method);
|
|
}
|
|
// System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<System.ComponentModel.MaskedTextProvider/CharDescriptor>::GetEnumerator()
|
|
inline Enumerator_tB1ACA39EC6FB8CAF2F033D767916CAEED114E37C List_1_GetEnumerator_m2481F60E9BE18671D4F1B3244859DFA7641BFD53 (List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 * __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Enumerator_tB1ACA39EC6FB8CAF2F033D767916CAEED114E37C (*) (List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 *, const RuntimeMethod*))List_1_GetEnumerator_m52CC760E475D226A2B75048D70C4E22692F9F68D_gshared)(__this, method);
|
|
}
|
|
// !0 System.Collections.Generic.List`1/Enumerator<System.ComponentModel.MaskedTextProvider/CharDescriptor>::get_Current()
|
|
inline CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * Enumerator_get_Current_m93C6B874E2C040D376CD6D99EE7F776D66954F69_inline (Enumerator_tB1ACA39EC6FB8CAF2F033D767916CAEED114E37C * __this, const RuntimeMethod* method)
|
|
{
|
|
return (( CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * (*) (Enumerator_tB1ACA39EC6FB8CAF2F033D767916CAEED114E37C *, const RuntimeMethod*))Enumerator_get_Current_mD7829C7E8CFBEDD463B15A951CDE9B90A12CC55C_gshared_inline)(__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<System.Int32>::Add(!0)
|
|
inline void List_1_Add_m50C0D1F69B2EF31137658E2F052EBBAC7BF82771 (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * __this, int32_t ___item0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 *, int32_t, const RuntimeMethod*))List_1_Add_m50C0D1F69B2EF31137658E2F052EBBAC7BF82771_gshared)(__this, ___item0, method);
|
|
}
|
|
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.ComponentModel.MaskedTextProvider/CharDescriptor>::MoveNext()
|
|
inline bool Enumerator_MoveNext_mDE073B3E712ABCE337D1F88E0AFA8345AEAB46E7 (Enumerator_tB1ACA39EC6FB8CAF2F033D767916CAEED114E37C * __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_tB1ACA39EC6FB8CAF2F033D767916CAEED114E37C *, const RuntimeMethod*))Enumerator_MoveNext_m38B1099DDAD7EEDE2F4CDAB11C095AC784AC2E34_gshared)(__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1/Enumerator<System.ComponentModel.MaskedTextProvider/CharDescriptor>::Dispose()
|
|
inline void Enumerator_Dispose_m1329B7C0B94F946772328E972AB7B625547A0B16 (Enumerator_tB1ACA39EC6FB8CAF2F033D767916CAEED114E37C * __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Enumerator_tB1ACA39EC6FB8CAF2F033D767916CAEED114E37C *, const RuntimeMethod*))Enumerator_Dispose_m94D0DAE031619503CDA6E53C5C3CC78AF3139472_gshared)(__this, method);
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::get_IsPassword()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_get_IsPassword_mA79456F55E5BEFBD593A27C511A2FF5BBD0FDDAA (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method);
|
|
// System.Char System.ComponentModel.MaskedTextProvider::get_DefaultPasswordChar()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar MaskedTextProvider_get_DefaultPasswordChar_m9703E3E1266EEB70A99B6A69DFF05DB97FADEAED (const RuntimeMethod* method);
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::FindAssignedEditPositionFrom(System.Int32,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MaskedTextProvider_FindAssignedEditPositionFrom_mBAF2E6FB903959360D5FFEF1FEE756E4960D768A (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___position0, bool ___direction1, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::IsValidPasswordChar(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_IsValidPasswordChar_mB81DAF880124B6191F488B7F9A6D0747B8174FB5 (Il2CppChar ___c0, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::IsEditPosition(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_IsEditPosition_mB28533BEB0EC65EF5690343556B61D93BFF7B04D (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___position0, const RuntimeMethod* method);
|
|
// System.Void System.Text.StringBuilder::set_Chars(System.Int32,System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA (StringBuilder_t * __this, int32_t ___index0, Il2CppChar ___value1, const RuntimeMethod* method);
|
|
// System.Void System.IndexOutOfRangeException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IndexOutOfRangeException__ctor_mCCE2EFF47A0ACB4B2636F63140F94FCEA71A9BCA (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * __this, String_t* ___message0, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::Add(System.Char,System.Int32&,System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_Add_mA5A872EEEFBB1480D64DECB6C778FC88EA6585F1 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, Il2CppChar ___input0, int32_t* ___testPosition1, int32_t* ___resultHint2, const RuntimeMethod* method);
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::get_LastAssignedPosition()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MaskedTextProvider_get_LastAssignedPosition_m50CA253FC2DA86D3EC9C1E5A7F68AA9C5BF25C74 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method);
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::FindEditPositionFrom(System.Int32,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MaskedTextProvider_FindEditPositionFrom_m72A2B5BA9FE5D20F9A0B149FC86D08B0AD54F672 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___position0, bool ___direction1, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::TestSetChar(System.Char,System.Int32,System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_TestSetChar_m0B37B59249703B1BDDE39E1AD93BC48A7DA8BB3A (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, Il2CppChar ___input0, int32_t ___position1, int32_t* ___resultHint2, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::Add(System.String,System.Int32&,System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_Add_m8F1C287569589396D343CED8C08C58EA36051C0D (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___input0, int32_t* ___testPosition1, int32_t* ___resultHint2, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::TestSetString(System.String,System.Int32,System.Int32&,System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_TestSetString_m9293EED6116879ACEB15E37AC6CB402BAD21CB9B (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___input0, int32_t ___position1, int32_t* ___testPosition2, int32_t* ___resultHint3, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.MaskedTextProvider::Clear(System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider_Clear_mEAB28B3F9A3C6B60FE898862558024E6C7B35DB3 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t* ___resultHint0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.MaskedTextProvider::ResetChar(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider_ResetChar_m98F29F5594B201C92E45A7F7DB8B373A791D7974 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___testPosition0, const RuntimeMethod* method);
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::FindAssignedEditPositionInRange(System.Int32,System.Int32,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MaskedTextProvider_FindAssignedEditPositionInRange_m99FEE6803040007A2AC914E2B66D41901B211CE8 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___startPosition0, int32_t ___endPosition1, bool ___direction2, const RuntimeMethod* method);
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::FindEditPositionInRange(System.Int32,System.Int32,System.Boolean,System.Byte)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MaskedTextProvider_FindEditPositionInRange_mA60304FD868B13FB2C61A180EB3CE75C74BBBA9B (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___startPosition0, int32_t ___endPosition1, bool ___direction2, uint8_t ___assignedStatus3, const RuntimeMethod* method);
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::FindEditPositionInRange(System.Int32,System.Int32,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MaskedTextProvider_FindEditPositionInRange_mFAB18DBA8B26EAAD2C895FFC9FC842399BFB8F73 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___startPosition0, int32_t ___endPosition1, bool ___direction2, const RuntimeMethod* method);
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::FindPositionInRange(System.Int32,System.Int32,System.Boolean,System.ComponentModel.MaskedTextProvider/CharType)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MaskedTextProvider_FindPositionInRange_m1DF8097A69310EE8E18809DF4A0A8F92D0494FDF (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___startPosition0, int32_t ___endPosition1, bool ___direction2, int32_t ___charTypeFlags3, const RuntimeMethod* method);
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::FindNonEditPositionInRange(System.Int32,System.Int32,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MaskedTextProvider_FindNonEditPositionInRange_m259C05DC5F6DC27C32B74B9C77E69E0CA203B235 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___startPosition0, int32_t ___endPosition1, bool ___direction2, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::InsertAt(System.String,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_InsertAt_m386AF5541261B63071927927841CE695988EEDEF (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___input0, int32_t ___position1, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::InsertAt(System.String,System.Int32,System.Int32&,System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_InsertAt_m0E69353EE243CEDA39A1AA468BAE7B594481F471 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___input0, int32_t ___position1, int32_t* ___testPosition2, int32_t* ___resultHint3, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::InsertAtInt(System.String,System.Int32,System.Int32&,System.ComponentModel.MaskedTextResultHint&,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_InsertAtInt_mE839ED14D8FF954E6FD42A420C3B2710E1F9A2B8 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___input0, int32_t ___position1, int32_t* ___testPosition2, int32_t* ___resultHint3, bool ___testOnly4, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::TestString(System.String,System.Int32,System.Int32&,System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_TestString_mFEF74E01CEAA8F7593520754B78CA41411E2C2DA (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___input0, int32_t ___position1, int32_t* ___testPosition2, int32_t* ___resultHint3, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::TestChar(System.Char,System.Int32,System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_TestChar_mAC74996A38215989049A56253C5D0267D8C9CED1 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, Il2CppChar ___input0, int32_t ___position1, int32_t* ___resultHint2, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.MaskedTextProvider::SetChar(System.Char,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider_SetChar_m73B70F3714708050D8A2D543741150DC4AD0A16D (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, Il2CppChar ___input0, int32_t ___position1, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.MaskedTextProvider::SetString(System.String,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider_SetString_mAFF76911CC11F891E10D241C57C0775D1394EA8C (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___input0, int32_t ___testPosition1, const RuntimeMethod* method);
|
|
// System.Boolean System.Char::IsLetter(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLetter_mCC7F387F16C2DE7C85B6A1A0C5BC75D92A813DFE (Il2CppChar ___c0, const RuntimeMethod* method);
|
|
// System.Boolean System.Char::IsDigit(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsDigit_m29508E0B60DAE54350BDC3DED0D42895DBA4087E (Il2CppChar ___c0, const RuntimeMethod* method);
|
|
// System.Boolean System.Char::IsLetterOrDigit(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLetterOrDigit_mD7307B3157DFA4EC20D58F68ACB6A9793D3A8292 (Il2CppChar ___c0, const RuntimeMethod* method);
|
|
// System.Boolean System.Char::IsPunctuation(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsPunctuation_m2F82DCD9CE2CBED034F8CF39E247BBB065935D51 (Il2CppChar ___c0, const RuntimeMethod* method);
|
|
// System.Boolean System.Char::IsSymbol(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSymbol_m5F2F2AD31BDB3A9D090B5C12E2A356E3FF600A4F (Il2CppChar ___c0, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::Remove(System.Int32&,System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_Remove_mF299A8A20BDB386CE8FEBBE41A6D947A05372944 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t* ___testPosition0, int32_t* ___resultHint1, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::RemoveAt(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_RemoveAt_m160C59667BB09024DDCA4A1A77CDBC3F802E91C8 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___startPosition0, int32_t ___endPosition1, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::RemoveAt(System.Int32,System.Int32,System.Int32&,System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_RemoveAt_m9BB446CA1E9495316019AE62420F3C75BF37C30A (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___startPosition0, int32_t ___endPosition1, int32_t* ___testPosition2, int32_t* ___resultHint3, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::RemoveAtInt(System.Int32,System.Int32,System.Int32&,System.ComponentModel.MaskedTextResultHint&,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_RemoveAtInt_mEB337BF8D99A98C7B0C1DD6B36AD1ECC3537BADC (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___startPosition0, int32_t ___endPosition1, int32_t* ___testPosition2, int32_t* ___resultHint3, bool ___testOnly4, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.MaskedTextProvider::ResetString(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider_ResetString_mF3E4814666BE1F17CD83EC04662D430BEBD1AB2C (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___startPosition0, int32_t ___endPosition1, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::Replace(System.Char,System.Int32,System.Int32&,System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_Replace_m43E2CA96E512724063E515E749115EF5979ADC05 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, Il2CppChar ___input0, int32_t ___position1, int32_t* ___testPosition2, int32_t* ___resultHint3, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::TestEscapeChar(System.Char,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_TestEscapeChar_mC839F205DD58646AB41D153330BE9FF7565D3C22 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, Il2CppChar ___input0, int32_t ___position1, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::Replace(System.String,System.Int32,System.Int32,System.Int32&,System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_Replace_m6A5B4A8279F613EDDD7151CD2743BEB2B46BBEF4 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___input0, int32_t ___startPosition1, int32_t ___endPosition2, int32_t* ___testPosition3, int32_t* ___resultHint4, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::Replace(System.String,System.Int32,System.Int32&,System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_Replace_m757A9B532D1ACFF87D34985568C352927A32CEEC (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___input0, int32_t ___position1, int32_t* ___testPosition2, int32_t* ___resultHint3, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::Set(System.String,System.Int32&,System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_Set_mA9360F2798F7590F8E7E7619B862A582D7FAF734 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___input0, int32_t* ___testPosition1, int32_t* ___resultHint2, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.MaskedTextProvider::SetChar(System.Char,System.Int32,System.ComponentModel.MaskedTextProvider/CharDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider_SetChar_mE6C13D1ABEF1568CD78927D157788B6D3025F218 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, Il2CppChar ___input0, int32_t ___position1, CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * ___charDescriptor2, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::TestEscapeChar(System.Char,System.Int32,System.ComponentModel.MaskedTextProvider/CharDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_TestEscapeChar_mE807731E4B72B215DBD3B6276D819B606924071C (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, Il2CppChar ___input0, int32_t ___position1, CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * ___charDex2, const RuntimeMethod* method);
|
|
// System.Boolean System.Char::IsUpper(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsUpper_m94DFB4B66A46914F0588FB7EB42E9BB4A14C3513 (Il2CppChar ___c0, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::IsLiteralPosition(System.ComponentModel.MaskedTextProvider/CharDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_IsLiteralPosition_m1B0D1B7B71CFC518C041DE789076534D1F08ED82 (CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * ___charDescriptor0, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::IsAsciiLetter(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_IsAsciiLetter_mFF7FA71C40F867B46B8A276990ED6760E379C909 (Il2CppChar ___c0, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::IsAscii(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_IsAscii_mEE98835FEB29B30F9399FB4A5BBBF849FDF9F0BA (Il2CppChar ___c0, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::IsAlphanumeric(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_IsAlphanumeric_m43616E92043E75DDF9E6D83962B05EA6801134CA (Il2CppChar ___c0, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::IsAciiAlphanumeric(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_IsAciiAlphanumeric_m3CE95C49948C10F29F91947E3121456A959E0423 (Il2CppChar ___c0, const RuntimeMethod* method);
|
|
// System.Void System.Text.StringBuilder::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m1C0F2D97B838537A2D0F64033AE4EF02D150A956 (StringBuilder_t * __this, int32_t ___capacity0, const RuntimeMethod* method);
|
|
// System.String System.ComponentModel.MaskedTextProvider::ToString(System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MaskedTextProvider_ToString_m1B57C3CDFEDC3A1FC383F3E4AB649631A84FA3EB (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, bool ___ignorePasswordChar0, bool ___includePrompt1, bool ___includeLiterals2, int32_t ___startPosition3, int32_t ___length4, const RuntimeMethod* method);
|
|
// System.String System.Text.StringBuilder::ToString(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringBuilder_ToString_mB91781E31C1CF168F780733E67EA40A5386693C6 (StringBuilder_t * __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method);
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::get_InvalidIndex()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MaskedTextProvider_get_InvalidIndex_m763EC9BB0377976032C14BA00AF1A4A3337DDF7E (const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::VerifyString(System.String,System.Int32&,System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_VerifyString_m090D99B67778B10EEC2F14F7652D1F59138B5851 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___input0, int32_t* ___testPosition1, int32_t* ___resultHint2, const RuntimeMethod* method);
|
|
// System.Int32 System.Collections.Specialized.BitVector32::CreateMask()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BitVector32_CreateMask_mF40475E10251217A893C1C396B80B4690A6245B2 (const RuntimeMethod* method);
|
|
// System.Int32 System.Collections.Specialized.BitVector32::CreateMask(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BitVector32_CreateMask_mFE756231DB1A3377702CD31ED57BF6CBCB0487CD (int32_t ___previous0, const RuntimeMethod* method);
|
|
// System.String System.String::Format(System.IFormatProvider,System.String,System.Object[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mF68EE0DEC1AA5ADE9DFEF9AE0508E428FBB10EFD (RuntimeObject* ___provider0, String_t* ___format1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, const RuntimeMethod* method);
|
|
// System.Int32 System.ComponentModel.AttributeCollection::get_Count()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AttributeCollection_get_Count_m18B4E5D1755D27754C9B3C7C89B4BD91B1458EC4 (AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.AttributeCollection::CopyTo(System.Array,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeCollection_CopyTo_mAE40D3E0FE070974B37F9BA5F4600E622E6F621F (AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method);
|
|
// System.Collections.IEnumerator System.ComponentModel.AttributeCollection::GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* AttributeCollection_GetEnumerator_m0A6B7803DAA1D559DF91BB18D0230F449A036DCB (AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.MemberDescriptor::CheckAttributesValid()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberDescriptor_CheckAttributesValid_mEAFC02C4EAED626FCDC291F1512DD0E602E232BE (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.MemberDescriptor::FilterAttributesIfNeeded()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberDescriptor_FilterAttributesIfNeeded_mDEFEACE930F7537A7DF7A530198F04C73301D591 (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * __this, const RuntimeMethod* method);
|
|
// System.String System.ComponentModel.CategoryAttribute::get_Category()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CategoryAttribute_get_Category_mBDB4C9D10F07BC627C4D047B8CD570D84EC56F3F (CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 * __this, const RuntimeMethod* method);
|
|
// System.Int32 System.ComponentModel.TypeDescriptor::get_MetadataVersion()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t TypeDescriptor_get_MetadataVersion_m70C215D1B15DCBD67B58127EB0E6D7E6F5D020DC_inline (const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.AttributeCollection::.ctor(System.Attribute[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeCollection__ctor_m1EBB330147608510FB1B60549BA95812EA2A1190 (AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * __this, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes0, const RuntimeMethod* method);
|
|
// System.Void System.Collections.Hashtable::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_mAAFFE0698C829CFAFE176BD4A6C5DDA07A8ABDA9 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, int32_t ___capacity0, const RuntimeMethod* method);
|
|
// System.Reflection.MethodInfo System.ComponentModel.MemberDescriptor::FindMethod(System.Type,System.String,System.Type[],System.Type,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * MemberDescriptor_FindMethod_m55C2AA54F198A970DAD868DE103F41602CC4ABEF (Type_t * ___componentClass0, String_t* ___name1, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___args2, Type_t * ___returnType3, bool ___publicOnly4, const RuntimeMethod* method);
|
|
// System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type[],System.Reflection.ParameterModifier[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Type_GetMethod_m694F07057F23808980BF6B1637544F34852759FA (Type_t * __this, String_t* ___name0, int32_t ___bindingAttr1, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___binder2, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___types3, ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA* ___modifiers4, const RuntimeMethod* method);
|
|
// System.Object System.ComponentModel.TypeDescriptor::GetAssociation(System.Type,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TypeDescriptor_GetAssociation_m45465AA1409C932535F021345F71CFF99CBC4D98 (Type_t * ___type0, RuntimeObject * ___primary1, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.MergablePropertyAttribute::get_AllowMerge()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool MergablePropertyAttribute_get_AllowMerge_m9E247DA31A96661FFC6A2D65AD98A2FC2E3EF9F1_inline (MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 * __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.MergablePropertyAttribute::.ctor(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MergablePropertyAttribute__ctor_m0C026F24E053A86D73321A45F97FDE53E2127D04 (MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 * __this, bool ___allowMerge0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.Container::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Container__ctor_mD7A10DE182D247D0A6035B14AE9D85884D3A5D89 (Container_tC98CD69632DEA16FC061454A770CC7D11FFFEEF1 * __this, const RuntimeMethod* method);
|
|
// System.Void System.EventHandler::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandler__ctor_m497A2BCD46DB769EAFFDE919303FCAE226906B6F (EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.NestedContainer/Site::.ctor(System.ComponentModel.IComponent,System.ComponentModel.NestedContainer,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Site__ctor_mDAA679D31EE0B838B5FF36F75BFCA767CB96DC15 (Site_t416D1B752B924BEC6C03A474D7DC852F255B3E5A * __this, RuntimeObject* ___component0, NestedContainer_t08F11932945A6F531D1338CC5A05BAD8D99F8AE9 * ___container1, String_t* ___name2, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.Container::Dispose(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Container_Dispose_m8E2E86E4455B9EE167759CEB790C1526495B4966 (Container_tC98CD69632DEA16FC061454A770CC7D11FFFEEF1 * __this, bool ___disposing0, const RuntimeMethod* method);
|
|
// System.Object System.ComponentModel.Container::GetService(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Container_GetService_mC27DC293E0E9B344F2B7F861D5255191212F376E (Container_tC98CD69632DEA16FC061454A770CC7D11FFFEEF1 * __this, Type_t * ___service0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.Container::Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Container_Dispose_m5D329D52392588221C5B2050B3FCCCFD1A81DB31 (Container_tC98CD69632DEA16FC061454A770CC7D11FFFEEF1 * __this, const RuntimeMethod* method);
|
|
// System.ComponentModel.IComponent System.ComponentModel.NestedContainer::get_Owner()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject* NestedContainer_get_Owner_mCAE82359E5FAC819D35995F5C15F42BE3C08F0C9_inline (NestedContainer_t08F11932945A6F531D1338CC5A05BAD8D99F8AE9 * __this, const RuntimeMethod* method);
|
|
// System.String System.String::Format(System.IFormatProvider,System.String,System.Object,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m453C2840536781B718FF4D0F5C7EEC8E5481C435 (RuntimeObject* ___provider0, String_t* ___format1, RuntimeObject * ___arg02, RuntimeObject * ___arg13, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.NotifyParentPropertyAttribute::get_NotifyParent()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool NotifyParentPropertyAttribute_get_NotifyParent_mCAC54ACDD983201C0B33DD4028F3686E74AC2D0D_inline (NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68 * __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.NotifyParentPropertyAttribute::.ctor(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotifyParentPropertyAttribute__ctor_m131492A1D6D8E6F0C1DC76EC141AD10D10D854D7 (NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68 * __this, bool ___notifyParent0, const RuntimeMethod* method);
|
|
// System.Type System.Nullable::GetUnderlyingType(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Nullable_GetUnderlyingType_m038B195642BF738026196B1629997705B6317D04 (Type_t * ___nullableType0, const RuntimeMethod* method);
|
|
// System.Object System.ComponentModel.TypeConverter::CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TypeConverter_CreateInstance_mDC7CFC64F7538582820FE98B48B025956549FA6F (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, RuntimeObject* ___propertyValues1, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.TypeConverter::GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverter_GetCreateInstanceSupported_mA94E6A163BDDEF26EF22676B270763C010FA2D1C (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, const RuntimeMethod* method);
|
|
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeConverter::GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * TypeConverter_GetProperties_mE9B2F1B88BC6A544E6FB1B5369A9603D24871DA1 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, RuntimeObject * ___value1, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes2, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.TypeConverter::GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverter_GetPropertiesSupported_m689053FED1C08F4E898BC80D3E802866A08CCE1D (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, const RuntimeMethod* method);
|
|
// System.Int32 System.ComponentModel.TypeConverter/StandardValuesCollection::get_Count()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StandardValuesCollection_get_Count_mD0531EA777492E88EBEA8C6B8E8A12C4AFE5103A (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * __this, const RuntimeMethod* method);
|
|
// System.Collections.IEnumerator System.ComponentModel.TypeConverter/StandardValuesCollection::GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* StandardValuesCollection_GetEnumerator_m40E0D69CDEDD7EDE2D9454C4A18AA4C91A96B95F (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * __this, const RuntimeMethod* method);
|
|
// System.ComponentModel.TypeConverter/StandardValuesCollection System.ComponentModel.TypeConverter::GetStandardValues(System.ComponentModel.ITypeDescriptorContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * TypeConverter_GetStandardValues_m58938306CEF726F9537744C71AC943E399D5F927 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.TypeConverter::GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverter_GetStandardValuesExclusive_m6B189B96FF37D21B43FD397661F5C9960D7204E4 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.TypeConverter::GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverter_GetStandardValuesSupported_mE7E8F04BE48835C994C035A90CBBFD7681B0D198 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.TypeConverter::IsValid(System.ComponentModel.ITypeDescriptorContext,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverter_IsValid_m7F461605B50FF4BAED21EB5B59C65459CF5DC8F4 (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, RuntimeObject* ___context0, RuntimeObject * ___value1, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.ParenthesizePropertyNameAttribute::.ctor(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParenthesizePropertyNameAttribute__ctor_mD3176C9D00E5C3EE01D2E1F622C31CAD22EE4D21 (ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114 * __this, bool ___needParenthesis0, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.ParenthesizePropertyNameAttribute::get_NeedParenthesis()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool ParenthesizePropertyNameAttribute_get_NeedParenthesis_mA9C52907633EF99582310AEA250035D4922DBBEA_inline (ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114 * __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.ParenthesizePropertyNameAttribute::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParenthesizePropertyNameAttribute__ctor_m7D3490B813C6302DEE2BE9C839546E40510D1565 (ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114 * __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.PasswordPropertyTextAttribute::.ctor(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PasswordPropertyTextAttribute__ctor_m6C7115C93FD69C8EDC7EF98C0EFA9DEE0D5DC554 (PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1 * __this, bool ___password0, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.PasswordPropertyTextAttribute::get_Password()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool PasswordPropertyTextAttribute_get_Password_mA428AA8DFBCEA6EFDEBC1C462E0C8615FF4BABCE_inline (PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1 * __this, const RuntimeMethod* method);
|
|
// System.String System.ComponentModel.TypeConverterAttribute::get_ConverterTypeName()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* TypeConverterAttribute_get_ConverterTypeName_m883941C77E14FC5B4A3E32DD8F59F11739D5D6D8_inline (TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * __this, const RuntimeMethod* method);
|
|
// System.Type System.ComponentModel.PropertyDescriptor::GetTypeFromName(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * PropertyDescriptor_GetTypeFromName_mBD141AA5AB01356D6A8664AE961F72B7637AB7BE (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, String_t* ___typeName0, const RuntimeMethod* method);
|
|
// System.Object System.ComponentModel.PropertyDescriptor::CreateInstance(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * PropertyDescriptor_CreateInstance_m7032F927CEC5E78B323B439DAB07E3D813C1DD90 (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, Type_t * ___type0, const RuntimeMethod* method);
|
|
// System.Object System.ComponentModel.TypeDescriptor::CreateInstance(System.IServiceProvider,System.Type,System.Type[],System.Object[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TypeDescriptor_CreateInstance_m9615D98B08C826DF6B261B054FCB88C56E96CDC2 (RuntimeObject* ___provider0, Type_t * ___objectType1, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___argTypes2, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args3, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.MemberDescriptor::FillAttributes(System.Collections.IList)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberDescriptor_FillAttributes_mA33C5FFD1DE2BA560E335B6549E60A229B9F773B (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * __this, RuntimeObject* ___attributeList0, const RuntimeMethod* method);
|
|
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeDescriptor::GetProperties(System.Type,System.Attribute[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * TypeDescriptor_GetProperties_mB120D4E97EBF1F7E8C585380F0B6EF8E5EC843EE (Type_t * ___componentType0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes1, const RuntimeMethod* method);
|
|
// System.String System.ComponentModel.EditorAttribute::get_EditorBaseTypeName()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* EditorAttribute_get_EditorBaseTypeName_m41C1E4DD17CF8A2C14A8C8A8E783687FF2C241D1_inline (EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * __this, const RuntimeMethod* method);
|
|
// System.String System.ComponentModel.EditorAttribute::get_EditorTypeName()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* EditorAttribute_get_EditorTypeName_m0C6CD2A9C2905C7E774825F77B26BF6D842C6090_inline (EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * __this, const RuntimeMethod* method);
|
|
// System.Object System.ComponentModel.TypeDescriptor::GetEditor(System.Type,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TypeDescriptor_GetEditor_m66F3C5F1EF83D37BD530FDBC91EACCDD6E339611 (Type_t * ___type0, Type_t * ___editorBaseType1, const RuntimeMethod* method);
|
|
// System.Void System.Array::Copy(System.Array,System.Array,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434 (RuntimeArray * ___sourceArray0, RuntimeArray * ___destinationArray1, int32_t ___length2, const RuntimeMethod* method);
|
|
// System.Object System.ComponentModel.MemberDescriptor::GetInvocationTarget(System.Type,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MemberDescriptor_GetInvocationTarget_m18F13C7801A10F9E0E1649E7356C49F2797BE543 (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * __this, Type_t * ___type0, RuntimeObject * ___instance1, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::.ctor(System.ComponentModel.PropertyDescriptor[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection__ctor_m132BE5B53DC73850841F2AB9A6633F4626C538BC (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* ___properties0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::EnsurePropsOwned()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection_EnsurePropsOwned_mA7CDF7318480D4512B76733D3E1DF9EAE6C378A1 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::EnsureSize(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection_EnsureSize_mCCF9502C5BE2212F88FDC6507E598175CF1298BA (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, int32_t ___sizeNeeded0, const RuntimeMethod* method);
|
|
// System.Int32 System.ComponentModel.PropertyDescriptorCollection::IndexOf(System.ComponentModel.PropertyDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PropertyDescriptorCollection_IndexOf_mFBCAE0B916F2BF733D494020EBA7EFEEEFC20A45 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___value0, const RuntimeMethod* method);
|
|
// System.Int32 System.ComponentModel.PropertyDescriptorCollection::get_Count()
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t PropertyDescriptorCollection_get_Count_mAA1EA8D4BE590EE7F7E469876FB503F2A0F0E4B0_inline (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::InternalSort(System.String[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection_InternalSort_m5BEF1BE7A393A601E9E404644C037EB7552362C6 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___names0, const RuntimeMethod* method);
|
|
// System.Void System.Collections.Specialized.HybridDictionary::.ctor(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HybridDictionary__ctor_mBA75388EDF5456916408D7D3954B6873D50BA2F1 (HybridDictionary_t885F953154C575D3408650DCE5D0B76F1EE4E549 * __this, bool ___caseInsensitive0, const RuntimeMethod* method);
|
|
// System.Int32 System.Array::IndexOf<System.ComponentModel.PropertyDescriptor>(!!0[],!!0,System.Int32,System.Int32)
|
|
inline int32_t Array_IndexOf_TisPropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D_m6B97C4B67DCAF845EB45FF4CE843D62748AEB500 (PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* ___array0, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *, int32_t, int32_t, const RuntimeMethod*))Array_IndexOf_TisRuntimeObject_mAA3A139827BE306C01514EBF4F21041FC2285EAF_gshared)(___array0, ___value1, ___startIndex2, ___count3, method);
|
|
}
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::RemoveAt(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection_RemoveAt_m988ED89DD8C6F2D254BD664991461869786977F0 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, int32_t ___index0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::.ctor(System.ComponentModel.PropertyDescriptor[],System.Int32,System.String[],System.Collections.IComparer)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection__ctor_m0BD142D7B2CAD889393CC69ADA2233984768DABB (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* ___properties0, int32_t ___propCount1, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___namedSort2, RuntimeObject* ___comparer3, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::InternalSort(System.Collections.IComparer)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection_InternalSort_m05765A385A5F324219F60E3880193230BCCE8863 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, RuntimeObject* ___sorter0, const RuntimeMethod* method);
|
|
// System.Int32 System.ComponentModel.PropertyDescriptorCollection::Add(System.ComponentModel.PropertyDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PropertyDescriptorCollection_Add_m4EC994159DE3EC1B05CCD9186099D7935FF3ED33 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___value0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::Clear()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection_Clear_mAD94D5BF4918591FEE475B3FC15A64729F89A3DE (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection/PropertyDescriptorEnumerator::.ctor(System.ComponentModel.PropertyDescriptorCollection)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorEnumerator__ctor_mD766982CCA3E90487BD77781B1EA0C29F9477B7D (PropertyDescriptorEnumerator_t8DE08E0C89BAD17FE8FD71FD3159C80833CE2D9D * __this, PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * ___owner0, const RuntimeMethod* method);
|
|
// System.Boolean System.ComponentModel.PropertyDescriptorCollection::Contains(System.ComponentModel.PropertyDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PropertyDescriptorCollection_Contains_m8262E7DEBA9D0C9496CE3DDA85BC1F1995F18DBA (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___value0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::Insert(System.Int32,System.ComponentModel.PropertyDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection_Insert_m22DC9C6797AE20CFE2815DCB8C5A98A9A363BDCD (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, int32_t ___index0, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___value1, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::Remove(System.ComponentModel.PropertyDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection_Remove_mCFFC999272C8C7B4C325B6D32A9DA2FC6DABC997 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___value0, const RuntimeMethod* method);
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::.ctor(System.ComponentModel.PropertyDescriptor[],System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection__ctor_m7DDFDE6996940ED1E0BF5073548E5C5B058D6D6D (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* ___properties0, bool ___readOnly1, const RuntimeMethod* method);
|
|
// System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_mBA2AF20A35144E0C43CD721A22EAC9FCA15D6550 (const RuntimeMethod* method);
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.DelegatingTypeDescriptionProvider::.ctor(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DelegatingTypeDescriptionProvider__ctor_mCA7A19A0B8F2306A3FCBE5541B92E0F1D1376B01 (DelegatingTypeDescriptionProvider_t1479D886AEC7B0D4A74E19212E904337D5505A56 * __this, Type_t * ___type0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
TypeDescriptionProvider__ctor_m9A35B40DE4D4CCB86B72BD3BABF375982DB32912(__this, /*hidden argument*/NULL);
|
|
Type_t * L_0 = ___type0;
|
|
__this->set__type_2(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.ComponentModel.TypeDescriptionProvider System.ComponentModel.DelegatingTypeDescriptionProvider::get_Provider()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * DelegatingTypeDescriptionProvider_get_Provider_mA048A519047ACF1FB8AB8604AC985038883688E7 (DelegatingTypeDescriptionProvider_t1479D886AEC7B0D4A74E19212E904337D5505A56 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DelegatingTypeDescriptionProvider_get_Provider_mA048A519047ACF1FB8AB8604AC985038883688E7_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Type_t * L_0 = __this->get__type_2();
|
|
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
|
|
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_1 = TypeDescriptor_GetProviderRecursive_mFA9FD212A625262784E9B1B05D3B82564B393877(L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.DelegatingTypeDescriptionProvider::CreateInstance(System.IServiceProvider,System.Type,System.Type[],System.Object[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * DelegatingTypeDescriptionProvider_CreateInstance_m1D0BB463FE6078B72E3FA2F8EB661E3F93EB0CF3 (DelegatingTypeDescriptionProvider_t1479D886AEC7B0D4A74E19212E904337D5505A56 * __this, RuntimeObject* ___provider0, Type_t * ___objectType1, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___argTypes2, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args3, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_0 = DelegatingTypeDescriptionProvider_get_Provider_mA048A519047ACF1FB8AB8604AC985038883688E7(__this, /*hidden argument*/NULL);
|
|
RuntimeObject* L_1 = ___provider0;
|
|
Type_t * L_2 = ___objectType1;
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_3 = ___argTypes2;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___args3;
|
|
NullCheck(L_0);
|
|
RuntimeObject * L_5 = VirtFuncInvoker4< RuntimeObject *, RuntimeObject*, Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* >::Invoke(4 /* System.Object System.ComponentModel.TypeDescriptionProvider::CreateInstance(System.IServiceProvider,System.Type,System.Type[],System.Object[]) */, L_0, L_1, L_2, L_3, L_4);
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Collections.IDictionary System.ComponentModel.DelegatingTypeDescriptionProvider::GetCache(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DelegatingTypeDescriptionProvider_GetCache_mB2D34194960FB5604FCCA8DEB3F563BD0E73321C (DelegatingTypeDescriptionProvider_t1479D886AEC7B0D4A74E19212E904337D5505A56 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_0 = DelegatingTypeDescriptionProvider_get_Provider_mA048A519047ACF1FB8AB8604AC985038883688E7(__this, /*hidden argument*/NULL);
|
|
RuntimeObject * L_1 = ___instance0;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_2 = VirtFuncInvoker1< RuntimeObject*, RuntimeObject * >::Invoke(5 /* System.Collections.IDictionary System.ComponentModel.TypeDescriptionProvider::GetCache(System.Object) */, L_0, L_1);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.DelegatingTypeDescriptionProvider::GetFullComponentName(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DelegatingTypeDescriptionProvider_GetFullComponentName_mC92F64FAD6E25AB3D42154C205E015776BAE8AEA (DelegatingTypeDescriptionProvider_t1479D886AEC7B0D4A74E19212E904337D5505A56 * __this, RuntimeObject * ___component0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_0 = DelegatingTypeDescriptionProvider_get_Provider_mA048A519047ACF1FB8AB8604AC985038883688E7(__this, /*hidden argument*/NULL);
|
|
RuntimeObject * L_1 = ___component0;
|
|
NullCheck(L_0);
|
|
String_t* L_2 = VirtFuncInvoker1< String_t*, RuntimeObject * >::Invoke(8 /* System.String System.ComponentModel.TypeDescriptionProvider::GetFullComponentName(System.Object) */, L_0, L_1);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.DelegatingTypeDescriptionProvider::GetExtendedTypeDescriptor(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DelegatingTypeDescriptionProvider_GetExtendedTypeDescriptor_m253D9E8BB497010592F6EDA8D601DEDF11191CD2 (DelegatingTypeDescriptionProvider_t1479D886AEC7B0D4A74E19212E904337D5505A56 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_0 = DelegatingTypeDescriptionProvider_get_Provider_mA048A519047ACF1FB8AB8604AC985038883688E7(__this, /*hidden argument*/NULL);
|
|
RuntimeObject * L_1 = ___instance0;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_2 = VirtFuncInvoker1< RuntimeObject*, RuntimeObject * >::Invoke(6 /* System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptionProvider::GetExtendedTypeDescriptor(System.Object) */, L_0, L_1);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.ComponentModel.IExtenderProvider[] System.ComponentModel.DelegatingTypeDescriptionProvider::GetExtenderProviders(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* DelegatingTypeDescriptionProvider_GetExtenderProviders_m6A6C2B71F960A4A5A8FA32B49DACD4872928D553 (DelegatingTypeDescriptionProvider_t1479D886AEC7B0D4A74E19212E904337D5505A56 * __this, RuntimeObject * ___instance0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_0 = DelegatingTypeDescriptionProvider_get_Provider_mA048A519047ACF1FB8AB8604AC985038883688E7(__this, /*hidden argument*/NULL);
|
|
RuntimeObject * L_1 = ___instance0;
|
|
NullCheck(L_0);
|
|
IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031* L_2 = VirtFuncInvoker1< IExtenderProviderU5BU5D_t98121652302DA48EF1CB12054524D95ED4B63031*, RuntimeObject * >::Invoke(7 /* System.ComponentModel.IExtenderProvider[] System.ComponentModel.TypeDescriptionProvider::GetExtenderProviders(System.Object) */, L_0, L_1);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Type System.ComponentModel.DelegatingTypeDescriptionProvider::GetReflectionType(System.Type,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * DelegatingTypeDescriptionProvider_GetReflectionType_mAE5CE00625A29447106956644B1E52E7E7588E79 (DelegatingTypeDescriptionProvider_t1479D886AEC7B0D4A74E19212E904337D5505A56 * __this, Type_t * ___objectType0, RuntimeObject * ___instance1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_0 = DelegatingTypeDescriptionProvider_get_Provider_mA048A519047ACF1FB8AB8604AC985038883688E7(__this, /*hidden argument*/NULL);
|
|
Type_t * L_1 = ___objectType0;
|
|
RuntimeObject * L_2 = ___instance1;
|
|
NullCheck(L_0);
|
|
Type_t * L_3 = VirtFuncInvoker2< Type_t *, Type_t *, RuntimeObject * >::Invoke(9 /* System.Type System.ComponentModel.TypeDescriptionProvider::GetReflectionType(System.Type,System.Object) */, L_0, L_1, L_2);
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Type System.ComponentModel.DelegatingTypeDescriptionProvider::GetRuntimeType(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * DelegatingTypeDescriptionProvider_GetRuntimeType_m412219665293FBA9534B783543DE78D12C726C0C (DelegatingTypeDescriptionProvider_t1479D886AEC7B0D4A74E19212E904337D5505A56 * __this, Type_t * ___objectType0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_0 = DelegatingTypeDescriptionProvider_get_Provider_mA048A519047ACF1FB8AB8604AC985038883688E7(__this, /*hidden argument*/NULL);
|
|
Type_t * L_1 = ___objectType0;
|
|
NullCheck(L_0);
|
|
Type_t * L_2 = VirtFuncInvoker1< Type_t *, Type_t * >::Invoke(10 /* System.Type System.ComponentModel.TypeDescriptionProvider::GetRuntimeType(System.Type) */, L_0, L_1);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.DelegatingTypeDescriptionProvider::GetTypeDescriptor(System.Type,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DelegatingTypeDescriptionProvider_GetTypeDescriptor_mFD091994993864869A433CD2507DE15B70D2A7E6 (DelegatingTypeDescriptionProvider_t1479D886AEC7B0D4A74E19212E904337D5505A56 * __this, Type_t * ___objectType0, RuntimeObject * ___instance1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_0 = DelegatingTypeDescriptionProvider_get_Provider_mA048A519047ACF1FB8AB8604AC985038883688E7(__this, /*hidden argument*/NULL);
|
|
Type_t * L_1 = ___objectType0;
|
|
RuntimeObject * L_2 = ___instance1;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_3 = VirtFuncInvoker2< RuntimeObject*, Type_t *, RuntimeObject * >::Invoke(11 /* System.ComponentModel.ICustomTypeDescriptor System.ComponentModel.TypeDescriptionProvider::GetTypeDescriptor(System.Type,System.Object) */, L_0, L_1, L_2);
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.DelegatingTypeDescriptionProvider::IsSupportedType(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DelegatingTypeDescriptionProvider_IsSupportedType_m6B052A2A06C8C6F22A6A853BB75D93B9BFA2A82F (DelegatingTypeDescriptionProvider_t1479D886AEC7B0D4A74E19212E904337D5505A56 * __this, Type_t * ___type0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
TypeDescriptionProvider_tE390829A953C44525366CA2A733E92642B97B591 * L_0 = DelegatingTypeDescriptionProvider_get_Provider_mA048A519047ACF1FB8AB8604AC985038883688E7(__this, /*hidden argument*/NULL);
|
|
Type_t * L_1 = ___type0;
|
|
NullCheck(L_0);
|
|
bool L_2 = VirtFuncInvoker1< bool, Type_t * >::Invoke(12 /* System.Boolean System.ComponentModel.TypeDescriptionProvider::IsSupportedType(System.Type) */, L_0, L_1);
|
|
return L_2;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.DescriptionAttribute::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DescriptionAttribute__ctor_m4813112E0C52509AA577C0A9A27A8C1D596CFF4E (DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DescriptionAttribute__ctor_m4813112E0C52509AA577C0A9A27A8C1D596CFF4E_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
|
|
DescriptionAttribute__ctor_m5964EBBE5F72FC3B765F2657E0C7A6A9EF1DF2C5(__this, L_0, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.DescriptionAttribute::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DescriptionAttribute__ctor_m5964EBBE5F72FC3B765F2657E0C7A6A9EF1DF2C5 (DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75 * __this, String_t* ___description0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
String_t* L_0 = ___description0;
|
|
__this->set_description_1(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.DescriptionAttribute::get_Description()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DescriptionAttribute_get_Description_m86EA9FDCEF55F6643C195B45A9BA6A58E30875B3 (DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = DescriptionAttribute_get_DescriptionValue_mD892D328BECCFE526144A4B778DCC2B4BC8D45CD_inline(__this, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.DescriptionAttribute::get_DescriptionValue()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DescriptionAttribute_get_DescriptionValue_mD892D328BECCFE526144A4B778DCC2B4BC8D45CD (DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_description_1();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.DescriptionAttribute::set_DescriptionValue(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DescriptionAttribute_set_DescriptionValue_m847FED7026008DA7EBFE3EAAEF5E87DB92F863E8 (DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75 * __this, String_t* ___value0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___value0;
|
|
__this->set_description_1(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.DescriptionAttribute::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DescriptionAttribute_Equals_mD0C91C3BDA1081BC9ECD15B9D8770EC9B8CCCB51 (DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DescriptionAttribute_Equals_mD0C91C3BDA1081BC9ECD15B9D8770EC9B8CCCB51_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75 * V_0 = NULL;
|
|
{
|
|
RuntimeObject * L_0 = ___obj0;
|
|
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75 *)__this))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
RuntimeObject * L_1 = ___obj0;
|
|
V_0 = ((DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75 *)IsInstClass((RuntimeObject*)L_1, DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75_il2cpp_TypeInfo_var));
|
|
DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75 * L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75 * L_3 = V_0;
|
|
NullCheck(L_3);
|
|
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.ComponentModel.DescriptionAttribute::get_Description() */, L_3);
|
|
String_t* L_5 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.ComponentModel.DescriptionAttribute::get_Description() */, __this);
|
|
bool L_6 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_4, L_5, /*hidden argument*/NULL);
|
|
return L_6;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.DescriptionAttribute::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DescriptionAttribute_GetHashCode_m936BEDB9238E6BF727014567451AD7DAC9F2B163 (DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.ComponentModel.DescriptionAttribute::get_Description() */, __this);
|
|
NullCheck(L_0);
|
|
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.DescriptionAttribute::IsDefaultAttribute()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DescriptionAttribute_IsDefaultAttribute_m027507DDAF18946B4CB2FA3015FE73EBAC53D62D (DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DescriptionAttribute_IsDefaultAttribute_m027507DDAF18946B4CB2FA3015FE73EBAC53D62D_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75_il2cpp_TypeInfo_var);
|
|
DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75 * L_0 = ((DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75_StaticFields*)il2cpp_codegen_static_fields_for(DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75_il2cpp_TypeInfo_var))->get_Default_0();
|
|
bool L_1 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, __this, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.DescriptionAttribute::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DescriptionAttribute__cctor_m70E48D1F612C3405E8C981060431512C0374C438 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DescriptionAttribute__cctor_m70E48D1F612C3405E8C981060431512C0374C438_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75 * L_0 = (DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75 *)il2cpp_codegen_object_new(DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75_il2cpp_TypeInfo_var);
|
|
DescriptionAttribute__ctor_m4813112E0C52509AA577C0A9A27A8C1D596CFF4E(L_0, /*hidden argument*/NULL);
|
|
((DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75_StaticFields*)il2cpp_codegen_static_fields_for(DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75_il2cpp_TypeInfo_var))->set_Default_0(L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.Design.CheckoutException::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CheckoutException__ctor_m99DB30C6B66B9586BBAEA4E2072C21402A0CF18C (CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ExternalException__ctor_m39DE380F29DC9851D280AB5D0E8F1F6254B1645A(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.Design.CheckoutException::.ctor(System.String,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CheckoutException__ctor_mBC5CAF08178375CE5A5E0E743F162EB7ABECCD2D (CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * __this, String_t* ___message0, int32_t ___errorCode1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___message0;
|
|
int32_t L_1 = ___errorCode1;
|
|
ExternalException__ctor_m232D22DAF4799CA71B8567B51E7A01B3E492ED8E(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.Design.CheckoutException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CheckoutException__ctor_m955E7A7ADEB8A36809F497725C2E9B30358A315C (CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
|
|
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
|
|
ExternalException__ctor_mFEC5FB15E763D381775B80255162202A3F961FCC(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.Design.CheckoutException::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CheckoutException__cctor_mE8F08B0D0071F76CB275EC05022099FB2A049892 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (CheckoutException__cctor_mE8F08B0D0071F76CB275EC05022099FB2A049892_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteral8D1D87EB6F26A0B87235D69A36E4EBDC49AD6B05, /*hidden argument*/NULL);
|
|
CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 * L_1 = (CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5 *)il2cpp_codegen_object_new(CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_il2cpp_TypeInfo_var);
|
|
CheckoutException__ctor_mBC5CAF08178375CE5A5E0E743F162EB7ABECCD2D(L_1, L_0, ((int32_t)-2147467260), /*hidden argument*/NULL);
|
|
((CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_StaticFields*)il2cpp_codegen_static_fields_for(CheckoutException_tF657C421DAEECE88F94372CEA043DE1D9CCAC9C5_il2cpp_TypeInfo_var))->set_Canceled_17(L_1);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.ComponentModel.LicenseUsageMode System.ComponentModel.Design.DesigntimeLicenseContext::get_UsageMode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DesigntimeLicenseContext_get_UsageMode_m5D057D6F3426FE46F95B02A4000FBDD94221930B (DesigntimeLicenseContext_tFBEF4E72A1E0E7F03A01D35ADFEE86A23F848AA1 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (int32_t)(1);
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.Design.DesigntimeLicenseContext::GetSavedLicenseKey(System.Type,System.Reflection.Assembly)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DesigntimeLicenseContext_GetSavedLicenseKey_m2A635774F25A9E243BFCF6F9DE5FED3B202352B8 (DesigntimeLicenseContext_tFBEF4E72A1E0E7F03A01D35ADFEE86A23F848AA1 * __this, Type_t * ___type0, Assembly_t * ___resourceAssembly1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (String_t*)NULL;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.Design.DesigntimeLicenseContext::SetSavedLicenseKey(System.Type,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DesigntimeLicenseContext_SetSavedLicenseKey_m23E511327310AC151E1B095B17D144E70B401884 (DesigntimeLicenseContext_tFBEF4E72A1E0E7F03A01D35ADFEE86A23F848AA1 * __this, Type_t * ___type0, String_t* ___key1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = __this->get_savedLicenseKeys_0();
|
|
Type_t * L_1 = ___type0;
|
|
NullCheck(L_1);
|
|
String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(31 /* System.String System.Type::get_AssemblyQualifiedName() */, L_1);
|
|
String_t* L_3 = ___key1;
|
|
NullCheck(L_0);
|
|
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(31 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_0, L_2, L_3);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.Design.DesigntimeLicenseContext::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DesigntimeLicenseContext__ctor_mF2389DEF22E3FAE1E69F4F84F0CE6BD871AB0409 (DesigntimeLicenseContext_tFBEF4E72A1E0E7F03A01D35ADFEE86A23F848AA1 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DesigntimeLicenseContext__ctor_mF2389DEF22E3FAE1E69F4F84F0CE6BD871AB0409_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
|
|
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_0, /*hidden argument*/NULL);
|
|
__this->set_savedLicenseKeys_0(L_0);
|
|
LicenseContext__ctor_mAB5FAA290C59283C695E6D1E55E479BC7435AB51(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.Design.DesigntimeLicenseContextSerializer::Deserialize(System.IO.Stream,System.String,System.ComponentModel.Design.RuntimeLicenseContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DesigntimeLicenseContextSerializer_Deserialize_m0B4A6B7AA6D2E9E30670A8EDF545C79420FE7DE0 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___o0, String_t* ___cryptoKey1, RuntimeLicenseContext_t1367392EED5E28C90B5128BF01CA0B846120C641 * ___context2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DesigntimeLicenseContextSerializer_Deserialize_m0B4A6B7AA6D2E9E30670A8EDF545C79420FE7DE0_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject * V_0 = NULL;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
|
|
{
|
|
BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0 * L_0 = (BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0 *)il2cpp_codegen_object_new(BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0_il2cpp_TypeInfo_var);
|
|
BinaryFormatter__ctor_mEA8ADD359BFAC7D9E9B6183FDC1C5C80E0F29806(L_0, /*hidden argument*/NULL);
|
|
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_1 = ___o0;
|
|
NullCheck(L_0);
|
|
RuntimeObject * L_2 = InterfaceFuncInvoker1< RuntimeObject *, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * >::Invoke(0 /* System.Object System.Runtime.Serialization.IFormatter::Deserialize(System.IO.Stream) */, IFormatter_tA0082CE1C045BFE2ACC344FDB54D086775620E7C_il2cpp_TypeInfo_var, L_0, L_1);
|
|
V_0 = L_2;
|
|
RuntimeObject * L_3 = V_0;
|
|
if (!((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_3, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0043;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_4 = V_0;
|
|
V_1 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)Castclass((RuntimeObject*)L_4, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = V_1;
|
|
NullCheck(L_5);
|
|
int32_t L_6 = 0;
|
|
RuntimeObject * L_7 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
|
|
if (!((String_t*)IsInstSealed((RuntimeObject*)L_7, String_t_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0043;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = V_1;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = 0;
|
|
RuntimeObject * L_10 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
String_t* L_11 = ___cryptoKey1;
|
|
bool L_12 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(((String_t*)CastclassSealed((RuntimeObject*)L_10, String_t_il2cpp_TypeInfo_var)), L_11, /*hidden argument*/NULL);
|
|
if (!L_12)
|
|
{
|
|
goto IL_0043;
|
|
}
|
|
}
|
|
{
|
|
RuntimeLicenseContext_t1367392EED5E28C90B5128BF01CA0B846120C641 * L_13 = ___context2;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = V_1;
|
|
NullCheck(L_14);
|
|
int32_t L_15 = 1;
|
|
RuntimeObject * L_16 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
|
|
NullCheck(L_13);
|
|
L_13->set_savedLicenseKeys_1(((Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)CastclassClass((RuntimeObject*)L_16, Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var)));
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.String System.ComponentModel.Design.RuntimeLicenseContext::GetLocalPath(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RuntimeLicenseContext_GetLocalPath_mE9FE2C16545D4E437A8D3CAA6D8D20F995D3E972 (RuntimeLicenseContext_t1367392EED5E28C90B5128BF01CA0B846120C641 * __this, String_t* ___fileName0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (RuntimeLicenseContext_GetLocalPath_mE9FE2C16545D4E437A8D3CAA6D8D20F995D3E972_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * V_0 = NULL;
|
|
{
|
|
String_t* L_0 = ___fileName0;
|
|
Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_1 = (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)il2cpp_codegen_object_new(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var);
|
|
Uri__ctor_mBA69907A1D799CD12ED44B611985B25FE4C626A2(L_1, L_0, /*hidden argument*/NULL);
|
|
V_0 = L_1;
|
|
Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_2 = V_0;
|
|
NullCheck(L_2);
|
|
String_t* L_3 = Uri_get_LocalPath_mA82E33D3A3CC238669E0CE3B7AD298AA9C8695D0(L_2, /*hidden argument*/NULL);
|
|
Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_4 = V_0;
|
|
NullCheck(L_4);
|
|
String_t* L_5 = Uri_get_Fragment_m111666DD668AC59B9F3C3D3CEEEC7F70F6904D41(L_4, /*hidden argument*/NULL);
|
|
String_t* L_6 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_3, L_5, /*hidden argument*/NULL);
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.Design.RuntimeLicenseContext::GetSavedLicenseKey(System.Type,System.Reflection.Assembly)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RuntimeLicenseContext_GetSavedLicenseKey_m7C7989E9FC4CCBD2EB8671ED4312E1643934C20D (RuntimeLicenseContext_t1367392EED5E28C90B5128BF01CA0B846120C641 * __this, Type_t * ___type0, Assembly_t * ___resourceAssembly1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (RuntimeLicenseContext_GetSavedLicenseKey_m7C7989E9FC4CCBD2EB8671ED4312E1643934C20D_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * V_0 = NULL;
|
|
String_t* V_1 = NULL;
|
|
String_t* V_2 = NULL;
|
|
AssemblyU5BU5D_t90BF014AA048450526A42C74F9583341A138DE58* V_3 = NULL;
|
|
int32_t V_4 = 0;
|
|
Assembly_t * V_5 = NULL;
|
|
String_t* V_6 = NULL;
|
|
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * V_7 = NULL;
|
|
String_t* V_8 = NULL;
|
|
String_t* V_9 = NULL;
|
|
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * V_10 = NULL;
|
|
String_t* V_11 = NULL;
|
|
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * V_12 = NULL;
|
|
String_t* V_13 = NULL;
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_14 = NULL;
|
|
String_t* V_15 = NULL;
|
|
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * V_16 = NULL;
|
|
String_t* V_17 = NULL;
|
|
String_t* V_18 = NULL;
|
|
{
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = __this->get_savedLicenseKeys_1();
|
|
if (!L_0)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = __this->get_savedLicenseKeys_1();
|
|
Type_t * L_2 = ___type0;
|
|
NullCheck(L_2);
|
|
String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(31 /* System.String System.Type::get_AssemblyQualifiedName() */, L_2);
|
|
NullCheck(L_1);
|
|
RuntimeObject * L_4 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_1, L_3);
|
|
if (L_4)
|
|
{
|
|
goto IL_026a;
|
|
}
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_5 = __this->get_savedLicenseKeys_1();
|
|
if (L_5)
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_6 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
|
|
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_6, /*hidden argument*/NULL);
|
|
__this->set_savedLicenseKeys_1(L_6);
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
V_0 = (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)NULL;
|
|
Assembly_t * L_7 = ___resourceAssembly1;
|
|
bool L_8 = Assembly_op_Equality_m4B6A318CE4104781ABF30A2BBBCCCFB0FE342316(L_7, (Assembly_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_8)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * L_9 = AppDomain_get_CurrentDomain_m3D3D52C9382D6853E49551DA6182DBC5F1118BF0(/*hidden argument*/NULL);
|
|
NullCheck(L_9);
|
|
AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * L_10 = AppDomain_get_SetupInformation_m0D54A56359F4CB4EB20A40B9C8212C67000D9BB8(L_9, /*hidden argument*/NULL);
|
|
NullCheck(L_10);
|
|
String_t* L_11 = AppDomainSetup_get_LicenseFile_mF15AC0328CB9C99BB56183BE934B0CB208066C18_inline(L_10, /*hidden argument*/NULL);
|
|
V_1 = L_11;
|
|
AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * L_12 = AppDomain_get_CurrentDomain_m3D3D52C9382D6853E49551DA6182DBC5F1118BF0(/*hidden argument*/NULL);
|
|
NullCheck(L_12);
|
|
AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * L_13 = AppDomain_get_SetupInformation_m0D54A56359F4CB4EB20A40B9C8212C67000D9BB8(L_12, /*hidden argument*/NULL);
|
|
NullCheck(L_13);
|
|
String_t* L_14 = AppDomainSetup_get_ApplicationBase_mF644882409BB7CAF59E481600E02733D5CF5C578(L_13, /*hidden argument*/NULL);
|
|
V_2 = L_14;
|
|
String_t* L_15 = V_1;
|
|
if (!L_15)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_16 = V_2;
|
|
if (!L_16)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_17 = V_2;
|
|
Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_18 = (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)il2cpp_codegen_object_new(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var);
|
|
Uri__ctor_mBA69907A1D799CD12ED44B611985B25FE4C626A2(L_18, L_17, /*hidden argument*/NULL);
|
|
String_t* L_19 = V_1;
|
|
Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_20 = (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)il2cpp_codegen_object_new(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var);
|
|
Uri__ctor_m41A759BF295FB902084DD289849793E01A65A14E(L_20, L_18, L_19, /*hidden argument*/NULL);
|
|
V_0 = L_20;
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_21 = V_0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var);
|
|
bool L_22 = Uri_op_Equality_mFED3D4AFAB090B76D2088C485507F8F702ADA18F(L_21, (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)NULL, /*hidden argument*/NULL);
|
|
if (!L_22)
|
|
{
|
|
goto IL_021d;
|
|
}
|
|
}
|
|
{
|
|
Assembly_t * L_23 = ___resourceAssembly1;
|
|
bool L_24 = Assembly_op_Equality_m4B6A318CE4104781ABF30A2BBBCCCFB0FE342316(L_23, (Assembly_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_24)
|
|
{
|
|
goto IL_008b;
|
|
}
|
|
}
|
|
{
|
|
Assembly_t * L_25 = Assembly_GetEntryAssembly_m772FBF677135DBA699343463186D78589751C319(/*hidden argument*/NULL);
|
|
___resourceAssembly1 = L_25;
|
|
}
|
|
|
|
IL_008b:
|
|
{
|
|
Assembly_t * L_26 = ___resourceAssembly1;
|
|
bool L_27 = Assembly_op_Equality_m4B6A318CE4104781ABF30A2BBBCCCFB0FE342316(L_26, (Assembly_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_27)
|
|
{
|
|
goto IL_0134;
|
|
}
|
|
}
|
|
{
|
|
AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * L_28 = AppDomain_get_CurrentDomain_m3D3D52C9382D6853E49551DA6182DBC5F1118BF0(/*hidden argument*/NULL);
|
|
NullCheck(L_28);
|
|
AssemblyU5BU5D_t90BF014AA048450526A42C74F9583341A138DE58* L_29 = AppDomain_GetAssemblies_mF1A63ADFC80562168DF846017BB72CAB09298A23(L_28, /*hidden argument*/NULL);
|
|
V_3 = L_29;
|
|
V_4 = 0;
|
|
goto IL_0125;
|
|
}
|
|
|
|
IL_00a7:
|
|
{
|
|
AssemblyU5BU5D_t90BF014AA048450526A42C74F9583341A138DE58* L_30 = V_3;
|
|
int32_t L_31 = V_4;
|
|
NullCheck(L_30);
|
|
int32_t L_32 = L_31;
|
|
Assembly_t * L_33 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_32));
|
|
V_5 = L_33;
|
|
Assembly_t * L_34 = V_5;
|
|
NullCheck(L_34);
|
|
bool L_35 = VirtFuncInvoker0< bool >::Invoke(29 /* System.Boolean System.Reflection.Assembly::get_IsDynamic() */, L_34);
|
|
if (L_35)
|
|
{
|
|
goto IL_011f;
|
|
}
|
|
}
|
|
{
|
|
Assembly_t * L_36 = V_5;
|
|
NullCheck(L_36);
|
|
String_t* L_37 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.Assembly::get_EscapedCodeBase() */, L_36);
|
|
String_t* L_38 = RuntimeLicenseContext_GetLocalPath_mE9FE2C16545D4E437A8D3CAA6D8D20F995D3E972(__this, L_37, /*hidden argument*/NULL);
|
|
V_6 = L_38;
|
|
String_t* L_39 = V_6;
|
|
FileInfo_tF8C1D41E1ABDAC19BF4F76A491DD28DD8DBEE35C * L_40 = (FileInfo_tF8C1D41E1ABDAC19BF4F76A491DD28DD8DBEE35C *)il2cpp_codegen_object_new(FileInfo_tF8C1D41E1ABDAC19BF4F76A491DD28DD8DBEE35C_il2cpp_TypeInfo_var);
|
|
FileInfo__ctor_m77D19A494A542C924C36FDD8AE5CDBEA97CE68B8(L_40, L_39, /*hidden argument*/NULL);
|
|
NullCheck(L_40);
|
|
String_t* L_41 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.IO.FileSystemInfo::get_Name() */, L_40);
|
|
V_6 = L_41;
|
|
Assembly_t * L_42 = V_5;
|
|
String_t* L_43 = V_6;
|
|
String_t* L_44 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_43, _stringLiteralF3D842AD4321BB405CD53AE09751BDE8F39DCD27, /*hidden argument*/NULL);
|
|
NullCheck(L_42);
|
|
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_45 = VirtFuncInvoker1< Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 *, String_t* >::Invoke(14 /* System.IO.Stream System.Reflection.Assembly::GetManifestResourceStream(System.String) */, L_42, L_44);
|
|
V_7 = L_45;
|
|
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_46 = V_7;
|
|
if (L_46)
|
|
{
|
|
goto IL_0102;
|
|
}
|
|
}
|
|
{
|
|
Assembly_t * L_47 = V_5;
|
|
String_t* L_48 = V_6;
|
|
String_t* L_49 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_48, _stringLiteralF3D842AD4321BB405CD53AE09751BDE8F39DCD27, /*hidden argument*/NULL);
|
|
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_50 = RuntimeLicenseContext_CaseInsensitiveManifestResourceStreamLookup_mE5D3133B975E0F2927C890DA7CBECD6A84D9C60D(__this, L_47, L_49, /*hidden argument*/NULL);
|
|
V_7 = L_50;
|
|
}
|
|
|
|
IL_0102:
|
|
{
|
|
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_51 = V_7;
|
|
if (!L_51)
|
|
{
|
|
goto IL_011f;
|
|
}
|
|
}
|
|
{
|
|
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_52 = V_7;
|
|
String_t* L_53 = V_6;
|
|
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_54 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
|
|
NullCheck(L_53);
|
|
String_t* L_55 = String_ToUpper_m8C69D974350ABA8BA0BC3A66996004CCEFD64293(L_53, L_54, /*hidden argument*/NULL);
|
|
DesigntimeLicenseContextSerializer_Deserialize_m0B4A6B7AA6D2E9E30670A8EDF545C79420FE7DE0(L_52, L_55, __this, /*hidden argument*/NULL);
|
|
goto IL_021d;
|
|
}
|
|
|
|
IL_011f:
|
|
{
|
|
int32_t L_56 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_56, (int32_t)1));
|
|
}
|
|
|
|
IL_0125:
|
|
{
|
|
int32_t L_57 = V_4;
|
|
AssemblyU5BU5D_t90BF014AA048450526A42C74F9583341A138DE58* L_58 = V_3;
|
|
NullCheck(L_58);
|
|
if ((((int32_t)L_57) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_58)->max_length)))))))
|
|
{
|
|
goto IL_00a7;
|
|
}
|
|
}
|
|
{
|
|
goto IL_021d;
|
|
}
|
|
|
|
IL_0134:
|
|
{
|
|
Assembly_t * L_59 = ___resourceAssembly1;
|
|
NullCheck(L_59);
|
|
bool L_60 = VirtFuncInvoker0< bool >::Invoke(29 /* System.Boolean System.Reflection.Assembly::get_IsDynamic() */, L_59);
|
|
if (L_60)
|
|
{
|
|
goto IL_021d;
|
|
}
|
|
}
|
|
{
|
|
Assembly_t * L_61 = ___resourceAssembly1;
|
|
NullCheck(L_61);
|
|
String_t* L_62 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.Assembly::get_EscapedCodeBase() */, L_61);
|
|
String_t* L_63 = RuntimeLicenseContext_GetLocalPath_mE9FE2C16545D4E437A8D3CAA6D8D20F995D3E972(__this, L_62, /*hidden argument*/NULL);
|
|
V_8 = L_63;
|
|
String_t* L_64 = V_8;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var);
|
|
String_t* L_65 = Path_GetFileName_m2307E8E0B250632002840D9EC27DBABE9C4EB85E(L_64, /*hidden argument*/NULL);
|
|
V_8 = L_65;
|
|
String_t* L_66 = V_8;
|
|
String_t* L_67 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_66, _stringLiteralF3D842AD4321BB405CD53AE09751BDE8F39DCD27, /*hidden argument*/NULL);
|
|
V_9 = L_67;
|
|
Assembly_t * L_68 = ___resourceAssembly1;
|
|
String_t* L_69 = V_9;
|
|
NullCheck(L_68);
|
|
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_70 = VirtFuncInvoker1< Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 *, String_t* >::Invoke(14 /* System.IO.Stream System.Reflection.Assembly::GetManifestResourceStream(System.String) */, L_68, L_69);
|
|
V_10 = L_70;
|
|
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_71 = V_10;
|
|
if (L_71)
|
|
{
|
|
goto IL_0205;
|
|
}
|
|
}
|
|
{
|
|
V_11 = (String_t*)NULL;
|
|
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_72 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
|
|
NullCheck(L_72);
|
|
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * L_73 = VirtFuncInvoker0< CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_72);
|
|
V_12 = L_73;
|
|
Assembly_t * L_74 = ___resourceAssembly1;
|
|
NullCheck(L_74);
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_75 = VirtFuncInvoker0< AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * >::Invoke(20 /* System.Reflection.AssemblyName System.Reflection.Assembly::GetName() */, L_74);
|
|
NullCheck(L_75);
|
|
String_t* L_76 = AssemblyName_get_Name_m6EA5C18D2FF050D3AF58D4A21ED39D161DFF218B_inline(L_75, /*hidden argument*/NULL);
|
|
V_13 = L_76;
|
|
Assembly_t * L_77 = ___resourceAssembly1;
|
|
NullCheck(L_77);
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_78 = VirtFuncInvoker0< StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* >::Invoke(23 /* System.String[] System.Reflection.Assembly::GetManifestResourceNames() */, L_77);
|
|
V_14 = L_78;
|
|
V_4 = 0;
|
|
goto IL_01ef;
|
|
}
|
|
|
|
IL_019e:
|
|
{
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_79 = V_14;
|
|
int32_t L_80 = V_4;
|
|
NullCheck(L_79);
|
|
int32_t L_81 = L_80;
|
|
String_t* L_82 = (L_79)->GetAt(static_cast<il2cpp_array_size_t>(L_81));
|
|
V_15 = L_82;
|
|
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * L_83 = V_12;
|
|
String_t* L_84 = V_15;
|
|
String_t* L_85 = V_9;
|
|
NullCheck(L_83);
|
|
int32_t L_86 = VirtFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_83, L_84, L_85, 1);
|
|
if (!L_86)
|
|
{
|
|
goto IL_01e3;
|
|
}
|
|
}
|
|
{
|
|
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * L_87 = V_12;
|
|
String_t* L_88 = V_15;
|
|
String_t* L_89 = V_13;
|
|
String_t* L_90 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_89, _stringLiteral329C4DF77AF3D23BFD895D9936CCFDBC3D7B92F9, /*hidden argument*/NULL);
|
|
NullCheck(L_87);
|
|
int32_t L_91 = VirtFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_87, L_88, L_90, 1);
|
|
if (!L_91)
|
|
{
|
|
goto IL_01e3;
|
|
}
|
|
}
|
|
{
|
|
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * L_92 = V_12;
|
|
String_t* L_93 = V_15;
|
|
String_t* L_94 = V_13;
|
|
String_t* L_95 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_94, _stringLiteralAB3652A72393E757FEBC7A5F9DDEF7BA27B08841, /*hidden argument*/NULL);
|
|
NullCheck(L_92);
|
|
int32_t L_96 = VirtFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_92, L_93, L_95, 1);
|
|
if (L_96)
|
|
{
|
|
goto IL_01e9;
|
|
}
|
|
}
|
|
|
|
IL_01e3:
|
|
{
|
|
String_t* L_97 = V_15;
|
|
V_11 = L_97;
|
|
goto IL_01f7;
|
|
}
|
|
|
|
IL_01e9:
|
|
{
|
|
int32_t L_98 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_98, (int32_t)1));
|
|
}
|
|
|
|
IL_01ef:
|
|
{
|
|
int32_t L_99 = V_4;
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_100 = V_14;
|
|
NullCheck(L_100);
|
|
if ((((int32_t)L_99) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_100)->max_length)))))))
|
|
{
|
|
goto IL_019e;
|
|
}
|
|
}
|
|
|
|
IL_01f7:
|
|
{
|
|
String_t* L_101 = V_11;
|
|
if (!L_101)
|
|
{
|
|
goto IL_0205;
|
|
}
|
|
}
|
|
{
|
|
Assembly_t * L_102 = ___resourceAssembly1;
|
|
String_t* L_103 = V_11;
|
|
NullCheck(L_102);
|
|
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_104 = VirtFuncInvoker1< Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 *, String_t* >::Invoke(14 /* System.IO.Stream System.Reflection.Assembly::GetManifestResourceStream(System.String) */, L_102, L_103);
|
|
V_10 = L_104;
|
|
}
|
|
|
|
IL_0205:
|
|
{
|
|
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_105 = V_10;
|
|
if (!L_105)
|
|
{
|
|
goto IL_021d;
|
|
}
|
|
}
|
|
{
|
|
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_106 = V_10;
|
|
String_t* L_107 = V_8;
|
|
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_108 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
|
|
NullCheck(L_107);
|
|
String_t* L_109 = String_ToUpper_m8C69D974350ABA8BA0BC3A66996004CCEFD64293(L_107, L_108, /*hidden argument*/NULL);
|
|
DesigntimeLicenseContextSerializer_Deserialize_m0B4A6B7AA6D2E9E30670A8EDF545C79420FE7DE0(L_106, L_109, __this, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_021d:
|
|
{
|
|
Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_110 = V_0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var);
|
|
bool L_111 = Uri_op_Inequality_m07015206F59460E87CDE2A8D303D5712E30A7F6B(L_110, (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)NULL, /*hidden argument*/NULL);
|
|
if (!L_111)
|
|
{
|
|
goto IL_026a;
|
|
}
|
|
}
|
|
{
|
|
Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_112 = V_0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(RuntimeLicenseContext_t1367392EED5E28C90B5128BF01CA0B846120C641_il2cpp_TypeInfo_var);
|
|
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_113 = RuntimeLicenseContext_OpenRead_mCE557ABB1B8D5358ED3FA35B11CCD8A181CEA5F0(L_112, /*hidden argument*/NULL);
|
|
V_16 = L_113;
|
|
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_114 = V_16;
|
|
if (!L_114)
|
|
{
|
|
goto IL_026a;
|
|
}
|
|
}
|
|
{
|
|
Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_115 = V_0;
|
|
NullCheck(L_115);
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_116 = Uri_get_Segments_m8DC51AEEA9E2094C435896F4328A963927426AE2(L_115, /*hidden argument*/NULL);
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_117 = L_116;
|
|
NullCheck(L_117);
|
|
NullCheck(L_117);
|
|
int32_t L_118 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_117)->max_length)))), (int32_t)1));
|
|
String_t* L_119 = (L_117)->GetAt(static_cast<il2cpp_array_size_t>(L_118));
|
|
V_17 = L_119;
|
|
String_t* L_120 = V_17;
|
|
String_t* L_121 = V_17;
|
|
NullCheck(L_121);
|
|
int32_t L_122 = String_LastIndexOf_mC924D20DC71F85A7106D9DD09BF41497C6816E20(L_121, _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727, /*hidden argument*/NULL);
|
|
NullCheck(L_120);
|
|
String_t* L_123 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_120, 0, L_122, /*hidden argument*/NULL);
|
|
V_18 = L_123;
|
|
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_124 = V_16;
|
|
String_t* L_125 = V_18;
|
|
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_126 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
|
|
NullCheck(L_125);
|
|
String_t* L_127 = String_ToUpper_m8C69D974350ABA8BA0BC3A66996004CCEFD64293(L_125, L_126, /*hidden argument*/NULL);
|
|
DesigntimeLicenseContextSerializer_Deserialize_m0B4A6B7AA6D2E9E30670A8EDF545C79420FE7DE0(L_124, L_127, __this, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_026a:
|
|
{
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_128 = __this->get_savedLicenseKeys_1();
|
|
Type_t * L_129 = ___type0;
|
|
NullCheck(L_129);
|
|
String_t* L_130 = VirtFuncInvoker0< String_t* >::Invoke(31 /* System.String System.Type::get_AssemblyQualifiedName() */, L_129);
|
|
NullCheck(L_128);
|
|
RuntimeObject * L_131 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_128, L_130);
|
|
return ((String_t*)CastclassSealed((RuntimeObject*)L_131, String_t_il2cpp_TypeInfo_var));
|
|
}
|
|
}
|
|
// System.IO.Stream System.ComponentModel.Design.RuntimeLicenseContext::CaseInsensitiveManifestResourceStreamLookup(System.Reflection.Assembly,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * RuntimeLicenseContext_CaseInsensitiveManifestResourceStreamLookup_mE5D3133B975E0F2927C890DA7CBECD6A84D9C60D (RuntimeLicenseContext_t1367392EED5E28C90B5128BF01CA0B846120C641 * __this, Assembly_t * ___satellite0, String_t* ___name1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (RuntimeLicenseContext_CaseInsensitiveManifestResourceStreamLookup_mE5D3133B975E0F2927C890DA7CBECD6A84D9C60D_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * V_0 = NULL;
|
|
String_t* V_1 = NULL;
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
String_t* V_4 = NULL;
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
|
|
NullCheck(L_0);
|
|
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * L_1 = VirtFuncInvoker0< CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_0);
|
|
V_0 = L_1;
|
|
Assembly_t * L_2 = ___satellite0;
|
|
NullCheck(L_2);
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_3 = VirtFuncInvoker0< AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * >::Invoke(20 /* System.Reflection.AssemblyName System.Reflection.Assembly::GetName() */, L_2);
|
|
NullCheck(L_3);
|
|
String_t* L_4 = AssemblyName_get_Name_m6EA5C18D2FF050D3AF58D4A21ED39D161DFF218B_inline(L_3, /*hidden argument*/NULL);
|
|
V_1 = L_4;
|
|
Assembly_t * L_5 = ___satellite0;
|
|
NullCheck(L_5);
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_6 = VirtFuncInvoker0< StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* >::Invoke(23 /* System.String[] System.Reflection.Assembly::GetManifestResourceNames() */, L_5);
|
|
V_2 = L_6;
|
|
V_3 = 0;
|
|
goto IL_0067;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_7 = V_2;
|
|
int32_t L_8 = V_3;
|
|
NullCheck(L_7);
|
|
int32_t L_9 = L_8;
|
|
String_t* L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
V_4 = L_10;
|
|
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * L_11 = V_0;
|
|
String_t* L_12 = V_4;
|
|
String_t* L_13 = ___name1;
|
|
NullCheck(L_11);
|
|
int32_t L_14 = VirtFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_11, L_12, L_13, 1);
|
|
if (!L_14)
|
|
{
|
|
goto IL_005d;
|
|
}
|
|
}
|
|
{
|
|
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * L_15 = V_0;
|
|
String_t* L_16 = V_4;
|
|
String_t* L_17 = V_1;
|
|
String_t* L_18 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_17, _stringLiteral329C4DF77AF3D23BFD895D9936CCFDBC3D7B92F9, /*hidden argument*/NULL);
|
|
NullCheck(L_15);
|
|
int32_t L_19 = VirtFuncInvoker2< int32_t, String_t*, String_t* >::Invoke(6 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String) */, L_15, L_16, L_18);
|
|
if (!L_19)
|
|
{
|
|
goto IL_005d;
|
|
}
|
|
}
|
|
{
|
|
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * L_20 = V_0;
|
|
String_t* L_21 = V_4;
|
|
String_t* L_22 = V_1;
|
|
String_t* L_23 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_22, _stringLiteralAB3652A72393E757FEBC7A5F9DDEF7BA27B08841, /*hidden argument*/NULL);
|
|
NullCheck(L_20);
|
|
int32_t L_24 = VirtFuncInvoker2< int32_t, String_t*, String_t* >::Invoke(6 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String) */, L_20, L_21, L_23);
|
|
if (L_24)
|
|
{
|
|
goto IL_0063;
|
|
}
|
|
}
|
|
|
|
IL_005d:
|
|
{
|
|
String_t* L_25 = V_4;
|
|
___name1 = L_25;
|
|
goto IL_006d;
|
|
}
|
|
|
|
IL_0063:
|
|
{
|
|
int32_t L_26 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
int32_t L_27 = V_3;
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_28 = V_2;
|
|
NullCheck(L_28);
|
|
if ((((int32_t)L_27) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_28)->max_length)))))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
Assembly_t * L_29 = ___satellite0;
|
|
String_t* L_30 = ___name1;
|
|
NullCheck(L_29);
|
|
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_31 = VirtFuncInvoker1< Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 *, String_t* >::Invoke(14 /* System.IO.Stream System.Reflection.Assembly::GetManifestResourceStream(System.String) */, L_29, L_30);
|
|
return L_31;
|
|
}
|
|
}
|
|
// System.IO.Stream System.ComponentModel.Design.RuntimeLicenseContext::OpenRead(System.Uri)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * RuntimeLicenseContext_OpenRead_mCE557ABB1B8D5358ED3FA35B11CCD8A181CEA5F0 (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * ___resourceUri0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (RuntimeLicenseContext_OpenRead_mCE557ABB1B8D5358ED3FA35B11CCD8A181CEA5F0_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * V_0 = NULL;
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
{
|
|
V_0 = (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 *)NULL;
|
|
}
|
|
|
|
IL_0002:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
WebClient_t0BFD938623FF98FA7EEE0031AB9E8293DD295F6A * L_0 = (WebClient_t0BFD938623FF98FA7EEE0031AB9E8293DD295F6A *)il2cpp_codegen_object_new(WebClient_t0BFD938623FF98FA7EEE0031AB9E8293DD295F6A_il2cpp_TypeInfo_var);
|
|
WebClient__ctor_mCF3ACBA3EA11A7EF963B976A0A504B1911B0249E(L_0, /*hidden argument*/NULL);
|
|
WebClient_t0BFD938623FF98FA7EEE0031AB9E8293DD295F6A * L_1 = L_0;
|
|
RuntimeObject* L_2 = CredentialCache_get_DefaultCredentials_m669684689D1F69432F33D9B1E0ECF53080BB8CDC_inline(/*hidden argument*/NULL);
|
|
NullCheck(L_1);
|
|
WebClient_set_Credentials_mDF72650CD17893531D179F0BF2EBC33005CDF1C7_inline(L_1, L_2, /*hidden argument*/NULL);
|
|
Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_3 = ___resourceUri0;
|
|
NullCheck(L_3);
|
|
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_3);
|
|
NullCheck(L_1);
|
|
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_5 = WebClient_OpenRead_m3FFE890B8B6F2F5C234F074A386282C9A03C0C06(L_1, L_4, /*hidden argument*/NULL);
|
|
V_0 = L_5;
|
|
goto IL_0023;
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__exception_local = (Exception_t *)e.ex;
|
|
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
|
|
goto CATCH_0020;
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0020:
|
|
{ // begin catch(System.Exception)
|
|
goto IL_0023;
|
|
} // end catch (depth: 1)
|
|
|
|
IL_0023:
|
|
{
|
|
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_6 = V_0;
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.Design.RuntimeLicenseContext::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeLicenseContext__ctor_m34027F15B8C84AF7AF0C124458FED83141B480F2 (RuntimeLicenseContext_t1367392EED5E28C90B5128BF01CA0B846120C641 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
LicenseContext__ctor_mAB5FAA290C59283C695E6D1E55E479BC7435AB51(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.Design.RuntimeLicenseContext::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeLicenseContext__cctor_m9999FB104BCFD74FA63DBB9630F76B246686B922 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (RuntimeLicenseContext__cctor_m9999FB104BCFD74FA63DBB9630F76B246686B922_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8 * L_0 = (TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8 *)il2cpp_codegen_object_new(TraceSwitch_t32D210D5C9B05D9E555925260EEC3767BA895EC8_il2cpp_TypeInfo_var);
|
|
TraceSwitch__ctor_mDBA48A8FB03E3CED698799144535B99F84D81008(L_0, _stringLiteral0E28F221178DCB97D13E7229B8D31F66E01ABC3C, _stringLiteral5D9785FB8069AF89133FFF27809C55684BD63A76, /*hidden argument*/NULL);
|
|
((RuntimeLicenseContext_t1367392EED5E28C90B5128BF01CA0B846120C641_StaticFields*)il2cpp_codegen_static_fields_for(RuntimeLicenseContext_t1367392EED5E28C90B5128BF01CA0B846120C641_il2cpp_TypeInfo_var))->set_RuntimeLicenseContextSwitch_0(L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.Design.Serialization.InstanceDescriptor::.ctor(System.Reflection.MemberInfo,System.Collections.ICollection)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InstanceDescriptor__ctor_m90DA8CABB01052EA5C5022E14FE50533254C71DD (InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6 * __this, MemberInfo_t * ___member0, RuntimeObject* ___arguments1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
MemberInfo_t * L_0 = ___member0;
|
|
RuntimeObject* L_1 = ___arguments1;
|
|
InstanceDescriptor__ctor_m47D0A6167384EA496F0734E951DECD7EE576CAC4(__this, L_0, L_1, (bool)1, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.Design.Serialization.InstanceDescriptor::.ctor(System.Reflection.MemberInfo,System.Collections.ICollection,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InstanceDescriptor__ctor_m47D0A6167384EA496F0734E951DECD7EE576CAC4 (InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6 * __this, MemberInfo_t * ___member0, RuntimeObject* ___arguments1, bool ___isComplete2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (InstanceDescriptor__ctor_m47D0A6167384EA496F0734E951DECD7EE576CAC4_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
|
|
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * V_1 = NULL;
|
|
MethodInfo_t * V_2 = NULL;
|
|
MethodInfo_t * V_3 = NULL;
|
|
PropertyInfo_t * G_B21_0 = NULL;
|
|
PropertyInfo_t * G_B20_0 = NULL;
|
|
{
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
MemberInfo_t * L_0 = ___member0;
|
|
__this->set_member_0(L_0);
|
|
bool L_1 = ___isComplete2;
|
|
__this->set_isComplete_2(L_1);
|
|
RuntimeObject* L_2 = ___arguments1;
|
|
if (L_2)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)0);
|
|
__this->set_arguments_1((RuntimeObject*)L_3);
|
|
goto IL_0040;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
RuntimeObject* L_4 = ___arguments1;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_4);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)L_5);
|
|
V_0 = L_6;
|
|
RuntimeObject* L_7 = ___arguments1;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = V_0;
|
|
NullCheck(L_7);
|
|
InterfaceActionInvoker2< RuntimeArray *, int32_t >::Invoke(0 /* System.Void System.Collections.ICollection::CopyTo(System.Array,System.Int32) */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_7, (RuntimeArray *)(RuntimeArray *)L_8, 0);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = V_0;
|
|
__this->set_arguments_1((RuntimeObject*)L_9);
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
MemberInfo_t * L_10 = ___member0;
|
|
if (!((FieldInfo_t *)IsInstClass((RuntimeObject*)L_10, FieldInfo_t_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0085;
|
|
}
|
|
}
|
|
{
|
|
MemberInfo_t * L_11 = ___member0;
|
|
NullCheck(((FieldInfo_t *)CastclassClass((RuntimeObject*)L_11, FieldInfo_t_il2cpp_TypeInfo_var)));
|
|
bool L_12 = FieldInfo_get_IsStatic_mDEB4099D238E5846246F0ACED3FF9AD9C93D8ECA(((FieldInfo_t *)CastclassClass((RuntimeObject*)L_11, FieldInfo_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
|
|
if (L_12)
|
|
{
|
|
goto IL_0065;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_13 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteralF3ECDEC6E621E966D0A2082A6ACA2BD6FA26BF74, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_14 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_14, L_13, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, InstanceDescriptor__ctor_m47D0A6167384EA496F0734E951DECD7EE576CAC4_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0065:
|
|
{
|
|
RuntimeObject* L_15 = __this->get_arguments_1();
|
|
NullCheck(L_15);
|
|
int32_t L_16 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_15);
|
|
if (!L_16)
|
|
{
|
|
goto IL_016d;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_17 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteral1640C6F7C189A2A9E9ACD7B6A396BFF1197DBF13, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_18 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_18, L_17, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, InstanceDescriptor__ctor_m47D0A6167384EA496F0734E951DECD7EE576CAC4_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0085:
|
|
{
|
|
MemberInfo_t * L_19 = ___member0;
|
|
if (!((ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF *)IsInstClass((RuntimeObject*)L_19, ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_00d4;
|
|
}
|
|
}
|
|
{
|
|
MemberInfo_t * L_20 = ___member0;
|
|
V_1 = ((ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF *)CastclassClass((RuntimeObject*)L_20, ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_il2cpp_TypeInfo_var));
|
|
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_21 = V_1;
|
|
NullCheck(L_21);
|
|
bool L_22 = MethodBase_get_IsStatic_m745A9BDA4869DB7CC4886436C52D34855C1270A5(L_21, /*hidden argument*/NULL);
|
|
if (!L_22)
|
|
{
|
|
goto IL_00ac;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_23 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteralEEB95CB75BA932E39D33595B78E1EDA0D6082D2E, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_24 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_24, L_23, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, InstanceDescriptor__ctor_m47D0A6167384EA496F0734E951DECD7EE576CAC4_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
RuntimeObject* L_25 = __this->get_arguments_1();
|
|
NullCheck(L_25);
|
|
int32_t L_26 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_25);
|
|
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_27 = V_1;
|
|
NullCheck(L_27);
|
|
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_28 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(17 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_27);
|
|
NullCheck(L_28);
|
|
if ((((int32_t)L_26) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_28)->max_length)))))))
|
|
{
|
|
goto IL_016d;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_29 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteral1640C6F7C189A2A9E9ACD7B6A396BFF1197DBF13, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_30 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_30, L_29, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_30, InstanceDescriptor__ctor_m47D0A6167384EA496F0734E951DECD7EE576CAC4_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00d4:
|
|
{
|
|
MemberInfo_t * L_31 = ___member0;
|
|
if (!((MethodInfo_t *)IsInstClass((RuntimeObject*)L_31, MethodInfo_t_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0120;
|
|
}
|
|
}
|
|
{
|
|
MemberInfo_t * L_32 = ___member0;
|
|
V_2 = ((MethodInfo_t *)CastclassClass((RuntimeObject*)L_32, MethodInfo_t_il2cpp_TypeInfo_var));
|
|
MethodInfo_t * L_33 = V_2;
|
|
NullCheck(L_33);
|
|
bool L_34 = MethodBase_get_IsStatic_m745A9BDA4869DB7CC4886436C52D34855C1270A5(L_33, /*hidden argument*/NULL);
|
|
if (L_34)
|
|
{
|
|
goto IL_00fb;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_35 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteralF3ECDEC6E621E966D0A2082A6ACA2BD6FA26BF74, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_36 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_36, L_35, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_36, InstanceDescriptor__ctor_m47D0A6167384EA496F0734E951DECD7EE576CAC4_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00fb:
|
|
{
|
|
RuntimeObject* L_37 = __this->get_arguments_1();
|
|
NullCheck(L_37);
|
|
int32_t L_38 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_37);
|
|
MethodInfo_t * L_39 = V_2;
|
|
NullCheck(L_39);
|
|
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_40 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(17 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_39);
|
|
NullCheck(L_40);
|
|
if ((((int32_t)L_38) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_40)->max_length)))))))
|
|
{
|
|
goto IL_016d;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_41 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteral1640C6F7C189A2A9E9ACD7B6A396BFF1197DBF13, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_42 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_42, L_41, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_42, InstanceDescriptor__ctor_m47D0A6167384EA496F0734E951DECD7EE576CAC4_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0120:
|
|
{
|
|
MemberInfo_t * L_43 = ___member0;
|
|
if (!((PropertyInfo_t *)IsInstClass((RuntimeObject*)L_43, PropertyInfo_t_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_016d;
|
|
}
|
|
}
|
|
{
|
|
MemberInfo_t * L_44 = ___member0;
|
|
PropertyInfo_t * L_45 = ((PropertyInfo_t *)CastclassClass((RuntimeObject*)L_44, PropertyInfo_t_il2cpp_TypeInfo_var));
|
|
NullCheck(L_45);
|
|
bool L_46 = VirtFuncInvoker0< bool >::Invoke(17 /* System.Boolean System.Reflection.PropertyInfo::get_CanRead() */, L_45);
|
|
G_B20_0 = L_45;
|
|
if (L_46)
|
|
{
|
|
G_B21_0 = L_45;
|
|
goto IL_0146;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_47 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteral7C775AA84BF023AE1705F93FB623425023545F11, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_48 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_48, L_47, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_48, InstanceDescriptor__ctor_m47D0A6167384EA496F0734E951DECD7EE576CAC4_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0146:
|
|
{
|
|
NullCheck(G_B21_0);
|
|
MethodInfo_t * L_49 = PropertyInfo_GetGetMethod_m90BA90BA1CAFEE1CC273BB8B3BD289890373CB8A(G_B21_0, /*hidden argument*/NULL);
|
|
V_3 = L_49;
|
|
MethodInfo_t * L_50 = V_3;
|
|
bool L_51 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_50, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_51)
|
|
{
|
|
goto IL_016d;
|
|
}
|
|
}
|
|
{
|
|
MethodInfo_t * L_52 = V_3;
|
|
NullCheck(L_52);
|
|
bool L_53 = MethodBase_get_IsStatic_m745A9BDA4869DB7CC4886436C52D34855C1270A5(L_52, /*hidden argument*/NULL);
|
|
if (L_53)
|
|
{
|
|
goto IL_016d;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_54 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteralF3ECDEC6E621E966D0A2082A6ACA2BD6FA26BF74, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_55 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_55, L_54, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_55, InstanceDescriptor__ctor_m47D0A6167384EA496F0734E951DECD7EE576CAC4_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_016d:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.Design.Serialization.InstanceDescriptor::Invoke()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InstanceDescriptor_Invoke_mFA1E52E0F4971ABC4432D30F7CF80304272355C0 (InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (InstanceDescriptor_Invoke_mFA1E52E0F4971ABC4432D30F7CF80304272355C0_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
RuntimeObject* L_0 = __this->get_arguments_1();
|
|
NullCheck(L_0);
|
|
int32_t L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_0);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)L_1);
|
|
V_0 = L_2;
|
|
RuntimeObject* L_3 = __this->get_arguments_1();
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = V_0;
|
|
NullCheck(L_3);
|
|
InterfaceActionInvoker2< RuntimeArray *, int32_t >::Invoke(0 /* System.Void System.Collections.ICollection::CopyTo(System.Array,System.Int32) */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_3, (RuntimeArray *)(RuntimeArray *)L_4, 0);
|
|
V_1 = 0;
|
|
goto IL_0040;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = V_0;
|
|
int32_t L_6 = V_1;
|
|
NullCheck(L_5);
|
|
int32_t L_7 = L_6;
|
|
RuntimeObject * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
|
|
if (!((InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6 *)IsInstSealed((RuntimeObject*)L_8, InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = V_0;
|
|
int32_t L_10 = V_1;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = V_0;
|
|
int32_t L_12 = V_1;
|
|
NullCheck(L_11);
|
|
int32_t L_13 = L_12;
|
|
RuntimeObject * L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
|
|
NullCheck(((InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6 *)CastclassSealed((RuntimeObject*)L_14, InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6_il2cpp_TypeInfo_var)));
|
|
RuntimeObject * L_15 = InstanceDescriptor_Invoke_mFA1E52E0F4971ABC4432D30F7CF80304272355C0(((InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6 *)CastclassSealed((RuntimeObject*)L_14, InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
|
|
NullCheck(L_9);
|
|
ArrayElementTypeCheck (L_9, L_15);
|
|
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(L_10), (RuntimeObject *)L_15);
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
int32_t L_16 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
int32_t L_17 = V_1;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = V_0;
|
|
NullCheck(L_18);
|
|
if ((((int32_t)L_17) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length)))))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
MemberInfo_t * L_19 = __this->get_member_0();
|
|
if (!((ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF *)IsInstClass((RuntimeObject*)L_19, ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0065;
|
|
}
|
|
}
|
|
{
|
|
MemberInfo_t * L_20 = __this->get_member_0();
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = V_0;
|
|
NullCheck(((ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF *)CastclassClass((RuntimeObject*)L_20, ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_il2cpp_TypeInfo_var)));
|
|
RuntimeObject * L_22 = ConstructorInfo_Invoke_m9E7A03EC2DDACA7A9C1E1609D4AB2BE90CD2E2AF(((ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF *)CastclassClass((RuntimeObject*)L_20, ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_il2cpp_TypeInfo_var)), L_21, /*hidden argument*/NULL);
|
|
return L_22;
|
|
}
|
|
|
|
IL_0065:
|
|
{
|
|
MemberInfo_t * L_23 = __this->get_member_0();
|
|
if (!((MethodInfo_t *)IsInstClass((RuntimeObject*)L_23, MethodInfo_t_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0085;
|
|
}
|
|
}
|
|
{
|
|
MemberInfo_t * L_24 = __this->get_member_0();
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_25 = V_0;
|
|
NullCheck(((MethodInfo_t *)CastclassClass((RuntimeObject*)L_24, MethodInfo_t_il2cpp_TypeInfo_var)));
|
|
RuntimeObject * L_26 = MethodBase_Invoke_m471794D56262D9DB5B5A324883030AB16BD39674(((MethodInfo_t *)CastclassClass((RuntimeObject*)L_24, MethodInfo_t_il2cpp_TypeInfo_var)), NULL, L_25, /*hidden argument*/NULL);
|
|
return L_26;
|
|
}
|
|
|
|
IL_0085:
|
|
{
|
|
MemberInfo_t * L_27 = __this->get_member_0();
|
|
if (!((PropertyInfo_t *)IsInstClass((RuntimeObject*)L_27, PropertyInfo_t_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_00a5;
|
|
}
|
|
}
|
|
{
|
|
MemberInfo_t * L_28 = __this->get_member_0();
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_29 = V_0;
|
|
NullCheck(((PropertyInfo_t *)CastclassClass((RuntimeObject*)L_28, PropertyInfo_t_il2cpp_TypeInfo_var)));
|
|
RuntimeObject * L_30 = VirtFuncInvoker2< RuntimeObject *, RuntimeObject *, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* >::Invoke(26 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, ((PropertyInfo_t *)CastclassClass((RuntimeObject*)L_28, PropertyInfo_t_il2cpp_TypeInfo_var)), NULL, L_29);
|
|
return L_30;
|
|
}
|
|
|
|
IL_00a5:
|
|
{
|
|
MemberInfo_t * L_31 = __this->get_member_0();
|
|
if (!((FieldInfo_t *)IsInstClass((RuntimeObject*)L_31, FieldInfo_t_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_00c4;
|
|
}
|
|
}
|
|
{
|
|
MemberInfo_t * L_32 = __this->get_member_0();
|
|
NullCheck(((FieldInfo_t *)CastclassClass((RuntimeObject*)L_32, FieldInfo_t_il2cpp_TypeInfo_var)));
|
|
RuntimeObject * L_33 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(19 /* System.Object System.Reflection.FieldInfo::GetValue(System.Object) */, ((FieldInfo_t *)CastclassClass((RuntimeObject*)L_32, FieldInfo_t_il2cpp_TypeInfo_var)), NULL);
|
|
return L_33;
|
|
}
|
|
|
|
IL_00c4:
|
|
{
|
|
return NULL;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.Design.Serialization.RootDesignerSerializerAttribute::.ctor(System.String,System.String,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RootDesignerSerializerAttribute__ctor_m0F3B236B6A2362EEF20773BC3205FE7DA72AD6AE (RootDesignerSerializerAttribute_tD5A87C7E5CB002D859780E1BEF96D7E1214CC0AA * __this, String_t* ___serializerTypeName0, String_t* ___baseSerializerTypeName1, bool ___reloadable2, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
String_t* L_0 = ___serializerTypeName0;
|
|
__this->set_serializerTypeName_1(L_0);
|
|
String_t* L_1 = ___baseSerializerTypeName1;
|
|
__this->set_serializerBaseTypeName_2(L_1);
|
|
bool L_2 = ___reloadable2;
|
|
__this->set_reloadable_0(L_2);
|
|
return;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.Design.Serialization.RootDesignerSerializerAttribute::get_TypeId()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RootDesignerSerializerAttribute_get_TypeId_mC34D430C36628B810BB11754EAD222F65805D2A7 (RootDesignerSerializerAttribute_tD5A87C7E5CB002D859780E1BEF96D7E1214CC0AA * __this, const RuntimeMethod* method)
|
|
{
|
|
String_t* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
String_t* L_0 = __this->get_typeId_3();
|
|
if (L_0)
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_1 = __this->get_serializerBaseTypeName_2();
|
|
V_0 = L_1;
|
|
String_t* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = String_IndexOf_m2909B8CF585E1BD0C81E11ACA2F48012156FD5BD(L_2, ((int32_t)44), /*hidden argument*/NULL);
|
|
V_1 = L_3;
|
|
int32_t L_4 = V_1;
|
|
if ((((int32_t)L_4) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_5 = V_0;
|
|
int32_t L_6 = V_1;
|
|
NullCheck(L_5);
|
|
String_t* L_7 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_5, 0, L_6, /*hidden argument*/NULL);
|
|
V_0 = L_7;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
Type_t * L_8 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL);
|
|
NullCheck(L_8);
|
|
String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Type::get_FullName() */, L_8);
|
|
String_t* L_10 = V_0;
|
|
String_t* L_11 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_9, L_10, /*hidden argument*/NULL);
|
|
__this->set_typeId_3(L_11);
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
String_t* L_12 = __this->get_typeId_3();
|
|
return L_12;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.DesignOnlyAttribute::.ctor(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DesignOnlyAttribute__ctor_mEBDD48E0B85C8D87398601C52C8FFFD17CB39415 (DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * __this, bool ___isDesignOnly0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
bool L_0 = ___isDesignOnly0;
|
|
__this->set_isDesignOnly_0(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.DesignOnlyAttribute::get_IsDesignOnly()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DesignOnlyAttribute_get_IsDesignOnly_m68CBE6C4AD7154EE82ECD431849BA377756874CF (DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->get_isDesignOnly_0();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.DesignOnlyAttribute::IsDefaultAttribute()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DesignOnlyAttribute_IsDefaultAttribute_m6D873950CDF25510F438ED647346317CA7A647FF (DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DesignOnlyAttribute_IsDefaultAttribute_m6D873950CDF25510F438ED647346317CA7A647FF_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
bool L_0 = DesignOnlyAttribute_get_IsDesignOnly_m68CBE6C4AD7154EE82ECD431849BA377756874CF_inline(__this, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_il2cpp_TypeInfo_var);
|
|
DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * L_1 = ((DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_StaticFields*)il2cpp_codegen_static_fields_for(DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_il2cpp_TypeInfo_var))->get_Default_3();
|
|
NullCheck(L_1);
|
|
bool L_2 = DesignOnlyAttribute_get_IsDesignOnly_m68CBE6C4AD7154EE82ECD431849BA377756874CF_inline(L_1, /*hidden argument*/NULL);
|
|
return (bool)((((int32_t)L_0) == ((int32_t)L_2))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.DesignOnlyAttribute::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DesignOnlyAttribute_Equals_m076651DB673496528EE4BE929689DE99BEAB8B13 (DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DesignOnlyAttribute_Equals_m076651DB673496528EE4BE929689DE99BEAB8B13_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * V_0 = NULL;
|
|
{
|
|
RuntimeObject * L_0 = ___obj0;
|
|
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 *)__this))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
RuntimeObject * L_1 = ___obj0;
|
|
V_0 = ((DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 *)IsInstSealed((RuntimeObject*)L_1, DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_il2cpp_TypeInfo_var));
|
|
DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * L_3 = V_0;
|
|
NullCheck(L_3);
|
|
bool L_4 = L_3->get_isDesignOnly_0();
|
|
bool L_5 = __this->get_isDesignOnly_0();
|
|
return (bool)((((int32_t)L_4) == ((int32_t)L_5))? 1 : 0);
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.DesignOnlyAttribute::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DesignOnlyAttribute_GetHashCode_mADCBF4B2BF7067D02A09CF088C8D69F468C483AF (DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool* L_0 = __this->get_address_of_isDesignOnly_0();
|
|
int32_t L_1 = Boolean_GetHashCode_m92C426D44100ED098FEECC96A743C3CB92DFF737((bool*)L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.DesignOnlyAttribute::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DesignOnlyAttribute__cctor_mB4872B8DD73AE15130706DEC6C80D66903C6D2C6 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DesignOnlyAttribute__cctor_mB4872B8DD73AE15130706DEC6C80D66903C6D2C6_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * L_0 = (DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 *)il2cpp_codegen_object_new(DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_il2cpp_TypeInfo_var);
|
|
DesignOnlyAttribute__ctor_mEBDD48E0B85C8D87398601C52C8FFFD17CB39415(L_0, (bool)1, /*hidden argument*/NULL);
|
|
((DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_StaticFields*)il2cpp_codegen_static_fields_for(DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_il2cpp_TypeInfo_var))->set_Yes_1(L_0);
|
|
DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * L_1 = (DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 *)il2cpp_codegen_object_new(DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_il2cpp_TypeInfo_var);
|
|
DesignOnlyAttribute__ctor_mEBDD48E0B85C8D87398601C52C8FFFD17CB39415(L_1, (bool)0, /*hidden argument*/NULL);
|
|
((DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_StaticFields*)il2cpp_codegen_static_fields_for(DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_il2cpp_TypeInfo_var))->set_No_2(L_1);
|
|
DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * L_2 = ((DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_StaticFields*)il2cpp_codegen_static_fields_for(DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_il2cpp_TypeInfo_var))->get_No_2();
|
|
((DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_StaticFields*)il2cpp_codegen_static_fields_for(DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_il2cpp_TypeInfo_var))->set_Default_3(L_2);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.DesignTimeVisibleAttribute::.ctor(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DesignTimeVisibleAttribute__ctor_m970A7BE0AA7704791B8F16705CD9011A9BDDD098 (DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 * __this, bool ___visible0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
bool L_0 = ___visible0;
|
|
__this->set_visible_0(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.DesignTimeVisibleAttribute::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DesignTimeVisibleAttribute__ctor_m0B646924E7542AFAC9778373AAF56B86491AF06A (DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.DesignTimeVisibleAttribute::get_Visible()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DesignTimeVisibleAttribute_get_Visible_m2C77A86E094E7B13E0D02EE77FE7AACC8C61A9BA (DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->get_visible_0();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.DesignTimeVisibleAttribute::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DesignTimeVisibleAttribute_Equals_m7E683249570BAF44944921858927C5748D045270 (DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DesignTimeVisibleAttribute_Equals_m7E683249570BAF44944921858927C5748D045270_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 * V_0 = NULL;
|
|
{
|
|
RuntimeObject * L_0 = ___obj0;
|
|
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 *)__this))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
RuntimeObject * L_1 = ___obj0;
|
|
V_0 = ((DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 *)IsInstSealed((RuntimeObject*)L_1, DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466_il2cpp_TypeInfo_var));
|
|
DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 * L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 * L_3 = V_0;
|
|
NullCheck(L_3);
|
|
bool L_4 = DesignTimeVisibleAttribute_get_Visible_m2C77A86E094E7B13E0D02EE77FE7AACC8C61A9BA_inline(L_3, /*hidden argument*/NULL);
|
|
bool L_5 = __this->get_visible_0();
|
|
return (bool)((((int32_t)L_4) == ((int32_t)L_5))? 1 : 0);
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.DesignTimeVisibleAttribute::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DesignTimeVisibleAttribute_GetHashCode_mF40EFCB7A2A65302B7C6803151123038933431AE (DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DesignTimeVisibleAttribute_GetHashCode_mF40EFCB7A2A65302B7C6803151123038933431AE_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t G_B2_0 = 0;
|
|
int32_t G_B1_0 = 0;
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B3_1 = 0;
|
|
{
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_0, /*hidden argument*/NULL);
|
|
NullCheck(L_1);
|
|
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_1);
|
|
bool L_3 = __this->get_visible_0();
|
|
G_B1_0 = L_2;
|
|
if (L_3)
|
|
{
|
|
G_B2_0 = L_2;
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
G_B3_0 = 0;
|
|
G_B3_1 = G_B1_0;
|
|
goto IL_001b;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
G_B3_0 = (-1);
|
|
G_B3_1 = G_B2_0;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
return ((int32_t)((int32_t)G_B3_1^(int32_t)G_B3_0));
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.DesignTimeVisibleAttribute::IsDefaultAttribute()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DesignTimeVisibleAttribute_IsDefaultAttribute_mF5ABD1617E07A7A3D85A3053BFF9141344F4A287 (DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DesignTimeVisibleAttribute_IsDefaultAttribute_mF5ABD1617E07A7A3D85A3053BFF9141344F4A287_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
bool L_0 = DesignTimeVisibleAttribute_get_Visible_m2C77A86E094E7B13E0D02EE77FE7AACC8C61A9BA_inline(__this, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466_il2cpp_TypeInfo_var);
|
|
DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 * L_1 = ((DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466_StaticFields*)il2cpp_codegen_static_fields_for(DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466_il2cpp_TypeInfo_var))->get_Default_3();
|
|
NullCheck(L_1);
|
|
bool L_2 = DesignTimeVisibleAttribute_get_Visible_m2C77A86E094E7B13E0D02EE77FE7AACC8C61A9BA_inline(L_1, /*hidden argument*/NULL);
|
|
return (bool)((((int32_t)L_0) == ((int32_t)L_2))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.DesignTimeVisibleAttribute::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DesignTimeVisibleAttribute__cctor_m5A9CAF6E5B4E31A7004E522367C59DE6B6BC1FF2 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DesignTimeVisibleAttribute__cctor_m5A9CAF6E5B4E31A7004E522367C59DE6B6BC1FF2_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 * L_0 = (DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 *)il2cpp_codegen_object_new(DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466_il2cpp_TypeInfo_var);
|
|
DesignTimeVisibleAttribute__ctor_m970A7BE0AA7704791B8F16705CD9011A9BDDD098(L_0, (bool)1, /*hidden argument*/NULL);
|
|
((DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466_StaticFields*)il2cpp_codegen_static_fields_for(DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466_il2cpp_TypeInfo_var))->set_Yes_1(L_0);
|
|
DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 * L_1 = (DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 *)il2cpp_codegen_object_new(DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466_il2cpp_TypeInfo_var);
|
|
DesignTimeVisibleAttribute__ctor_m970A7BE0AA7704791B8F16705CD9011A9BDDD098(L_1, (bool)0, /*hidden argument*/NULL);
|
|
((DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466_StaticFields*)il2cpp_codegen_static_fields_for(DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466_il2cpp_TypeInfo_var))->set_No_2(L_1);
|
|
DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 * L_2 = ((DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466_StaticFields*)il2cpp_codegen_static_fields_for(DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466_il2cpp_TypeInfo_var))->get_Yes_1();
|
|
((DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466_StaticFields*)il2cpp_codegen_static_fields_for(DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466_il2cpp_TypeInfo_var))->set_Default_3(L_2);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.DesignerAttribute::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DesignerAttribute__ctor_m9F223BB1B2B8A3D480FF9854F4775C2A101A443A (DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0 * __this, String_t* ___designerTypeName0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DesignerAttribute__ctor_m9F223BB1B2B8A3D480FF9854F4775C2A101A443A_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
String_t* L_0 = ___designerTypeName0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
|
|
NullCheck(L_0);
|
|
String_ToUpper_m8C69D974350ABA8BA0BC3A66996004CCEFD64293(L_0, L_1, /*hidden argument*/NULL);
|
|
String_t* L_2 = ___designerTypeName0;
|
|
__this->set_designerTypeName_0(L_2);
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (IDesigner_tB0DC62D61F9C80E298D483CDDD55D2E8E5C66AC2_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5 = VirtFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Type::get_FullName() */, L_4);
|
|
__this->set_designerBaseTypeName_1(L_5);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.DesignerAttribute::.ctor(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DesignerAttribute__ctor_m7B2B57260828DEE66CEAA821E0A98900E15B810E (DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0 * __this, Type_t * ___designerType0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DesignerAttribute__ctor_m7B2B57260828DEE66CEAA821E0A98900E15B810E_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
Type_t * L_0 = ___designerType0;
|
|
NullCheck(L_0);
|
|
String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(31 /* System.String System.Type::get_AssemblyQualifiedName() */, L_0);
|
|
__this->set_designerTypeName_0(L_1);
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (IDesigner_tB0DC62D61F9C80E298D483CDDD55D2E8E5C66AC2_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_2, /*hidden argument*/NULL);
|
|
NullCheck(L_3);
|
|
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Type::get_FullName() */, L_3);
|
|
__this->set_designerBaseTypeName_1(L_4);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.DesignerAttribute::.ctor(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DesignerAttribute__ctor_mAE160C4966497B95D77E839B6C56D42721DC4BA8 (DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0 * __this, String_t* ___designerTypeName0, String_t* ___designerBaseTypeName1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DesignerAttribute__ctor_mAE160C4966497B95D77E839B6C56D42721DC4BA8_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
String_t* L_0 = ___designerTypeName0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
|
|
NullCheck(L_0);
|
|
String_ToUpper_m8C69D974350ABA8BA0BC3A66996004CCEFD64293(L_0, L_1, /*hidden argument*/NULL);
|
|
String_t* L_2 = ___designerTypeName0;
|
|
__this->set_designerTypeName_0(L_2);
|
|
String_t* L_3 = ___designerBaseTypeName1;
|
|
__this->set_designerBaseTypeName_1(L_3);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.DesignerAttribute::.ctor(System.String,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DesignerAttribute__ctor_m80FC02525242A357EB829F1FF6E323C243571DF5 (DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0 * __this, String_t* ___designerTypeName0, Type_t * ___designerBaseType1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DesignerAttribute__ctor_m80FC02525242A357EB829F1FF6E323C243571DF5_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
String_t* L_0 = ___designerTypeName0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
|
|
NullCheck(L_0);
|
|
String_ToUpper_m8C69D974350ABA8BA0BC3A66996004CCEFD64293(L_0, L_1, /*hidden argument*/NULL);
|
|
String_t* L_2 = ___designerTypeName0;
|
|
__this->set_designerTypeName_0(L_2);
|
|
Type_t * L_3 = ___designerBaseType1;
|
|
NullCheck(L_3);
|
|
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(31 /* System.String System.Type::get_AssemblyQualifiedName() */, L_3);
|
|
__this->set_designerBaseTypeName_1(L_4);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.DesignerAttribute::.ctor(System.Type,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DesignerAttribute__ctor_mDF19D8BB2461FFE23995B5BA1F975DC1A77B5964 (DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0 * __this, Type_t * ___designerType0, Type_t * ___designerBaseType1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
Type_t * L_0 = ___designerType0;
|
|
NullCheck(L_0);
|
|
String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(31 /* System.String System.Type::get_AssemblyQualifiedName() */, L_0);
|
|
__this->set_designerTypeName_0(L_1);
|
|
Type_t * L_2 = ___designerBaseType1;
|
|
NullCheck(L_2);
|
|
String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(31 /* System.String System.Type::get_AssemblyQualifiedName() */, L_2);
|
|
__this->set_designerBaseTypeName_1(L_3);
|
|
return;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.DesignerAttribute::get_DesignerBaseTypeName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DesignerAttribute_get_DesignerBaseTypeName_mAD0CC16E016DAE5EB60C58A0B7BC5E5361BF1525 (DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_designerBaseTypeName_1();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.DesignerAttribute::get_DesignerTypeName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DesignerAttribute_get_DesignerTypeName_mD51D180F6C7BCA066BE47F54C6082B78088F662B (DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_designerTypeName_0();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.DesignerAttribute::get_TypeId()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * DesignerAttribute_get_TypeId_m5FEB8253BDB826CF1B19CD7CEAE5622ADBFA6A63 (DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0 * __this, const RuntimeMethod* method)
|
|
{
|
|
String_t* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
String_t* L_0 = __this->get_typeId_2();
|
|
if (L_0)
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_1 = __this->get_designerBaseTypeName_1();
|
|
V_0 = L_1;
|
|
String_t* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = String_IndexOf_m2909B8CF585E1BD0C81E11ACA2F48012156FD5BD(L_2, ((int32_t)44), /*hidden argument*/NULL);
|
|
V_1 = L_3;
|
|
int32_t L_4 = V_1;
|
|
if ((((int32_t)L_4) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_5 = V_0;
|
|
int32_t L_6 = V_1;
|
|
NullCheck(L_5);
|
|
String_t* L_7 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_5, 0, L_6, /*hidden argument*/NULL);
|
|
V_0 = L_7;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
Type_t * L_8 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL);
|
|
NullCheck(L_8);
|
|
String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Type::get_FullName() */, L_8);
|
|
String_t* L_10 = V_0;
|
|
String_t* L_11 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_9, L_10, /*hidden argument*/NULL);
|
|
__this->set_typeId_2(L_11);
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
String_t* L_12 = __this->get_typeId_2();
|
|
return L_12;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.DesignerAttribute::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DesignerAttribute_Equals_m8F8B48C9F60766DE6DEB22CB0ED72F2B16C8C659 (DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DesignerAttribute_Equals_m8F8B48C9F60766DE6DEB22CB0ED72F2B16C8C659_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0 * V_0 = NULL;
|
|
{
|
|
RuntimeObject * L_0 = ___obj0;
|
|
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0 *)__this))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
RuntimeObject * L_1 = ___obj0;
|
|
V_0 = ((DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0 *)IsInstSealed((RuntimeObject*)L_1, DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0_il2cpp_TypeInfo_var));
|
|
DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0 * L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0 * L_3 = V_0;
|
|
NullCheck(L_3);
|
|
String_t* L_4 = L_3->get_designerBaseTypeName_1();
|
|
String_t* L_5 = __this->get_designerBaseTypeName_1();
|
|
bool L_6 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_4, L_5, /*hidden argument*/NULL);
|
|
if (!L_6)
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0 * L_7 = V_0;
|
|
NullCheck(L_7);
|
|
String_t* L_8 = L_7->get_designerTypeName_0();
|
|
String_t* L_9 = __this->get_designerTypeName_0();
|
|
bool L_10 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_8, L_9, /*hidden argument*/NULL);
|
|
return L_10;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.DesignerAttribute::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DesignerAttribute_GetHashCode_m756E31506E31D909272E5289ADC2DCB0DA675437 (DesignerAttribute_t55268910CFC6D82065C1A2F68D05DCD3858933D0 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_designerTypeName_0();
|
|
NullCheck(L_0);
|
|
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_0);
|
|
String_t* L_2 = __this->get_designerBaseTypeName_1();
|
|
NullCheck(L_2);
|
|
int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_2);
|
|
return ((int32_t)((int32_t)L_1^(int32_t)L_3));
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.DesignerCategoryAttribute::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DesignerCategoryAttribute__ctor_mF489EBD57068DA5F3FE4DCA8300CB5A78CF34CE0 (DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DesignerCategoryAttribute__ctor_mF489EBD57068DA5F3FE4DCA8300CB5A78CF34CE0_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
|
|
__this->set_category_0(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.DesignerCategoryAttribute::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DesignerCategoryAttribute__ctor_m4699FB87C02E6D4B8E417C462B5BB6F76E0EC694 (DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA * __this, String_t* ___category0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
String_t* L_0 = ___category0;
|
|
__this->set_category_0(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.DesignerCategoryAttribute::get_Category()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DesignerCategoryAttribute_get_Category_mDCB2D0B9A4F5FAD33260300979D52A4A9EC1C80D (DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_category_0();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.DesignerCategoryAttribute::get_TypeId()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * DesignerCategoryAttribute_get_TypeId_mE1C3D89F3555E98D93523CCECD91D2A7235A10FA (DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_typeId_1();
|
|
if (L_0)
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_1 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL);
|
|
NullCheck(L_1);
|
|
String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Type::get_FullName() */, L_1);
|
|
String_t* L_3 = DesignerCategoryAttribute_get_Category_mDCB2D0B9A4F5FAD33260300979D52A4A9EC1C80D_inline(__this, /*hidden argument*/NULL);
|
|
String_t* L_4 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_2, L_3, /*hidden argument*/NULL);
|
|
__this->set_typeId_1(L_4);
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
String_t* L_5 = __this->get_typeId_1();
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.DesignerCategoryAttribute::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DesignerCategoryAttribute_Equals_m7F9DFE7D18B55A1B0B68FBDA034F0FE9CA351CEB (DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DesignerCategoryAttribute_Equals_m7F9DFE7D18B55A1B0B68FBDA034F0FE9CA351CEB_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA * V_0 = NULL;
|
|
{
|
|
RuntimeObject * L_0 = ___obj0;
|
|
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA *)__this))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
RuntimeObject * L_1 = ___obj0;
|
|
V_0 = ((DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA *)IsInstSealed((RuntimeObject*)L_1, DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA_il2cpp_TypeInfo_var));
|
|
DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA * L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA * L_3 = V_0;
|
|
NullCheck(L_3);
|
|
String_t* L_4 = L_3->get_category_0();
|
|
String_t* L_5 = __this->get_category_0();
|
|
bool L_6 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_4, L_5, /*hidden argument*/NULL);
|
|
return L_6;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.DesignerCategoryAttribute::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DesignerCategoryAttribute_GetHashCode_m2CF3EB39D6E5352C9D944679018CE41B6CC2FED4 (DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_category_0();
|
|
NullCheck(L_0);
|
|
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.DesignerCategoryAttribute::IsDefaultAttribute()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DesignerCategoryAttribute_IsDefaultAttribute_m661EFD9151FCBB2DD7BB3E54EB45E4AD26DB6F8F (DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DesignerCategoryAttribute_IsDefaultAttribute_m661EFD9151FCBB2DD7BB3E54EB45E4AD26DB6F8F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = __this->get_category_0();
|
|
IL2CPP_RUNTIME_CLASS_INIT(DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA_il2cpp_TypeInfo_var);
|
|
DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA * L_1 = ((DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA_StaticFields*)il2cpp_codegen_static_fields_for(DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA_il2cpp_TypeInfo_var))->get_Default_3();
|
|
NullCheck(L_1);
|
|
String_t* L_2 = DesignerCategoryAttribute_get_Category_mDCB2D0B9A4F5FAD33260300979D52A4A9EC1C80D_inline(L_1, /*hidden argument*/NULL);
|
|
NullCheck(L_0);
|
|
bool L_3 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_0, L_2, /*hidden argument*/NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.DesignerCategoryAttribute::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DesignerCategoryAttribute__cctor_m5A20D3E6497B394223C44441C654C53794C5B5C4 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DesignerCategoryAttribute__cctor_m5A20D3E6497B394223C44441C654C53794C5B5C4_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA * L_0 = (DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA *)il2cpp_codegen_object_new(DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA_il2cpp_TypeInfo_var);
|
|
DesignerCategoryAttribute__ctor_m4699FB87C02E6D4B8E417C462B5BB6F76E0EC694(L_0, _stringLiteralC92C529E0731C57EFD7550480196484040B33C3E, /*hidden argument*/NULL);
|
|
((DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA_StaticFields*)il2cpp_codegen_static_fields_for(DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA_il2cpp_TypeInfo_var))->set_Component_2(L_0);
|
|
DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA * L_1 = (DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA *)il2cpp_codegen_object_new(DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA_il2cpp_TypeInfo_var);
|
|
DesignerCategoryAttribute__ctor_mF489EBD57068DA5F3FE4DCA8300CB5A78CF34CE0(L_1, /*hidden argument*/NULL);
|
|
((DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA_StaticFields*)il2cpp_codegen_static_fields_for(DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA_il2cpp_TypeInfo_var))->set_Default_3(L_1);
|
|
DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA * L_2 = (DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA *)il2cpp_codegen_object_new(DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA_il2cpp_TypeInfo_var);
|
|
DesignerCategoryAttribute__ctor_m4699FB87C02E6D4B8E417C462B5BB6F76E0EC694(L_2, _stringLiteral80446347EDE53CF9CE56B3D59FDA4B5C96DC25C4, /*hidden argument*/NULL);
|
|
((DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA_StaticFields*)il2cpp_codegen_static_fields_for(DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA_il2cpp_TypeInfo_var))->set_Form_4(L_2);
|
|
DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA * L_3 = (DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA *)il2cpp_codegen_object_new(DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA_il2cpp_TypeInfo_var);
|
|
DesignerCategoryAttribute__ctor_m4699FB87C02E6D4B8E417C462B5BB6F76E0EC694(L_3, _stringLiteral639DCAE81E8176EA6721A202074516B85370C71D, /*hidden argument*/NULL);
|
|
((DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA_StaticFields*)il2cpp_codegen_static_fields_for(DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA_il2cpp_TypeInfo_var))->set_Generic_5(L_3);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.DesignerSerializationVisibilityAttribute::.ctor(System.ComponentModel.DesignerSerializationVisibility)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DesignerSerializationVisibilityAttribute__ctor_m5DCCCF10B65CB984ACAA2C821CD59E0A5591CC91 (DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * __this, int32_t ___visibility0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
int32_t L_0 = ___visibility0;
|
|
__this->set_visibility_4(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.ComponentModel.DesignerSerializationVisibility System.ComponentModel.DesignerSerializationVisibilityAttribute::get_Visibility()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DesignerSerializationVisibilityAttribute_get_Visibility_mAE359C5749C4000C2A382C64B1DCFC3AC4B2FFC5 (DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->get_visibility_4();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.DesignerSerializationVisibilityAttribute::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DesignerSerializationVisibilityAttribute_Equals_mC35A99157702232DE7952D5A7275DA7204E0294F (DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DesignerSerializationVisibilityAttribute_Equals_mC35A99157702232DE7952D5A7275DA7204E0294F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * V_0 = NULL;
|
|
{
|
|
RuntimeObject * L_0 = ___obj0;
|
|
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA *)__this))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
RuntimeObject * L_1 = ___obj0;
|
|
V_0 = ((DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA *)IsInstSealed((RuntimeObject*)L_1, DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_il2cpp_TypeInfo_var));
|
|
DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * L_3 = V_0;
|
|
NullCheck(L_3);
|
|
int32_t L_4 = DesignerSerializationVisibilityAttribute_get_Visibility_mAE359C5749C4000C2A382C64B1DCFC3AC4B2FFC5_inline(L_3, /*hidden argument*/NULL);
|
|
int32_t L_5 = __this->get_visibility_4();
|
|
return (bool)((((int32_t)L_4) == ((int32_t)L_5))? 1 : 0);
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.DesignerSerializationVisibilityAttribute::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DesignerSerializationVisibilityAttribute_GetHashCode_m0DA75A13695D5C191EDF0C7918E3AF166E1805C7 (DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B(__this, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.DesignerSerializationVisibilityAttribute::IsDefaultAttribute()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DesignerSerializationVisibilityAttribute_IsDefaultAttribute_mA881E4CCC85E9269F90BCEA231073875C653605E (DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DesignerSerializationVisibilityAttribute_IsDefaultAttribute_mA881E4CCC85E9269F90BCEA231073875C653605E_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_il2cpp_TypeInfo_var);
|
|
DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * L_0 = ((DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_StaticFields*)il2cpp_codegen_static_fields_for(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_il2cpp_TypeInfo_var))->get_Default_3();
|
|
bool L_1 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, __this, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.DesignerSerializationVisibilityAttribute::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DesignerSerializationVisibilityAttribute__cctor_mEB0BCCD12F1113C50BF1C0364EF2A99E41AD424A (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DesignerSerializationVisibilityAttribute__cctor_mEB0BCCD12F1113C50BF1C0364EF2A99E41AD424A_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * L_0 = (DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA *)il2cpp_codegen_object_new(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_il2cpp_TypeInfo_var);
|
|
DesignerSerializationVisibilityAttribute__ctor_m5DCCCF10B65CB984ACAA2C821CD59E0A5591CC91(L_0, 2, /*hidden argument*/NULL);
|
|
((DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_StaticFields*)il2cpp_codegen_static_fields_for(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_il2cpp_TypeInfo_var))->set_Content_0(L_0);
|
|
DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * L_1 = (DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA *)il2cpp_codegen_object_new(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_il2cpp_TypeInfo_var);
|
|
DesignerSerializationVisibilityAttribute__ctor_m5DCCCF10B65CB984ACAA2C821CD59E0A5591CC91(L_1, 0, /*hidden argument*/NULL);
|
|
((DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_StaticFields*)il2cpp_codegen_static_fields_for(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_il2cpp_TypeInfo_var))->set_Hidden_1(L_1);
|
|
DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * L_2 = (DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA *)il2cpp_codegen_object_new(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_il2cpp_TypeInfo_var);
|
|
DesignerSerializationVisibilityAttribute__ctor_m5DCCCF10B65CB984ACAA2C821CD59E0A5591CC91(L_2, 1, /*hidden argument*/NULL);
|
|
((DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_StaticFields*)il2cpp_codegen_static_fields_for(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_il2cpp_TypeInfo_var))->set_Visible_2(L_2);
|
|
DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * L_3 = ((DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_StaticFields*)il2cpp_codegen_static_fields_for(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_il2cpp_TypeInfo_var))->get_Visible_2();
|
|
((DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_StaticFields*)il2cpp_codegen_static_fields_for(DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_il2cpp_TypeInfo_var))->set_Default_3(L_3);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.DisplayNameAttribute::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DisplayNameAttribute__ctor_mCA2BCC655453F00B75B3E6E072777304FA3599A9 (DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DisplayNameAttribute__ctor_mCA2BCC655453F00B75B3E6E072777304FA3599A9_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
|
|
DisplayNameAttribute__ctor_m3D4B66E435734FFA29B405B346956880AD44AF5B(__this, L_0, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.DisplayNameAttribute::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DisplayNameAttribute__ctor_m3D4B66E435734FFA29B405B346956880AD44AF5B (DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE * __this, String_t* ___displayName0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
String_t* L_0 = ___displayName0;
|
|
__this->set__displayName_1(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.DisplayNameAttribute::get_DisplayName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DisplayNameAttribute_get_DisplayName_mC1FE61B42690D98511D52340E04E6C54D1F4D494 (DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = DisplayNameAttribute_get_DisplayNameValue_m6A75B8CBDD8F55609180D19E79E74BF7656F9163_inline(__this, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.DisplayNameAttribute::get_DisplayNameValue()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DisplayNameAttribute_get_DisplayNameValue_m6A75B8CBDD8F55609180D19E79E74BF7656F9163 (DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get__displayName_1();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.DisplayNameAttribute::set_DisplayNameValue(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DisplayNameAttribute_set_DisplayNameValue_m44D90F2F66EF3F35DDC6EEBFFA9ECFE7B10A6DE0 (DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE * __this, String_t* ___value0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___value0;
|
|
__this->set__displayName_1(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.DisplayNameAttribute::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DisplayNameAttribute_Equals_m7893F7A4E50D758CC46D15D3C7FE754471FA51AE (DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DisplayNameAttribute_Equals_m7893F7A4E50D758CC46D15D3C7FE754471FA51AE_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE * V_0 = NULL;
|
|
{
|
|
RuntimeObject * L_0 = ___obj0;
|
|
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE *)__this))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
RuntimeObject * L_1 = ___obj0;
|
|
V_0 = ((DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE *)IsInstClass((RuntimeObject*)L_1, DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE_il2cpp_TypeInfo_var));
|
|
DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE * L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE * L_3 = V_0;
|
|
NullCheck(L_3);
|
|
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.ComponentModel.DisplayNameAttribute::get_DisplayName() */, L_3);
|
|
String_t* L_5 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.ComponentModel.DisplayNameAttribute::get_DisplayName() */, __this);
|
|
bool L_6 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_4, L_5, /*hidden argument*/NULL);
|
|
return L_6;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.DisplayNameAttribute::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DisplayNameAttribute_GetHashCode_m1369380C57DDC20FEBAFC4562305B7BAF52A1F64 (DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.ComponentModel.DisplayNameAttribute::get_DisplayName() */, __this);
|
|
NullCheck(L_0);
|
|
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.DisplayNameAttribute::IsDefaultAttribute()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DisplayNameAttribute_IsDefaultAttribute_m9835E20454EBC53D6F16D5B74B356EDA465D6FE2 (DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DisplayNameAttribute_IsDefaultAttribute_m9835E20454EBC53D6F16D5B74B356EDA465D6FE2_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE_il2cpp_TypeInfo_var);
|
|
DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE * L_0 = ((DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE_StaticFields*)il2cpp_codegen_static_fields_for(DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE_il2cpp_TypeInfo_var))->get_Default_0();
|
|
bool L_1 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, __this, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.DisplayNameAttribute::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DisplayNameAttribute__cctor_m42C8D9A551BF01816245A28D6291C7F17E29910F (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DisplayNameAttribute__cctor_m42C8D9A551BF01816245A28D6291C7F17E29910F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE * L_0 = (DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE *)il2cpp_codegen_object_new(DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE_il2cpp_TypeInfo_var);
|
|
DisplayNameAttribute__ctor_mCA2BCC655453F00B75B3E6E072777304FA3599A9(L_0, /*hidden argument*/NULL);
|
|
((DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE_StaticFields*)il2cpp_codegen_static_fields_for(DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE_il2cpp_TypeInfo_var))->set_Default_0(L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.DoWorkEventArgs::.ctor(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DoWorkEventArgs__ctor_m1808B6408495CB81A503F2803FB1A4272288BC76 (DoWorkEventArgs_t66930F141A21B5E954CE70A24AD0446E2CD5F606 * __this, RuntimeObject * ___argument0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
CancelEventArgs__ctor_m117DC81FF8BAEBB33345EF3C8444D94E15F78B0C(__this, /*hidden argument*/NULL);
|
|
RuntimeObject * L_0 = ___argument0;
|
|
__this->set_argument_3(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.DoWorkEventArgs::get_Argument()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * DoWorkEventArgs_get_Argument_mA6DB21619D549EEAE18C71219FD6FC2213AC70BD (DoWorkEventArgs_t66930F141A21B5E954CE70A24AD0446E2CD5F606 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject * L_0 = __this->get_argument_3();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.DoWorkEventArgs::get_Result()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * DoWorkEventArgs_get_Result_mC1102459AFC48D7CDB54C95B8F7177F168EC016A (DoWorkEventArgs_t66930F141A21B5E954CE70A24AD0446E2CD5F606 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject * L_0 = __this->get_result_2();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.DoWorkEventArgs::set_Result(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DoWorkEventArgs_set_Result_m11842129B818483BC23F7328F6675F5161F973D4 (DoWorkEventArgs_t66930F141A21B5E954CE70A24AD0446E2CD5F606 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject * L_0 = ___value0;
|
|
__this->set_result_2(L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.DoWorkEventHandler::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DoWorkEventHandler__ctor_mE0A3B8FC56EFDB363D080AC315DF53D7FE2E6142 (DoWorkEventHandler_t106AA6C0F543A5A4998F9E9E73F4461D404F20DD * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
|
|
{
|
|
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
|
|
__this->set_method_3(___method1);
|
|
__this->set_m_target_2(___object0);
|
|
}
|
|
// System.Void System.ComponentModel.DoWorkEventHandler::Invoke(System.Object,System.ComponentModel.DoWorkEventArgs)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DoWorkEventHandler_Invoke_m12910A48E229DC976D080DD809934D9C86711A56 (DoWorkEventHandler_t106AA6C0F543A5A4998F9E9E73F4461D404F20DD * __this, RuntimeObject * ___sender0, DoWorkEventArgs_t66930F141A21B5E954CE70A24AD0446E2CD5F606 * ___e1, const RuntimeMethod* method)
|
|
{
|
|
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
|
|
Delegate_t** delegatesToInvoke;
|
|
il2cpp_array_size_t length;
|
|
if (delegateArrayToInvoke != NULL)
|
|
{
|
|
length = delegateArrayToInvoke->max_length;
|
|
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
|
|
}
|
|
else
|
|
{
|
|
length = 1;
|
|
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
|
|
}
|
|
|
|
for (il2cpp_array_size_t i = 0; i < length; i++)
|
|
{
|
|
Delegate_t* currentDelegate = delegatesToInvoke[i];
|
|
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
|
|
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
|
|
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
|
|
if (!il2cpp_codegen_method_is_virtual(targetMethod))
|
|
{
|
|
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
|
|
}
|
|
bool ___methodIsStatic = MethodIsStatic(targetMethod);
|
|
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
|
|
if (___methodIsStatic)
|
|
{
|
|
if (___parameterCount == 2)
|
|
{
|
|
// open
|
|
typedef void (*FunctionPointerType) (RuntimeObject *, DoWorkEventArgs_t66930F141A21B5E954CE70A24AD0446E2CD5F606 *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod);
|
|
}
|
|
else
|
|
{
|
|
// closed
|
|
typedef void (*FunctionPointerType) (void*, RuntimeObject *, DoWorkEventArgs_t66930F141A21B5E954CE70A24AD0446E2CD5F606 *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___e1, targetMethod);
|
|
}
|
|
}
|
|
else if (___parameterCount != 2)
|
|
{
|
|
// open
|
|
if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
|
|
{
|
|
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
GenericInterfaceActionInvoker1< DoWorkEventArgs_t66930F141A21B5E954CE70A24AD0446E2CD5F606 * >::Invoke(targetMethod, ___sender0, ___e1);
|
|
else
|
|
GenericVirtActionInvoker1< DoWorkEventArgs_t66930F141A21B5E954CE70A24AD0446E2CD5F606 * >::Invoke(targetMethod, ___sender0, ___e1);
|
|
}
|
|
else
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
InterfaceActionInvoker1< DoWorkEventArgs_t66930F141A21B5E954CE70A24AD0446E2CD5F606 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___sender0, ___e1);
|
|
else
|
|
VirtActionInvoker1< DoWorkEventArgs_t66930F141A21B5E954CE70A24AD0446E2CD5F606 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___sender0, ___e1);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___e1) - 1), targetMethod);
|
|
}
|
|
typedef void (*FunctionPointerType) (RuntimeObject *, DoWorkEventArgs_t66930F141A21B5E954CE70A24AD0446E2CD5F606 *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// closed
|
|
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
|
|
{
|
|
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
GenericInterfaceActionInvoker2< RuntimeObject *, DoWorkEventArgs_t66930F141A21B5E954CE70A24AD0446E2CD5F606 * >::Invoke(targetMethod, targetThis, ___sender0, ___e1);
|
|
else
|
|
GenericVirtActionInvoker2< RuntimeObject *, DoWorkEventArgs_t66930F141A21B5E954CE70A24AD0446E2CD5F606 * >::Invoke(targetMethod, targetThis, ___sender0, ___e1);
|
|
}
|
|
else
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
InterfaceActionInvoker2< RuntimeObject *, DoWorkEventArgs_t66930F141A21B5E954CE70A24AD0446E2CD5F606 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___sender0, ___e1);
|
|
else
|
|
VirtActionInvoker2< RuntimeObject *, DoWorkEventArgs_t66930F141A21B5E954CE70A24AD0446E2CD5F606 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___sender0, ___e1);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, DoWorkEventArgs_t66930F141A21B5E954CE70A24AD0446E2CD5F606 *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___sender0) - 1), ___e1, targetMethod);
|
|
}
|
|
if (targetThis == NULL)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject *, DoWorkEventArgs_t66930F141A21B5E954CE70A24AD0446E2CD5F606 *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod);
|
|
}
|
|
else
|
|
{
|
|
typedef void (*FunctionPointerType) (void*, RuntimeObject *, DoWorkEventArgs_t66930F141A21B5E954CE70A24AD0446E2CD5F606 *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___e1, targetMethod);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// System.IAsyncResult System.ComponentModel.DoWorkEventHandler::BeginInvoke(System.Object,System.ComponentModel.DoWorkEventArgs,System.AsyncCallback,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DoWorkEventHandler_BeginInvoke_m2F6A69DF12080D9879ADD8C00BBF845059A1AF8F (DoWorkEventHandler_t106AA6C0F543A5A4998F9E9E73F4461D404F20DD * __this, RuntimeObject * ___sender0, DoWorkEventArgs_t66930F141A21B5E954CE70A24AD0446E2CD5F606 * ___e1, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
|
|
{
|
|
void *__d_args[3] = {0};
|
|
__d_args[0] = ___sender0;
|
|
__d_args[1] = ___e1;
|
|
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
|
|
}
|
|
// System.Void System.ComponentModel.DoWorkEventHandler::EndInvoke(System.IAsyncResult)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DoWorkEventHandler_EndInvoke_mC312C5DB3253FEE71F79EED2025AD7B4D76B2E55 (DoWorkEventHandler_t106AA6C0F543A5A4998F9E9E73F4461D404F20DD * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Boolean System.ComponentModel.DoubleConverter::get_AllowHex()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DoubleConverter_get_AllowHex_mDB902FA678E2823F8775CF2410F8BCFD45135A9A (DoubleConverter_t65A5D8B0C2736FC5469CE5DFA468D371DD5F9F75 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Type System.ComponentModel.DoubleConverter::get_TargetType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * DoubleConverter_get_TargetType_mE2AA85910CF4D5EE2857F5472FAD6F60E96FDA6E (DoubleConverter_t65A5D8B0C2736FC5469CE5DFA468D371DD5F9F75 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DoubleConverter_get_TargetType_mE2AA85910CF4D5EE2857F5472FAD6F60E96FDA6E_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.DoubleConverter::FromString(System.String,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * DoubleConverter_FromString_mDCD894BDC0A4DFB12E269CE8FF72B377691E4095 (DoubleConverter_t65A5D8B0C2736FC5469CE5DFA468D371DD5F9F75 * __this, String_t* ___value0, int32_t ___radix1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DoubleConverter_FromString_mDCD894BDC0A4DFB12E269CE8FF72B377691E4095_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___value0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
double L_2 = Convert_ToDouble_m8EAF69AB183D6DF604898A3EDE5A27A4AFBFF1D8(L_0, L_1, /*hidden argument*/NULL);
|
|
double L_3 = L_2;
|
|
RuntimeObject * L_4 = Box(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var, &L_3);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.DoubleConverter::FromString(System.String,System.Globalization.NumberFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * DoubleConverter_FromString_m0FA24E767CC4FFA9CFD7B7CE0D382A0CA8903980 (DoubleConverter_t65A5D8B0C2736FC5469CE5DFA468D371DD5F9F75 * __this, String_t* ___value0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___formatInfo1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DoubleConverter_FromString_m0FA24E767CC4FFA9CFD7B7CE0D382A0CA8903980_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___value0;
|
|
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = ___formatInfo1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var);
|
|
double L_2 = Double_Parse_m52FA2C773282C04605DA871AC7093A66FA8A746B(L_0, ((int32_t)167), L_1, /*hidden argument*/NULL);
|
|
double L_3 = L_2;
|
|
RuntimeObject * L_4 = Box(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var, &L_3);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.DoubleConverter::FromString(System.String,System.Globalization.CultureInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * DoubleConverter_FromString_mFC898691E3FC0C34E4BAB3643645E081F4FF3347 (DoubleConverter_t65A5D8B0C2736FC5469CE5DFA468D371DD5F9F75 * __this, String_t* ___value0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DoubleConverter_FromString_mFC898691E3FC0C34E4BAB3643645E081F4FF3347_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___value0;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = ___culture1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var);
|
|
double L_2 = Double_Parse_m598B75F6A7C50F719F439CF354BDDD22B9AF8C67(L_0, L_1, /*hidden argument*/NULL);
|
|
double L_3 = L_2;
|
|
RuntimeObject * L_4 = Box(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var, &L_3);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.DoubleConverter::ToString(System.Object,System.Globalization.NumberFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DoubleConverter_ToString_m9C99B65F40B918222ED348FA19F750EC02DCD72B (DoubleConverter_t65A5D8B0C2736FC5469CE5DFA468D371DD5F9F75 * __this, RuntimeObject * ___value0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___formatInfo1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (DoubleConverter_ToString_m9C99B65F40B918222ED348FA19F750EC02DCD72B_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
double V_0 = 0.0;
|
|
{
|
|
RuntimeObject * L_0 = ___value0;
|
|
V_0 = ((*(double*)((double*)UnBox(L_0, Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var))));
|
|
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = ___formatInfo1;
|
|
String_t* L_2 = Double_ToString_m1D341E667E85E9E18783A14CB02982643E96C616((double*)(&V_0), _stringLiteral06576556D1AD802F247CAD11AE748BE47B70CD9C, L_1, /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.DoubleConverter::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DoubleConverter__ctor_m419F1E782FFBC765D22792D76E56D54FC94E6AEB (DoubleConverter_t65A5D8B0C2736FC5469CE5DFA468D371DD5F9F75 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BaseNumberConverter__ctor_mD78E1C7E1F8A977BC7AD33DB0C1E5E32C60E8E83(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.EditorAttribute::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EditorAttribute__ctor_m0E590539E56DE135B904C5CA55A7DF0B5385A321 (EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EditorAttribute__ctor_m0E590539E56DE135B904C5CA55A7DF0B5385A321_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
|
|
__this->set_typeName_1(L_0);
|
|
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
|
|
__this->set_baseTypeName_0(L_1);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.EditorAttribute::.ctor(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EditorAttribute__ctor_mD871819F1E1FDCA508055C1384044C8C1E383B63 (EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * __this, String_t* ___typeName0, String_t* ___baseTypeName1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
String_t* L_0 = ___typeName0;
|
|
NullCheck(L_0);
|
|
String_ToUpperInvariant_m0AA42416F4CACA4D0E3B89D97E534D88AB136338(L_0, /*hidden argument*/NULL);
|
|
String_t* L_1 = ___typeName0;
|
|
__this->set_typeName_1(L_1);
|
|
String_t* L_2 = ___baseTypeName1;
|
|
__this->set_baseTypeName_0(L_2);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.EditorAttribute::.ctor(System.String,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EditorAttribute__ctor_m69D314C192B9341D68126A648A759BEEC8A4A8B4 (EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * __this, String_t* ___typeName0, Type_t * ___baseType1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
String_t* L_0 = ___typeName0;
|
|
NullCheck(L_0);
|
|
String_ToUpperInvariant_m0AA42416F4CACA4D0E3B89D97E534D88AB136338(L_0, /*hidden argument*/NULL);
|
|
String_t* L_1 = ___typeName0;
|
|
__this->set_typeName_1(L_1);
|
|
Type_t * L_2 = ___baseType1;
|
|
NullCheck(L_2);
|
|
String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(31 /* System.String System.Type::get_AssemblyQualifiedName() */, L_2);
|
|
__this->set_baseTypeName_0(L_3);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.EditorAttribute::.ctor(System.Type,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EditorAttribute__ctor_m4109934B06A665D93ED2A57EFDFC3323E6088E9B (EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * __this, Type_t * ___type0, Type_t * ___baseType1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
Type_t * L_0 = ___type0;
|
|
NullCheck(L_0);
|
|
String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(31 /* System.String System.Type::get_AssemblyQualifiedName() */, L_0);
|
|
__this->set_typeName_1(L_1);
|
|
Type_t * L_2 = ___baseType1;
|
|
NullCheck(L_2);
|
|
String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(31 /* System.String System.Type::get_AssemblyQualifiedName() */, L_2);
|
|
__this->set_baseTypeName_0(L_3);
|
|
return;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.EditorAttribute::get_EditorBaseTypeName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EditorAttribute_get_EditorBaseTypeName_m41C1E4DD17CF8A2C14A8C8A8E783687FF2C241D1 (EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_baseTypeName_0();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.EditorAttribute::get_EditorTypeName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EditorAttribute_get_EditorTypeName_m0C6CD2A9C2905C7E774825F77B26BF6D842C6090 (EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_typeName_1();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.EditorAttribute::get_TypeId()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EditorAttribute_get_TypeId_m2016C62C0B845E4C2E2C62CDB963FB3E4D88949D (EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * __this, const RuntimeMethod* method)
|
|
{
|
|
String_t* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
String_t* L_0 = __this->get_typeId_2();
|
|
if (L_0)
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_1 = __this->get_baseTypeName_0();
|
|
V_0 = L_1;
|
|
String_t* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = String_IndexOf_m2909B8CF585E1BD0C81E11ACA2F48012156FD5BD(L_2, ((int32_t)44), /*hidden argument*/NULL);
|
|
V_1 = L_3;
|
|
int32_t L_4 = V_1;
|
|
if ((((int32_t)L_4) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_5 = V_0;
|
|
int32_t L_6 = V_1;
|
|
NullCheck(L_5);
|
|
String_t* L_7 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_5, 0, L_6, /*hidden argument*/NULL);
|
|
V_0 = L_7;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
Type_t * L_8 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL);
|
|
NullCheck(L_8);
|
|
String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Type::get_FullName() */, L_8);
|
|
String_t* L_10 = V_0;
|
|
String_t* L_11 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_9, L_10, /*hidden argument*/NULL);
|
|
__this->set_typeId_2(L_11);
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
String_t* L_12 = __this->get_typeId_2();
|
|
return L_12;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.EditorAttribute::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EditorAttribute_Equals_m532ECC69F7C9BE32A90FCBA6DB7059F33F34BAF2 (EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EditorAttribute_Equals_m532ECC69F7C9BE32A90FCBA6DB7059F33F34BAF2_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * V_0 = NULL;
|
|
{
|
|
RuntimeObject * L_0 = ___obj0;
|
|
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 *)__this))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
RuntimeObject * L_1 = ___obj0;
|
|
V_0 = ((EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 *)IsInstSealed((RuntimeObject*)L_1, EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5_il2cpp_TypeInfo_var));
|
|
EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * L_3 = V_0;
|
|
NullCheck(L_3);
|
|
String_t* L_4 = L_3->get_typeName_1();
|
|
String_t* L_5 = __this->get_typeName_1();
|
|
bool L_6 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_4, L_5, /*hidden argument*/NULL);
|
|
if (!L_6)
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * L_7 = V_0;
|
|
NullCheck(L_7);
|
|
String_t* L_8 = L_7->get_baseTypeName_0();
|
|
String_t* L_9 = __this->get_baseTypeName_0();
|
|
bool L_10 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_8, L_9, /*hidden argument*/NULL);
|
|
return L_10;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.EditorAttribute::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EditorAttribute_GetHashCode_m3F1B0F256D2B1B6EFEEC06CF6118DB87A697D382 (EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B(__this, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.EditorBrowsableAttribute::.ctor(System.ComponentModel.EditorBrowsableState)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EditorBrowsableAttribute__ctor_mACDE45DF0DCAA6E923120D6AEC45422AEF958C2E (EditorBrowsableAttribute_tF3507DF0AB82A8D54C70D6F7FB4D363DF729D516 * __this, int32_t ___state0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
int32_t L_0 = ___state0;
|
|
__this->set_browsableState_0(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.EditorBrowsableAttribute::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EditorBrowsableAttribute__ctor_m6E36A054B0297201EB9079BABD1FC9B19A8EF3B8 (EditorBrowsableAttribute_tF3507DF0AB82A8D54C70D6F7FB4D363DF729D516 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EditorBrowsableAttribute__ctor_mACDE45DF0DCAA6E923120D6AEC45422AEF958C2E(__this, 0, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.ComponentModel.EditorBrowsableState System.ComponentModel.EditorBrowsableAttribute::get_State()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EditorBrowsableAttribute_get_State_mCA62DF5F83E3864E156DD0F1363E0F35E5F8FAAE (EditorBrowsableAttribute_tF3507DF0AB82A8D54C70D6F7FB4D363DF729D516 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->get_browsableState_0();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.EditorBrowsableAttribute::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EditorBrowsableAttribute_Equals_m6F5EF9CC298CBDC862CBCA5187379A79635726FA (EditorBrowsableAttribute_tF3507DF0AB82A8D54C70D6F7FB4D363DF729D516 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EditorBrowsableAttribute_Equals_m6F5EF9CC298CBDC862CBCA5187379A79635726FA_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
EditorBrowsableAttribute_tF3507DF0AB82A8D54C70D6F7FB4D363DF729D516 * V_0 = NULL;
|
|
{
|
|
RuntimeObject * L_0 = ___obj0;
|
|
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(EditorBrowsableAttribute_tF3507DF0AB82A8D54C70D6F7FB4D363DF729D516 *)__this))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
RuntimeObject * L_1 = ___obj0;
|
|
V_0 = ((EditorBrowsableAttribute_tF3507DF0AB82A8D54C70D6F7FB4D363DF729D516 *)IsInstSealed((RuntimeObject*)L_1, EditorBrowsableAttribute_tF3507DF0AB82A8D54C70D6F7FB4D363DF729D516_il2cpp_TypeInfo_var));
|
|
EditorBrowsableAttribute_tF3507DF0AB82A8D54C70D6F7FB4D363DF729D516 * L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
EditorBrowsableAttribute_tF3507DF0AB82A8D54C70D6F7FB4D363DF729D516 * L_3 = V_0;
|
|
NullCheck(L_3);
|
|
int32_t L_4 = L_3->get_browsableState_0();
|
|
int32_t L_5 = __this->get_browsableState_0();
|
|
return (bool)((((int32_t)L_4) == ((int32_t)L_5))? 1 : 0);
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.EditorBrowsableAttribute::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EditorBrowsableAttribute_GetHashCode_m74229847CE44E771F282E2E73FFC4DE55771A1B6 (EditorBrowsableAttribute_tF3507DF0AB82A8D54C70D6F7FB4D363DF729D516 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B(__this, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.EnumConverter::.ctor(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumConverter__ctor_mBA8B2E210D061A3CF86950F6D797E911A2E3C774 (EnumConverter_t5DA4CB27C27A8C37C31B2A4DE0C4C37820638E12 * __this, Type_t * ___type0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EnumConverter__ctor_mBA8B2E210D061A3CF86950F6D797E911A2E3C774_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_il2cpp_TypeInfo_var);
|
|
TypeConverter__ctor_m7F8A006E775CCB83A8ACB042B296E48B0AE501CD(__this, /*hidden argument*/NULL);
|
|
Type_t * L_0 = ___type0;
|
|
__this->set_type_3(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Type System.ComponentModel.EnumConverter::get_EnumType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * EnumConverter_get_EnumType_mE363752176E628FE1D15517BCE6F7FC98DEE6F68 (EnumConverter_t5DA4CB27C27A8C37C31B2A4DE0C4C37820638E12 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Type_t * L_0 = __this->get_type_3();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.ComponentModel.TypeConverter_StandardValuesCollection System.ComponentModel.EnumConverter::get_Values()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * EnumConverter_get_Values_m83899F439FCAF72024528B8F04C9B7B1CC81C8FB (EnumConverter_t5DA4CB27C27A8C37C31B2A4DE0C4C37820638E12 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * L_0 = __this->get_values_2();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.EnumConverter::set_Values(System.ComponentModel.TypeConverter_StandardValuesCollection)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumConverter_set_Values_m3769DFEE063A44FC1CBE85754639A0717F3BCFC1 (EnumConverter_t5DA4CB27C27A8C37C31B2A4DE0C4C37820638E12 * __this, StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * ___value0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * L_0 = ___value0;
|
|
__this->set_values_2(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.EnumConverter::CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EnumConverter_CanConvertFrom_m283E54FE7BFCFC3CF022827F20678CE40698BAE2 (EnumConverter_t5DA4CB27C27A8C37C31B2A4DE0C4C37820638E12 * __this, RuntimeObject* ___context0, Type_t * ___sourceType1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EnumConverter_CanConvertFrom_m283E54FE7BFCFC3CF022827F20678CE40698BAE2_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Type_t * L_0 = ___sourceType1;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL);
|
|
bool L_3 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, L_2, /*hidden argument*/NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_4 = ___sourceType1;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_5 = { reinterpret_cast<intptr_t> (EnumU5BU5D_t89BCD01877A8CDBF7729DE77C6185E8DC1432BCA_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_6 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_5, /*hidden argument*/NULL);
|
|
bool L_7 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_4, L_6, /*hidden argument*/NULL);
|
|
if (!L_7)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
RuntimeObject* L_8 = ___context0;
|
|
Type_t * L_9 = ___sourceType1;
|
|
bool L_10 = TypeConverter_CanConvertFrom_m8E1F9E41B7DEE6A032EAC70130ADC6356C3F227D(__this, L_8, L_9, /*hidden argument*/NULL);
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.EnumConverter::CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EnumConverter_CanConvertTo_m0BDD50EB0F3A7B3364DDD86650151F95C4D4965B (EnumConverter_t5DA4CB27C27A8C37C31B2A4DE0C4C37820638E12 * __this, RuntimeObject* ___context0, Type_t * ___destinationType1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EnumConverter_CanConvertTo_m0BDD50EB0F3A7B3364DDD86650151F95C4D4965B_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Type_t * L_0 = ___destinationType1;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL);
|
|
bool L_3 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, L_2, /*hidden argument*/NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_4 = ___destinationType1;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_5 = { reinterpret_cast<intptr_t> (EnumU5BU5D_t89BCD01877A8CDBF7729DE77C6185E8DC1432BCA_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_6 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_5, /*hidden argument*/NULL);
|
|
bool L_7 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_4, L_6, /*hidden argument*/NULL);
|
|
if (!L_7)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
RuntimeObject* L_8 = ___context0;
|
|
Type_t * L_9 = ___destinationType1;
|
|
bool L_10 = TypeConverter_CanConvertTo_m1CD3397D9E5717DE72A13B28C0A75D997A9F337D(__this, L_8, L_9, /*hidden argument*/NULL);
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.Collections.IComparer System.ComponentModel.EnumConverter::get_Comparer()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* EnumConverter_get_Comparer_mBD0584D1B45E8ACFFF5E0FEE31F0983033B1EA2A (EnumConverter_t5DA4CB27C27A8C37C31B2A4DE0C4C37820638E12 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EnumConverter_get_Comparer_mBD0584D1B45E8ACFFF5E0FEE31F0983033B1EA2A_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(InvariantComparer_tD6EE51C04FB8C0E087AB037E5690FA0E80ECD6DA_il2cpp_TypeInfo_var);
|
|
InvariantComparer_tD6EE51C04FB8C0E087AB037E5690FA0E80ECD6DA * L_0 = ((InvariantComparer_tD6EE51C04FB8C0E087AB037E5690FA0E80ECD6DA_StaticFields*)il2cpp_codegen_static_fields_for(InvariantComparer_tD6EE51C04FB8C0E087AB037E5690FA0E80ECD6DA_il2cpp_TypeInfo_var))->get_Default_1();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.EnumConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EnumConverter_ConvertFrom_m06D2FC9021EB3AF4BF131CE8E7268CC41A8994CF (EnumConverter_t5DA4CB27C27A8C37C31B2A4DE0C4C37820638E12 * __this, RuntimeObject* ___context0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, RuntimeObject * ___value2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EnumConverter_ConvertFrom_m06D2FC9021EB3AF4BF131CE8E7268CC41A8994CF_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
int64_t V_1 = 0;
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
String_t* V_4 = NULL;
|
|
RuntimeObject * V_5 = NULL;
|
|
Exception_t * V_6 = NULL;
|
|
int64_t V_7 = 0;
|
|
EnumU5BU5D_t89BCD01877A8CDBF7729DE77C6185E8DC1432BCA* V_8 = NULL;
|
|
Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 * V_9 = NULL;
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
{
|
|
RuntimeObject * L_0 = ___value2;
|
|
if (!((String_t*)IsInstSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_00b6;
|
|
}
|
|
}
|
|
|
|
IL_000b:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
{
|
|
RuntimeObject * L_1 = ___value2;
|
|
V_0 = ((String_t*)CastclassSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var));
|
|
String_t* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = String_IndexOf_m2909B8CF585E1BD0C81E11ACA2F48012156FD5BD(L_2, ((int32_t)44), /*hidden argument*/NULL);
|
|
if ((((int32_t)L_3) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0074;
|
|
}
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
V_1 = (((int64_t)((int64_t)0)));
|
|
String_t* L_4 = V_0;
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_5 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_6 = L_5;
|
|
NullCheck(L_6);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)44));
|
|
NullCheck(L_4);
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_7 = String_Split_m13262358217AD2C119FD1B9733C3C0289D608512(L_4, L_6, /*hidden argument*/NULL);
|
|
V_2 = L_7;
|
|
V_3 = 0;
|
|
goto IL_005b;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_8 = V_2;
|
|
int32_t L_9 = V_3;
|
|
NullCheck(L_8);
|
|
int32_t L_10 = L_9;
|
|
String_t* L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
|
|
V_4 = L_11;
|
|
int64_t L_12 = V_1;
|
|
Type_t * L_13 = __this->get_type_3();
|
|
String_t* L_14 = V_4;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var);
|
|
RuntimeObject * L_15 = Enum_Parse_mC51A0BD680AC2D2152A541E2A8475DB61A83A6E7(L_13, L_14, (bool)1, /*hidden argument*/NULL);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_16 = ___culture1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
int64_t L_17 = Convert_ToInt64_m8964FDE5D82FEC54106DBF35E1F67D70F6E73E29(((Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 *)CastclassClass((RuntimeObject*)L_15, Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var)), L_16, /*hidden argument*/NULL);
|
|
V_1 = ((int64_t)((int64_t)L_12|(int64_t)L_17));
|
|
int32_t L_18 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1));
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
int32_t L_19 = V_3;
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_20 = V_2;
|
|
NullCheck(L_20);
|
|
if ((((int32_t)L_19) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_20)->max_length)))))))
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
Type_t * L_21 = __this->get_type_3();
|
|
int64_t L_22 = V_1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var);
|
|
RuntimeObject * L_23 = Enum_ToObject_mE84F27DFCF3F22A1053968A9DCE6C0D14D25B7E2(L_21, L_22, /*hidden argument*/NULL);
|
|
V_5 = L_23;
|
|
goto IL_0104;
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
Type_t * L_24 = __this->get_type_3();
|
|
String_t* L_25 = V_0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var);
|
|
RuntimeObject * L_26 = Enum_Parse_mC51A0BD680AC2D2152A541E2A8475DB61A83A6E7(L_24, L_25, (bool)1, /*hidden argument*/NULL);
|
|
V_5 = L_26;
|
|
goto IL_0104;
|
|
}
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__exception_local = (Exception_t *)e.ex;
|
|
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
|
|
goto CATCH_0085;
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0085:
|
|
{ // begin catch(System.Exception)
|
|
V_6 = ((Exception_t *)__exception_local);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_27 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_28 = L_27;
|
|
RuntimeObject * L_29 = ___value2;
|
|
NullCheck(L_28);
|
|
ArrayElementTypeCheck (L_28, ((String_t*)CastclassSealed((RuntimeObject*)L_29, String_t_il2cpp_TypeInfo_var)));
|
|
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)((String_t*)CastclassSealed((RuntimeObject*)L_29, String_t_il2cpp_TypeInfo_var)));
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_30 = L_28;
|
|
Type_t * L_31 = __this->get_type_3();
|
|
NullCheck(L_31);
|
|
String_t* L_32 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_31);
|
|
NullCheck(L_30);
|
|
ArrayElementTypeCheck (L_30, L_32);
|
|
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_32);
|
|
String_t* L_33 = SR_GetString_m9548BD6DD52DFDB46372F211078AE57FA2401E39(_stringLiteral57D0D110DFCECD43C3781F997F490B8F87031F95, L_30, /*hidden argument*/NULL);
|
|
Exception_t * L_34 = V_6;
|
|
FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_35 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var);
|
|
FormatException__ctor_m4DC702D2EF54A4AD4F704A7217680A4897292DE8(L_35, L_33, L_34, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_35, EnumConverter_ConvertFrom_m06D2FC9021EB3AF4BF131CE8E7268CC41A8994CF_RuntimeMethod_var);
|
|
} // end catch (depth: 1)
|
|
|
|
IL_00b6:
|
|
{
|
|
RuntimeObject * L_36 = ___value2;
|
|
if (!((EnumU5BU5D_t89BCD01877A8CDBF7729DE77C6185E8DC1432BCA*)IsInst((RuntimeObject*)L_36, EnumU5BU5D_t89BCD01877A8CDBF7729DE77C6185E8DC1432BCA_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_00fa;
|
|
}
|
|
}
|
|
{
|
|
V_7 = (((int64_t)((int64_t)0)));
|
|
RuntimeObject * L_37 = ___value2;
|
|
V_8 = ((EnumU5BU5D_t89BCD01877A8CDBF7729DE77C6185E8DC1432BCA*)Castclass((RuntimeObject*)L_37, EnumU5BU5D_t89BCD01877A8CDBF7729DE77C6185E8DC1432BCA_il2cpp_TypeInfo_var));
|
|
V_3 = 0;
|
|
goto IL_00e5;
|
|
}
|
|
|
|
IL_00ce:
|
|
{
|
|
EnumU5BU5D_t89BCD01877A8CDBF7729DE77C6185E8DC1432BCA* L_38 = V_8;
|
|
int32_t L_39 = V_3;
|
|
NullCheck(L_38);
|
|
int32_t L_40 = L_39;
|
|
Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 * L_41 = (L_38)->GetAt(static_cast<il2cpp_array_size_t>(L_40));
|
|
V_9 = L_41;
|
|
int64_t L_42 = V_7;
|
|
Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 * L_43 = V_9;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_44 = ___culture1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
int64_t L_45 = Convert_ToInt64_m8964FDE5D82FEC54106DBF35E1F67D70F6E73E29(L_43, L_44, /*hidden argument*/NULL);
|
|
V_7 = ((int64_t)((int64_t)L_42|(int64_t)L_45));
|
|
int32_t L_46 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)1));
|
|
}
|
|
|
|
IL_00e5:
|
|
{
|
|
int32_t L_47 = V_3;
|
|
EnumU5BU5D_t89BCD01877A8CDBF7729DE77C6185E8DC1432BCA* L_48 = V_8;
|
|
NullCheck(L_48);
|
|
if ((((int32_t)L_47) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_48)->max_length)))))))
|
|
{
|
|
goto IL_00ce;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_49 = __this->get_type_3();
|
|
int64_t L_50 = V_7;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var);
|
|
RuntimeObject * L_51 = Enum_ToObject_mE84F27DFCF3F22A1053968A9DCE6C0D14D25B7E2(L_49, L_50, /*hidden argument*/NULL);
|
|
return L_51;
|
|
}
|
|
|
|
IL_00fa:
|
|
{
|
|
RuntimeObject* L_52 = ___context0;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_53 = ___culture1;
|
|
RuntimeObject * L_54 = ___value2;
|
|
RuntimeObject * L_55 = TypeConverter_ConvertFrom_mD5AE49E422520F6E07B3C0D6202788E49B4698A3(__this, L_52, L_53, L_54, /*hidden argument*/NULL);
|
|
return L_55;
|
|
}
|
|
|
|
IL_0104:
|
|
{
|
|
RuntimeObject * L_56 = V_5;
|
|
return L_56;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.EnumConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EnumConverter_ConvertTo_mBDC59D2EE871592603097C069D557F4D9A79ABFB (EnumConverter_t5DA4CB27C27A8C37C31B2A4DE0C4C37820638E12 * __this, RuntimeObject* ___context0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, RuntimeObject * ___value2, Type_t * ___destinationType3, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EnumConverter_ConvertTo_mBDC59D2EE871592603097C069D557F4D9A79ABFB_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Type_t * V_0 = NULL;
|
|
String_t* V_1 = NULL;
|
|
Type_t * V_2 = NULL;
|
|
RuntimeObject * V_3 = NULL;
|
|
MethodInfo_t * V_4 = NULL;
|
|
FieldInfo_t * V_5 = NULL;
|
|
List_1_t0A40881AA73F2F363AD72BF7C074350FD9178030 * V_6 = NULL;
|
|
RuntimeArray * V_7 = NULL;
|
|
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* V_8 = NULL;
|
|
int64_t V_9 = 0;
|
|
bool V_10 = false;
|
|
int32_t V_11 = 0;
|
|
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* V_12 = NULL;
|
|
int32_t V_13 = 0;
|
|
int64_t V_14 = 0;
|
|
{
|
|
Type_t * L_0 = ___destinationType3;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralFF3BA695D3EFEA937A1B1571C4E6461A8DACB151, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, EnumConverter_ConvertTo_mBDC59D2EE871592603097C069D557F4D9A79ABFB_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
Type_t * L_3 = ___destinationType3;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_4 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_5 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_4, /*hidden argument*/NULL);
|
|
bool L_6 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_3, L_5, /*hidden argument*/NULL);
|
|
if (!L_6)
|
|
{
|
|
goto IL_00c7;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_7 = ___value2;
|
|
if (!L_7)
|
|
{
|
|
goto IL_00c7;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_8 = __this->get_type_3();
|
|
IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var);
|
|
Type_t * L_9 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1(L_8, /*hidden argument*/NULL);
|
|
V_0 = L_9;
|
|
RuntimeObject * L_10 = ___value2;
|
|
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_10, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_11 = ___value2;
|
|
NullCheck(L_11);
|
|
Type_t * L_12 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_11, /*hidden argument*/NULL);
|
|
Type_t * L_13 = V_0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_14 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_12, L_13, /*hidden argument*/NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_15 = ___value2;
|
|
Type_t * L_16 = V_0;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_17 = ___culture1;
|
|
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_15, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var)));
|
|
RuntimeObject * L_18 = InterfaceFuncInvoker2< RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(16 /* System.Object System.IConvertible::ToType(System.Type,System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_15, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var)), L_16, L_17);
|
|
___value2 = L_18;
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
Type_t * L_19 = __this->get_type_3();
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_20 = { reinterpret_cast<intptr_t> (FlagsAttribute_t7FB7BEFA2E1F2C6E3362A5996E82697475FFE867_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_21 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_20, /*hidden argument*/NULL);
|
|
NullCheck(L_19);
|
|
bool L_22 = VirtFuncInvoker2< bool, Type_t *, bool >::Invoke(12 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_19, L_21, (bool)0);
|
|
if (L_22)
|
|
{
|
|
goto IL_00b5;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_23 = __this->get_type_3();
|
|
RuntimeObject * L_24 = ___value2;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var);
|
|
bool L_25 = Enum_IsDefined_mA573B15329CA2AA7C59367D514D2927FC66217E2(L_23, L_24, /*hidden argument*/NULL);
|
|
if (L_25)
|
|
{
|
|
goto IL_00b5;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_26 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_27 = L_26;
|
|
RuntimeObject * L_28 = ___value2;
|
|
NullCheck(L_28);
|
|
String_t* L_29 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_28);
|
|
NullCheck(L_27);
|
|
ArrayElementTypeCheck (L_27, L_29);
|
|
(L_27)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_29);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_30 = L_27;
|
|
Type_t * L_31 = __this->get_type_3();
|
|
NullCheck(L_31);
|
|
String_t* L_32 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_31);
|
|
NullCheck(L_30);
|
|
ArrayElementTypeCheck (L_30, L_32);
|
|
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_32);
|
|
String_t* L_33 = SR_GetString_m9548BD6DD52DFDB46372F211078AE57FA2401E39(_stringLiteralAF73CF697FE0F2A01C3D8863245929A47E6298F1, L_30, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_34 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_34, L_33, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_34, EnumConverter_ConvertTo_mBDC59D2EE871592603097C069D557F4D9A79ABFB_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00b5:
|
|
{
|
|
Type_t * L_35 = __this->get_type_3();
|
|
RuntimeObject * L_36 = ___value2;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var);
|
|
String_t* L_37 = Enum_Format_m57012EA1132AC3A3A82F9032137D5E252924595B(L_35, L_36, _stringLiteralA36A6718F54524D846894FB04B5B885B4E43E63B, /*hidden argument*/NULL);
|
|
return L_37;
|
|
}
|
|
|
|
IL_00c7:
|
|
{
|
|
Type_t * L_38 = ___destinationType3;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_39 = { reinterpret_cast<intptr_t> (InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_40 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_39, /*hidden argument*/NULL);
|
|
bool L_41 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_38, L_40, /*hidden argument*/NULL);
|
|
if (!L_41)
|
|
{
|
|
goto IL_01aa;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_42 = ___value2;
|
|
if (!L_42)
|
|
{
|
|
goto IL_01aa;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_43 = ___context0;
|
|
RuntimeObject * L_44 = ___value2;
|
|
String_t* L_45 = TypeConverter_ConvertToInvariantString_m382F27F2262271AB0775D6FA6F413D24BEA28808(__this, L_43, L_44, /*hidden argument*/NULL);
|
|
V_1 = L_45;
|
|
Type_t * L_46 = __this->get_type_3();
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_47 = { reinterpret_cast<intptr_t> (FlagsAttribute_t7FB7BEFA2E1F2C6E3362A5996E82697475FFE867_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_48 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_47, /*hidden argument*/NULL);
|
|
NullCheck(L_46);
|
|
bool L_49 = VirtFuncInvoker2< bool, Type_t *, bool >::Invoke(12 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_46, L_48, (bool)0);
|
|
if (!L_49)
|
|
{
|
|
goto IL_0189;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_50 = V_1;
|
|
NullCheck(L_50);
|
|
int32_t L_51 = String_IndexOf_m2909B8CF585E1BD0C81E11ACA2F48012156FD5BD(L_50, ((int32_t)44), /*hidden argument*/NULL);
|
|
if ((((int32_t)L_51) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0189;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_52 = __this->get_type_3();
|
|
IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var);
|
|
Type_t * L_53 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1(L_52, /*hidden argument*/NULL);
|
|
V_2 = L_53;
|
|
RuntimeObject * L_54 = ___value2;
|
|
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_54, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_01aa;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_55 = ___value2;
|
|
Type_t * L_56 = V_2;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_57 = ___culture1;
|
|
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_55, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var)));
|
|
RuntimeObject * L_58 = InterfaceFuncInvoker2< RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(16 /* System.Object System.IConvertible::ToType(System.Type,System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_55, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var)), L_56, L_57);
|
|
V_3 = L_58;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_59 = { reinterpret_cast<intptr_t> (Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_60 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_59, /*hidden argument*/NULL);
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_61 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)2);
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_62 = L_61;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_63 = { reinterpret_cast<intptr_t> (Type_t_0_0_0_var) };
|
|
Type_t * L_64 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_63, /*hidden argument*/NULL);
|
|
NullCheck(L_62);
|
|
ArrayElementTypeCheck (L_62, L_64);
|
|
(L_62)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_64);
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_65 = L_62;
|
|
Type_t * L_66 = V_2;
|
|
NullCheck(L_65);
|
|
ArrayElementTypeCheck (L_65, L_66);
|
|
(L_65)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_66);
|
|
NullCheck(L_60);
|
|
MethodInfo_t * L_67 = Type_GetMethod_m54E1EF62AFF44AA621E074D123C5C0B3E73A7DD5(L_60, _stringLiteralFB843069E6F2F029B75B8E5312981AED516FED6C, L_65, /*hidden argument*/NULL);
|
|
V_4 = L_67;
|
|
MethodInfo_t * L_68 = V_4;
|
|
bool L_69 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_68, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_69)
|
|
{
|
|
goto IL_01aa;
|
|
}
|
|
}
|
|
{
|
|
MethodInfo_t * L_70 = V_4;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_71 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_72 = L_71;
|
|
Type_t * L_73 = __this->get_type_3();
|
|
NullCheck(L_72);
|
|
ArrayElementTypeCheck (L_72, L_73);
|
|
(L_72)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_73);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_74 = L_72;
|
|
RuntimeObject * L_75 = V_3;
|
|
NullCheck(L_74);
|
|
ArrayElementTypeCheck (L_74, L_75);
|
|
(L_74)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_75);
|
|
InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6 * L_76 = (InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6 *)il2cpp_codegen_object_new(InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6_il2cpp_TypeInfo_var);
|
|
InstanceDescriptor__ctor_m90DA8CABB01052EA5C5022E14FE50533254C71DD(L_76, L_70, (RuntimeObject*)(RuntimeObject*)L_74, /*hidden argument*/NULL);
|
|
return L_76;
|
|
}
|
|
|
|
IL_0189:
|
|
{
|
|
Type_t * L_77 = __this->get_type_3();
|
|
String_t* L_78 = V_1;
|
|
NullCheck(L_77);
|
|
FieldInfo_t * L_79 = Type_GetField_m564F7686385A6EA8C30F81C939250D5010DC0CA5(L_77, L_78, /*hidden argument*/NULL);
|
|
V_5 = L_79;
|
|
FieldInfo_t * L_80 = V_5;
|
|
bool L_81 = FieldInfo_op_Inequality_mB88B704E9238C7A9FD42274FCFEFA7CFABBF16EE(L_80, (FieldInfo_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_81)
|
|
{
|
|
goto IL_01aa;
|
|
}
|
|
}
|
|
{
|
|
FieldInfo_t * L_82 = V_5;
|
|
InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6 * L_83 = (InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6 *)il2cpp_codegen_object_new(InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6_il2cpp_TypeInfo_var);
|
|
InstanceDescriptor__ctor_m90DA8CABB01052EA5C5022E14FE50533254C71DD(L_83, L_82, (RuntimeObject*)NULL, /*hidden argument*/NULL);
|
|
return L_83;
|
|
}
|
|
|
|
IL_01aa:
|
|
{
|
|
Type_t * L_84 = ___destinationType3;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_85 = { reinterpret_cast<intptr_t> (EnumU5BU5D_t89BCD01877A8CDBF7729DE77C6185E8DC1432BCA_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_86 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_85, /*hidden argument*/NULL);
|
|
bool L_87 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_84, L_86, /*hidden argument*/NULL);
|
|
if (!L_87)
|
|
{
|
|
goto IL_02eb;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_88 = ___value2;
|
|
if (!L_88)
|
|
{
|
|
goto IL_02eb;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_89 = __this->get_type_3();
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_90 = { reinterpret_cast<intptr_t> (FlagsAttribute_t7FB7BEFA2E1F2C6E3362A5996E82697475FFE867_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_91 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_90, /*hidden argument*/NULL);
|
|
NullCheck(L_89);
|
|
bool L_92 = VirtFuncInvoker2< bool, Type_t *, bool >::Invoke(12 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_89, L_91, (bool)0);
|
|
if (!L_92)
|
|
{
|
|
goto IL_02d0;
|
|
}
|
|
}
|
|
{
|
|
List_1_t0A40881AA73F2F363AD72BF7C074350FD9178030 * L_93 = (List_1_t0A40881AA73F2F363AD72BF7C074350FD9178030 *)il2cpp_codegen_object_new(List_1_t0A40881AA73F2F363AD72BF7C074350FD9178030_il2cpp_TypeInfo_var);
|
|
List_1__ctor_mEDCB84C238744496A7F479DB6ABCA4D23AAC5542(L_93, /*hidden argument*/List_1__ctor_mEDCB84C238744496A7F479DB6ABCA4D23AAC5542_RuntimeMethod_var);
|
|
V_6 = L_93;
|
|
Type_t * L_94 = __this->get_type_3();
|
|
IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var);
|
|
RuntimeArray * L_95 = Enum_GetValues_m20F5C0B826344A499B1C23BB7A3B532017F0F30C(L_94, /*hidden argument*/NULL);
|
|
V_7 = L_95;
|
|
RuntimeArray * L_96 = V_7;
|
|
NullCheck(L_96);
|
|
int32_t L_97 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_96, /*hidden argument*/NULL);
|
|
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_98 = (Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F*)(Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F*)SZArrayNew(Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F_il2cpp_TypeInfo_var, (uint32_t)L_97);
|
|
V_8 = L_98;
|
|
V_11 = 0;
|
|
goto IL_0227;
|
|
}
|
|
|
|
IL_0208:
|
|
{
|
|
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_99 = V_8;
|
|
int32_t L_100 = V_11;
|
|
RuntimeArray * L_101 = V_7;
|
|
int32_t L_102 = V_11;
|
|
NullCheck(L_101);
|
|
RuntimeObject * L_103 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_101, L_102, /*hidden argument*/NULL);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_104 = ___culture1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
int64_t L_105 = Convert_ToInt64_m8964FDE5D82FEC54106DBF35E1F67D70F6E73E29(((Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 *)CastclassClass((RuntimeObject*)L_103, Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var)), L_104, /*hidden argument*/NULL);
|
|
NullCheck(L_99);
|
|
(L_99)->SetAt(static_cast<il2cpp_array_size_t>(L_100), (int64_t)L_105);
|
|
int32_t L_106 = V_11;
|
|
V_11 = ((int32_t)il2cpp_codegen_add((int32_t)L_106, (int32_t)1));
|
|
}
|
|
|
|
IL_0227:
|
|
{
|
|
int32_t L_107 = V_11;
|
|
RuntimeArray * L_108 = V_7;
|
|
NullCheck(L_108);
|
|
int32_t L_109 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_108, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_107) < ((int32_t)L_109)))
|
|
{
|
|
goto IL_0208;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_110 = ___value2;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_111 = ___culture1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
int64_t L_112 = Convert_ToInt64_m8964FDE5D82FEC54106DBF35E1F67D70F6E73E29(((Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 *)CastclassClass((RuntimeObject*)L_110, Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var)), L_111, /*hidden argument*/NULL);
|
|
V_9 = L_112;
|
|
V_10 = (bool)1;
|
|
goto IL_02a3;
|
|
}
|
|
|
|
IL_0245:
|
|
{
|
|
V_10 = (bool)0;
|
|
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_113 = V_8;
|
|
V_12 = L_113;
|
|
V_13 = 0;
|
|
goto IL_0297;
|
|
}
|
|
|
|
IL_0251:
|
|
{
|
|
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_114 = V_12;
|
|
int32_t L_115 = V_13;
|
|
NullCheck(L_114);
|
|
int32_t L_116 = L_115;
|
|
int64_t L_117 = (L_114)->GetAt(static_cast<il2cpp_array_size_t>(L_116));
|
|
V_14 = L_117;
|
|
int64_t L_118 = V_14;
|
|
if (!L_118)
|
|
{
|
|
goto IL_0265;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_119 = V_14;
|
|
int64_t L_120 = V_9;
|
|
int64_t L_121 = V_14;
|
|
if ((((int64_t)((int64_t)((int64_t)L_119&(int64_t)L_120))) == ((int64_t)L_121)))
|
|
{
|
|
goto IL_026b;
|
|
}
|
|
}
|
|
|
|
IL_0265:
|
|
{
|
|
int64_t L_122 = V_14;
|
|
int64_t L_123 = V_9;
|
|
if ((!(((uint64_t)L_122) == ((uint64_t)L_123))))
|
|
{
|
|
goto IL_0291;
|
|
}
|
|
}
|
|
|
|
IL_026b:
|
|
{
|
|
List_1_t0A40881AA73F2F363AD72BF7C074350FD9178030 * L_124 = V_6;
|
|
Type_t * L_125 = __this->get_type_3();
|
|
int64_t L_126 = V_14;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var);
|
|
RuntimeObject * L_127 = Enum_ToObject_mE84F27DFCF3F22A1053968A9DCE6C0D14D25B7E2(L_125, L_126, /*hidden argument*/NULL);
|
|
NullCheck(L_124);
|
|
List_1_Add_m06F8974F98146F609320A5E454D4F78A89DB8770(L_124, ((Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 *)CastclassClass((RuntimeObject*)L_127, Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var)), /*hidden argument*/List_1_Add_m06F8974F98146F609320A5E454D4F78A89DB8770_RuntimeMethod_var);
|
|
V_10 = (bool)1;
|
|
int64_t L_128 = V_9;
|
|
int64_t L_129 = V_14;
|
|
V_9 = ((int64_t)((int64_t)L_128&(int64_t)((~L_129))));
|
|
goto IL_029f;
|
|
}
|
|
|
|
IL_0291:
|
|
{
|
|
int32_t L_130 = V_13;
|
|
V_13 = ((int32_t)il2cpp_codegen_add((int32_t)L_130, (int32_t)1));
|
|
}
|
|
|
|
IL_0297:
|
|
{
|
|
int32_t L_131 = V_13;
|
|
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_132 = V_12;
|
|
NullCheck(L_132);
|
|
if ((((int32_t)L_131) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_132)->max_length)))))))
|
|
{
|
|
goto IL_0251;
|
|
}
|
|
}
|
|
|
|
IL_029f:
|
|
{
|
|
int64_t L_133 = V_9;
|
|
if (!L_133)
|
|
{
|
|
goto IL_02a7;
|
|
}
|
|
}
|
|
|
|
IL_02a3:
|
|
{
|
|
bool L_134 = V_10;
|
|
if (L_134)
|
|
{
|
|
goto IL_0245;
|
|
}
|
|
}
|
|
|
|
IL_02a7:
|
|
{
|
|
bool L_135 = V_10;
|
|
if (L_135)
|
|
{
|
|
goto IL_02c8;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_136 = V_9;
|
|
if (!L_136)
|
|
{
|
|
goto IL_02c8;
|
|
}
|
|
}
|
|
{
|
|
List_1_t0A40881AA73F2F363AD72BF7C074350FD9178030 * L_137 = V_6;
|
|
Type_t * L_138 = __this->get_type_3();
|
|
int64_t L_139 = V_9;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var);
|
|
RuntimeObject * L_140 = Enum_ToObject_mE84F27DFCF3F22A1053968A9DCE6C0D14D25B7E2(L_138, L_139, /*hidden argument*/NULL);
|
|
NullCheck(L_137);
|
|
List_1_Add_m06F8974F98146F609320A5E454D4F78A89DB8770(L_137, ((Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 *)CastclassClass((RuntimeObject*)L_140, Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var)), /*hidden argument*/List_1_Add_m06F8974F98146F609320A5E454D4F78A89DB8770_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_02c8:
|
|
{
|
|
List_1_t0A40881AA73F2F363AD72BF7C074350FD9178030 * L_141 = V_6;
|
|
NullCheck(L_141);
|
|
EnumU5BU5D_t89BCD01877A8CDBF7729DE77C6185E8DC1432BCA* L_142 = List_1_ToArray_m053CEABF5E110E006609B778AB5547C8EE6B14F4(L_141, /*hidden argument*/List_1_ToArray_m053CEABF5E110E006609B778AB5547C8EE6B14F4_RuntimeMethod_var);
|
|
return (RuntimeObject *)L_142;
|
|
}
|
|
|
|
IL_02d0:
|
|
{
|
|
EnumU5BU5D_t89BCD01877A8CDBF7729DE77C6185E8DC1432BCA* L_143 = (EnumU5BU5D_t89BCD01877A8CDBF7729DE77C6185E8DC1432BCA*)(EnumU5BU5D_t89BCD01877A8CDBF7729DE77C6185E8DC1432BCA*)SZArrayNew(EnumU5BU5D_t89BCD01877A8CDBF7729DE77C6185E8DC1432BCA_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
EnumU5BU5D_t89BCD01877A8CDBF7729DE77C6185E8DC1432BCA* L_144 = L_143;
|
|
Type_t * L_145 = __this->get_type_3();
|
|
RuntimeObject * L_146 = ___value2;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var);
|
|
RuntimeObject * L_147 = Enum_ToObject_mED18F2B01F4BA412C1882396CE977411BB54165D(L_145, L_146, /*hidden argument*/NULL);
|
|
NullCheck(L_144);
|
|
ArrayElementTypeCheck (L_144, ((Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 *)CastclassClass((RuntimeObject*)L_147, Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var)));
|
|
(L_144)->SetAt(static_cast<il2cpp_array_size_t>(0), (Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 *)((Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 *)CastclassClass((RuntimeObject*)L_147, Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var)));
|
|
return (RuntimeObject *)L_144;
|
|
}
|
|
|
|
IL_02eb:
|
|
{
|
|
RuntimeObject* L_148 = ___context0;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_149 = ___culture1;
|
|
RuntimeObject * L_150 = ___value2;
|
|
Type_t * L_151 = ___destinationType3;
|
|
RuntimeObject * L_152 = TypeConverter_ConvertTo_mFC7AA7F0A382607E75CCE820A705B5965D099AAC(__this, L_148, L_149, L_150, L_151, /*hidden argument*/NULL);
|
|
return L_152;
|
|
}
|
|
}
|
|
// System.ComponentModel.TypeConverter_StandardValuesCollection System.ComponentModel.EnumConverter::GetStandardValues(System.ComponentModel.ITypeDescriptorContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * EnumConverter_GetStandardValues_m30FF1BC7361719D9A5EE7205F4F63B5CB1E95E15 (EnumConverter_t5DA4CB27C27A8C37C31B2A4DE0C4C37820638E12 * __this, RuntimeObject* ___context0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EnumConverter_GetStandardValues_m30FF1BC7361719D9A5EE7205F4F63B5CB1E95E15_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Type_t * V_0 = NULL;
|
|
FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* V_1 = NULL;
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_2 = NULL;
|
|
RuntimeArray * V_3 = NULL;
|
|
RuntimeObject* V_4 = NULL;
|
|
FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* V_5 = NULL;
|
|
int32_t V_6 = 0;
|
|
FieldInfo_t * V_7 = NULL;
|
|
BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 * V_8 = NULL;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_9 = NULL;
|
|
int32_t V_10 = 0;
|
|
RuntimeObject * V_11 = NULL;
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B27_0 = NULL;
|
|
{
|
|
StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * L_0 = __this->get_values_2();
|
|
if (L_0)
|
|
{
|
|
goto IL_0112;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_1 = __this->get_type_3();
|
|
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
|
|
Type_t * L_2 = TypeDescriptor_GetReflectionType_mB28D64FBA294D618334381A77DAE790811611C3D(L_1, /*hidden argument*/NULL);
|
|
V_0 = L_2;
|
|
Type_t * L_3 = V_0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_4 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_3, (Type_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_5 = __this->get_type_3();
|
|
V_0 = L_5;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
Type_t * L_6 = V_0;
|
|
NullCheck(L_6);
|
|
FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_7 = VirtFuncInvoker1< FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE*, int32_t >::Invoke(51 /* System.Reflection.FieldInfo[] System.Type::GetFields(System.Reflection.BindingFlags) */, L_6, ((int32_t)24));
|
|
V_1 = L_7;
|
|
V_2 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)NULL;
|
|
FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_8 = V_1;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
{
|
|
FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_9 = V_1;
|
|
NullCheck(L_9);
|
|
if (!(((RuntimeArray*)L_9)->max_length))
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
{
|
|
FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_10 = V_1;
|
|
NullCheck(L_10);
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_11 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
|
|
ArrayList__ctor_m0EEFF564D3B55439C82DC958952CCC98C47ABF4C(L_11, (((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))), /*hidden argument*/NULL);
|
|
V_2 = L_11;
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_12 = V_2;
|
|
if (!L_12)
|
|
{
|
|
goto IL_00f9;
|
|
}
|
|
}
|
|
{
|
|
FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_13 = V_1;
|
|
V_5 = L_13;
|
|
V_6 = 0;
|
|
goto IL_00da;
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_14 = V_5;
|
|
int32_t L_15 = V_6;
|
|
NullCheck(L_14);
|
|
int32_t L_16 = L_15;
|
|
FieldInfo_t * L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
|
|
V_7 = L_17;
|
|
V_8 = (BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 *)NULL;
|
|
FieldInfo_t * L_18 = V_7;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_19 = { reinterpret_cast<intptr_t> (BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_20 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_19, /*hidden argument*/NULL);
|
|
NullCheck(L_18);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = VirtFuncInvoker2< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, Type_t *, bool >::Invoke(11 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Type,System.Boolean) */, L_18, L_20, (bool)0);
|
|
V_9 = L_21;
|
|
V_10 = 0;
|
|
goto IL_008d;
|
|
}
|
|
|
|
IL_0076:
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = V_9;
|
|
int32_t L_23 = V_10;
|
|
NullCheck(L_22);
|
|
int32_t L_24 = L_23;
|
|
RuntimeObject * L_25 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
|
|
V_8 = ((BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 *)IsInstSealed((RuntimeObject*)((Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *)CastclassClass((RuntimeObject*)L_25, Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_il2cpp_TypeInfo_var)), BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1_il2cpp_TypeInfo_var));
|
|
int32_t L_26 = V_10;
|
|
V_10 = ((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
|
|
}
|
|
|
|
IL_008d:
|
|
{
|
|
int32_t L_27 = V_10;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_28 = V_9;
|
|
NullCheck(L_28);
|
|
if ((((int32_t)L_27) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_28)->max_length)))))))
|
|
{
|
|
goto IL_0076;
|
|
}
|
|
}
|
|
{
|
|
BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 * L_29 = V_8;
|
|
if (!L_29)
|
|
{
|
|
goto IL_00a2;
|
|
}
|
|
}
|
|
{
|
|
BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 * L_30 = V_8;
|
|
NullCheck(L_30);
|
|
bool L_31 = BrowsableAttribute_get_Browsable_m84931BFF3F51CB9F14D7B1D7548B796FE2DBB8D2_inline(L_30, /*hidden argument*/NULL);
|
|
if (!L_31)
|
|
{
|
|
goto IL_00d4;
|
|
}
|
|
}
|
|
|
|
IL_00a2:
|
|
{
|
|
V_11 = NULL;
|
|
}
|
|
|
|
IL_00a5:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
{
|
|
FieldInfo_t * L_32 = V_7;
|
|
NullCheck(L_32);
|
|
String_t* L_33 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_32);
|
|
if (!L_33)
|
|
{
|
|
goto IL_00c2;
|
|
}
|
|
}
|
|
|
|
IL_00ae:
|
|
{
|
|
Type_t * L_34 = __this->get_type_3();
|
|
FieldInfo_t * L_35 = V_7;
|
|
NullCheck(L_35);
|
|
String_t* L_36 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_35);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var);
|
|
RuntimeObject * L_37 = Enum_Parse_m8677C5E01F1258902058D844824B93F7836BF4C3(L_34, L_36, /*hidden argument*/NULL);
|
|
V_11 = L_37;
|
|
}
|
|
|
|
IL_00c2:
|
|
{
|
|
goto IL_00c7;
|
|
}
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__exception_local = (Exception_t *)e.ex;
|
|
if(il2cpp_codegen_class_is_assignable_from (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
|
|
goto CATCH_00c4;
|
|
throw e;
|
|
}
|
|
|
|
CATCH_00c4:
|
|
{ // begin catch(System.ArgumentException)
|
|
goto IL_00c7;
|
|
} // end catch (depth: 1)
|
|
|
|
IL_00c7:
|
|
{
|
|
RuntimeObject * L_38 = V_11;
|
|
if (!L_38)
|
|
{
|
|
goto IL_00d4;
|
|
}
|
|
}
|
|
{
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_39 = V_2;
|
|
RuntimeObject * L_40 = V_11;
|
|
NullCheck(L_39);
|
|
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_39, L_40);
|
|
}
|
|
|
|
IL_00d4:
|
|
{
|
|
int32_t L_41 = V_6;
|
|
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1));
|
|
}
|
|
|
|
IL_00da:
|
|
{
|
|
int32_t L_42 = V_6;
|
|
FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_43 = V_5;
|
|
NullCheck(L_43);
|
|
if ((((int32_t)L_42) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_43)->max_length)))))))
|
|
{
|
|
goto IL_0053;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_44 = VirtFuncInvoker0< RuntimeObject* >::Invoke(16 /* System.Collections.IComparer System.ComponentModel.EnumConverter::get_Comparer() */, __this);
|
|
V_4 = L_44;
|
|
RuntimeObject* L_45 = V_4;
|
|
if (!L_45)
|
|
{
|
|
goto IL_00f9;
|
|
}
|
|
}
|
|
{
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_46 = V_2;
|
|
RuntimeObject* L_47 = V_4;
|
|
NullCheck(L_46);
|
|
VirtActionInvoker1< RuntimeObject* >::Invoke(44 /* System.Void System.Collections.ArrayList::Sort(System.Collections.IComparer) */, L_46, L_47);
|
|
}
|
|
|
|
IL_00f9:
|
|
{
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_48 = V_2;
|
|
if (L_48)
|
|
{
|
|
goto IL_00ff;
|
|
}
|
|
}
|
|
{
|
|
G_B27_0 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(NULL));
|
|
goto IL_0105;
|
|
}
|
|
|
|
IL_00ff:
|
|
{
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_49 = V_2;
|
|
NullCheck(L_49);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_50 = VirtFuncInvoker0< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* >::Invoke(46 /* System.Object[] System.Collections.ArrayList::ToArray() */, L_49);
|
|
G_B27_0 = L_50;
|
|
}
|
|
|
|
IL_0105:
|
|
{
|
|
V_3 = (RuntimeArray *)G_B27_0;
|
|
RuntimeArray * L_51 = V_3;
|
|
StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * L_52 = (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 *)il2cpp_codegen_object_new(StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3_il2cpp_TypeInfo_var);
|
|
StandardValuesCollection__ctor_m75578979BC0D77C0D622E4C9D7C1CB1E047615C1(L_52, L_51, /*hidden argument*/NULL);
|
|
__this->set_values_2(L_52);
|
|
}
|
|
|
|
IL_0112:
|
|
{
|
|
StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * L_53 = __this->get_values_2();
|
|
return L_53;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.EnumConverter::GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EnumConverter_GetStandardValuesExclusive_m62880BF09B41A7CE88E01AA29C4CFE44A736A178 (EnumConverter_t5DA4CB27C27A8C37C31B2A4DE0C4C37820638E12 * __this, RuntimeObject* ___context0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EnumConverter_GetStandardValuesExclusive_m62880BF09B41A7CE88E01AA29C4CFE44A736A178_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Type_t * L_0 = __this->get_type_3();
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (FlagsAttribute_t7FB7BEFA2E1F2C6E3362A5996E82697475FFE867_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL);
|
|
NullCheck(L_0);
|
|
bool L_3 = VirtFuncInvoker2< bool, Type_t *, bool >::Invoke(12 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_0, L_2, (bool)0);
|
|
return (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.EnumConverter::GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EnumConverter_GetStandardValuesSupported_mAC1496A78AEAD3844C796F9641AD2BC10CD6E1C2 (EnumConverter_t5DA4CB27C27A8C37C31B2A4DE0C4C37820638E12 * __this, RuntimeObject* ___context0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.EnumConverter::IsValid(System.ComponentModel.ITypeDescriptorContext,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EnumConverter_IsValid_m5D3AB88EAC5C70586DC64D867F99139FB82FFD87 (EnumConverter_t5DA4CB27C27A8C37C31B2A4DE0C4C37820638E12 * __this, RuntimeObject* ___context0, RuntimeObject * ___value1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EnumConverter_IsValid_m5D3AB88EAC5C70586DC64D867F99139FB82FFD87_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Type_t * L_0 = __this->get_type_3();
|
|
RuntimeObject * L_1 = ___value1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var);
|
|
bool L_2 = Enum_IsDefined_mA573B15329CA2AA7C59367D514D2927FC66217E2(L_0, L_1, /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.EventDescriptor::.ctor(System.String,System.Attribute[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptor__ctor_m64DD06C2302860B79602DB0A9538323FBEB778F1 (EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * __this, String_t* ___name0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attrs1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___name0;
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_1 = ___attrs1;
|
|
MemberDescriptor__ctor_m7DA97C2FCA1C99D7D7B31A89A908219E4A48DE7B(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.EventDescriptor::.ctor(System.ComponentModel.MemberDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptor__ctor_m8352B1FABAC4E2D6B61213C1B9B1E1EF8678C366 (EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * __this, MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * ___descr0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_0 = ___descr0;
|
|
MemberDescriptor__ctor_mFD23579925A3F34CB985856C22D3CD13BB49D41B(__this, L_0, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.EventDescriptor::.ctor(System.ComponentModel.MemberDescriptor,System.Attribute[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptor__ctor_m8F8D69FB49D3DBACBD9DF097476A561A5C642888 (EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * __this, MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * ___descr0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attrs1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_0 = ___descr0;
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_1 = ___attrs1;
|
|
MemberDescriptor__ctor_mDDA60D0BB2448D6607AB2F2C353A8C30CFABE0A3(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.EventDescriptorCollection::.ctor(System.ComponentModel.EventDescriptor[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptorCollection__ctor_m39980AB8EA7F2F7B480F18E4EC36796C1A259CD7 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* ___events0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EventDescriptorCollection__ctor_m39980AB8EA7F2F7B480F18E4EC36796C1A259CD7_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
__this->set_eventsOwned_3((bool)1);
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_0 = ___events0;
|
|
__this->set_events_0(L_0);
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_1 = ___events0;
|
|
if (L_1)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_2 = (EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)(EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)SZArrayNew(EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4_il2cpp_TypeInfo_var, (uint32_t)0);
|
|
__this->set_events_0(L_2);
|
|
__this->set_eventCount_5(0);
|
|
goto IL_003a;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_3 = __this->get_events_0();
|
|
NullCheck(L_3);
|
|
__this->set_eventCount_5((((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))));
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
__this->set_eventsOwned_3((bool)1);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.EventDescriptorCollection::.ctor(System.ComponentModel.EventDescriptor[],System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptorCollection__ctor_mDC62048A9CCD9F4E5C2CE7BBEB7C995A60ACB0D5 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* ___events0, bool ___readOnly1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_0 = ___events0;
|
|
EventDescriptorCollection__ctor_m39980AB8EA7F2F7B480F18E4EC36796C1A259CD7(__this, L_0, /*hidden argument*/NULL);
|
|
bool L_1 = ___readOnly1;
|
|
__this->set_readOnly_6(L_1);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.EventDescriptorCollection::.ctor(System.ComponentModel.EventDescriptor[],System.Int32,System.String[],System.Collections.IComparer)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptorCollection__ctor_m855A2D527708065CD2E181EBF15A7C743AB6FAC1 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* ___events0, int32_t ___eventCount1, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___namedSort2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EventDescriptorCollection__ctor_m855A2D527708065CD2E181EBF15A7C743AB6FAC1_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
__this->set_eventsOwned_3((bool)1);
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
__this->set_eventsOwned_3((bool)0);
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_0 = ___namedSort2;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_1 = ___namedSort2;
|
|
NullCheck((RuntimeArray *)(RuntimeArray *)L_1);
|
|
RuntimeObject * L_2 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_1, /*hidden argument*/NULL);
|
|
__this->set_namedSort_1(((StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)Castclass((RuntimeObject*)L_2, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var)));
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
RuntimeObject* L_3 = ___comparer3;
|
|
__this->set_comparer_2(L_3);
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_4 = ___events0;
|
|
__this->set_events_0(L_4);
|
|
int32_t L_5 = ___eventCount1;
|
|
__this->set_eventCount_5(L_5);
|
|
__this->set_needSort_4((bool)1);
|
|
return;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.EventDescriptorCollection::get_Count()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EventDescriptorCollection_get_Count_mCAA673C0D2447E4823B34AE97D61BBC999A3E6BC (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->get_eventCount_5();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.ComponentModel.EventDescriptor System.ComponentModel.EventDescriptorCollection::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * EventDescriptorCollection_get_Item_m861DB4DC0B594DC2BCB973266F49F77DB790689E (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EventDescriptorCollection_get_Item_m861DB4DC0B594DC2BCB973266F49F77DB790689E_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = ___index0;
|
|
int32_t L_1 = __this->get_eventCount_5();
|
|
if ((((int32_t)L_0) < ((int32_t)L_1)))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * L_2 = (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF *)il2cpp_codegen_object_new(IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var);
|
|
IndexOutOfRangeException__ctor_m17448AB4B27BC9D8AEB4605CDB0EA053626ABEC1(L_2, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, EventDescriptorCollection_get_Item_m861DB4DC0B594DC2BCB973266F49F77DB790689E_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
EventDescriptorCollection_EnsureEventsOwned_mF1722C2F3574DFE39C8509B62BA0013A68A1C8FB(__this, /*hidden argument*/NULL);
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_3 = __this->get_events_0();
|
|
int32_t L_4 = ___index0;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.ComponentModel.EventDescriptor System.ComponentModel.EventDescriptorCollection::get_Item(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * EventDescriptorCollection_get_Item_mAC0CEDB2E1BEFDF71736788A7444CA45645539BE (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, String_t* ___name0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___name0;
|
|
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_1 = VirtFuncInvoker2< EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 *, String_t*, bool >::Invoke(22 /* System.ComponentModel.EventDescriptor System.ComponentModel.EventDescriptorCollection::Find(System.String,System.Boolean) */, __this, L_0, (bool)0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.EventDescriptorCollection::Add(System.ComponentModel.EventDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EventDescriptorCollection_Add_mC05DAE99E5D1B041F5755F71E6A2E114640F9779 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EventDescriptorCollection_Add_mC05DAE99E5D1B041F5755F71E6A2E114640F9779_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
bool L_0 = __this->get_readOnly_6();
|
|
if (!L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_1 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
|
|
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_1, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, EventDescriptorCollection_Add_mC05DAE99E5D1B041F5755F71E6A2E114640F9779_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t L_2 = __this->get_eventCount_5();
|
|
EventDescriptorCollection_EnsureSize_m025A1E96DE65403C6BB70BB95F9098E6572EF191(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1)), /*hidden argument*/NULL);
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_3 = __this->get_events_0();
|
|
int32_t L_4 = __this->get_eventCount_5();
|
|
V_0 = L_4;
|
|
int32_t L_5 = V_0;
|
|
__this->set_eventCount_5(((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)));
|
|
int32_t L_6 = V_0;
|
|
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_7 = ___value0;
|
|
NullCheck(L_3);
|
|
ArrayElementTypeCheck (L_3, L_7);
|
|
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 *)L_7);
|
|
int32_t L_8 = __this->get_eventCount_5();
|
|
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1));
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.EventDescriptorCollection::Clear()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptorCollection_Clear_m72C4D0C9B92F9055A62EE6D86D9F3E86264405B5 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EventDescriptorCollection_Clear_m72C4D0C9B92F9055A62EE6D86D9F3E86264405B5_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
bool L_0 = __this->get_readOnly_6();
|
|
if (!L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_1 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
|
|
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_1, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, EventDescriptorCollection_Clear_m72C4D0C9B92F9055A62EE6D86D9F3E86264405B5_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
__this->set_eventCount_5(0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.EventDescriptorCollection::Contains(System.ComponentModel.EventDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventDescriptorCollection_Contains_mD58C927756864E91133BD59356756E96253D4416 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * ___value0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_0 = ___value0;
|
|
int32_t L_1 = EventDescriptorCollection_IndexOf_m2F0D99D9E5885CC7DB6133839635E9C806F6A385(__this, L_0, /*hidden argument*/NULL);
|
|
return (bool)((((int32_t)((((int32_t)L_1) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.EventDescriptorCollection::System.Collections.ICollection.CopyTo(System.Array,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptorCollection_System_Collections_ICollection_CopyTo_mB67B73650B5657F8405395D0BD6521ED8A3AF0D6 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EventDescriptorCollection_EnsureEventsOwned_mF1722C2F3574DFE39C8509B62BA0013A68A1C8FB(__this, /*hidden argument*/NULL);
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_0 = __this->get_events_0();
|
|
RuntimeArray * L_1 = ___array0;
|
|
int32_t L_2 = ___index1;
|
|
int32_t L_3 = EventDescriptorCollection_get_Count_mCAA673C0D2447E4823B34AE97D61BBC999A3E6BC_inline(__this, /*hidden argument*/NULL);
|
|
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_0, 0, L_1, L_2, L_3, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.EventDescriptorCollection::EnsureEventsOwned()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptorCollection_EnsureEventsOwned_mF1722C2F3574DFE39C8509B62BA0013A68A1C8FB (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EventDescriptorCollection_EnsureEventsOwned_mF1722C2F3574DFE39C8509B62BA0013A68A1C8FB_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* V_0 = NULL;
|
|
{
|
|
bool L_0 = __this->get_eventsOwned_3();
|
|
if (L_0)
|
|
{
|
|
goto IL_003e;
|
|
}
|
|
}
|
|
{
|
|
__this->set_eventsOwned_3((bool)1);
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_1 = __this->get_events_0();
|
|
if (!L_1)
|
|
{
|
|
goto IL_003e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = EventDescriptorCollection_get_Count_mCAA673C0D2447E4823B34AE97D61BBC999A3E6BC_inline(__this, /*hidden argument*/NULL);
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_3 = (EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)(EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)SZArrayNew(EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4_il2cpp_TypeInfo_var, (uint32_t)L_2);
|
|
V_0 = L_3;
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_4 = __this->get_events_0();
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_5 = V_0;
|
|
int32_t L_6 = EventDescriptorCollection_get_Count_mCAA673C0D2447E4823B34AE97D61BBC999A3E6BC_inline(__this, /*hidden argument*/NULL);
|
|
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_4, 0, (RuntimeArray *)(RuntimeArray *)L_5, 0, L_6, /*hidden argument*/NULL);
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_7 = V_0;
|
|
__this->set_events_0(L_7);
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
bool L_8 = __this->get_needSort_4();
|
|
if (!L_8)
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
{
|
|
__this->set_needSort_4((bool)0);
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_9 = __this->get_namedSort_1();
|
|
EventDescriptorCollection_InternalSort_mFC9324E5B172C969B8930B47ABE42FF8C2FEEC72(__this, L_9, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.EventDescriptorCollection::EnsureSize(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptorCollection_EnsureSize_m025A1E96DE65403C6BB70BB95F9098E6572EF191 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, int32_t ___sizeNeeded0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EventDescriptorCollection_EnsureSize_m025A1E96DE65403C6BB70BB95F9098E6572EF191_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* V_0 = NULL;
|
|
{
|
|
int32_t L_0 = ___sizeNeeded0;
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_1 = __this->get_events_0();
|
|
NullCheck(L_1);
|
|
if ((((int32_t)L_0) > ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))))))
|
|
{
|
|
goto IL_000c;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_2 = __this->get_events_0();
|
|
if (!L_2)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_3 = __this->get_events_0();
|
|
NullCheck(L_3);
|
|
if ((((RuntimeArray*)L_3)->max_length))
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
__this->set_eventCount_5(0);
|
|
int32_t L_4 = ___sizeNeeded0;
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_5 = (EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)(EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)SZArrayNew(EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4_il2cpp_TypeInfo_var, (uint32_t)L_4);
|
|
__this->set_events_0(L_5);
|
|
return;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
EventDescriptorCollection_EnsureEventsOwned_mF1722C2F3574DFE39C8509B62BA0013A68A1C8FB(__this, /*hidden argument*/NULL);
|
|
int32_t L_6 = ___sizeNeeded0;
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_7 = __this->get_events_0();
|
|
NullCheck(L_7);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var);
|
|
int32_t L_8 = Math_Max_mA99E48BB021F2E4B62D4EA9F52EA6928EED618A2(L_6, ((int32_t)il2cpp_codegen_multiply((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))), (int32_t)2)), /*hidden argument*/NULL);
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_9 = (EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)(EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)SZArrayNew(EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4_il2cpp_TypeInfo_var, (uint32_t)L_8);
|
|
V_0 = L_9;
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_10 = __this->get_events_0();
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_11 = V_0;
|
|
int32_t L_12 = __this->get_eventCount_5();
|
|
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_10, 0, (RuntimeArray *)(RuntimeArray *)L_11, 0, L_12, /*hidden argument*/NULL);
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_13 = V_0;
|
|
__this->set_events_0(L_13);
|
|
return;
|
|
}
|
|
}
|
|
// System.ComponentModel.EventDescriptor System.ComponentModel.EventDescriptorCollection::Find(System.String,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * EventDescriptorCollection_Find_mF9B00E7D7FD42F06FC18D863D07AB9A5D9778A1A (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, String_t* ___name0, bool ___ignoreCase1, const RuntimeMethod* method)
|
|
{
|
|
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
{
|
|
V_0 = (EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 *)NULL;
|
|
bool L_0 = ___ignoreCase1;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
V_1 = 0;
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_1 = __this->get_events_0();
|
|
int32_t L_2 = V_1;
|
|
NullCheck(L_1);
|
|
int32_t L_3 = L_2;
|
|
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
|
|
NullCheck(L_4);
|
|
String_t* L_5 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, L_4);
|
|
String_t* L_6 = ___name0;
|
|
bool L_7 = String_Equals_m1A3302D7214F75FB06302101934BF3EE9282AA43(L_5, L_6, 5, /*hidden argument*/NULL);
|
|
if (!L_7)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_8 = __this->get_events_0();
|
|
int32_t L_9 = V_1;
|
|
NullCheck(L_8);
|
|
int32_t L_10 = L_9;
|
|
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
|
|
V_0 = L_11;
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
int32_t L_12 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
int32_t L_13 = V_1;
|
|
int32_t L_14 = EventDescriptorCollection_get_Count_mCAA673C0D2447E4823B34AE97D61BBC999A3E6BC_inline(__this, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_13) < ((int32_t)L_14)))
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
V_2 = 0;
|
|
goto IL_0062;
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_15 = __this->get_events_0();
|
|
int32_t L_16 = V_2;
|
|
NullCheck(L_15);
|
|
int32_t L_17 = L_16;
|
|
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
|
|
NullCheck(L_18);
|
|
String_t* L_19 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, L_18);
|
|
String_t* L_20 = ___name0;
|
|
bool L_21 = String_Equals_m1A3302D7214F75FB06302101934BF3EE9282AA43(L_19, L_20, 4, /*hidden argument*/NULL);
|
|
if (!L_21)
|
|
{
|
|
goto IL_005e;
|
|
}
|
|
}
|
|
{
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_22 = __this->get_events_0();
|
|
int32_t L_23 = V_2;
|
|
NullCheck(L_22);
|
|
int32_t L_24 = L_23;
|
|
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_25 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
|
|
V_0 = L_25;
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
int32_t L_26 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
int32_t L_27 = V_2;
|
|
int32_t L_28 = EventDescriptorCollection_get_Count_mCAA673C0D2447E4823B34AE97D61BBC999A3E6BC_inline(__this, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_27) < ((int32_t)L_28)))
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_29 = V_0;
|
|
return L_29;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.EventDescriptorCollection::IndexOf(System.ComponentModel.EventDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EventDescriptorCollection_IndexOf_m2F0D99D9E5885CC7DB6133839635E9C806F6A385 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EventDescriptorCollection_IndexOf_m2F0D99D9E5885CC7DB6133839635E9C806F6A385_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_0 = __this->get_events_0();
|
|
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_1 = ___value0;
|
|
int32_t L_2 = __this->get_eventCount_5();
|
|
int32_t L_3 = Array_IndexOf_TisEventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222_m0E7AA94FB6DD5B8865347D3C3E259BE6A3ABA6D8(L_0, L_1, 0, L_2, /*hidden argument*/Array_IndexOf_TisEventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222_m0E7AA94FB6DD5B8865347D3C3E259BE6A3ABA6D8_RuntimeMethod_var);
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.EventDescriptorCollection::Insert(System.Int32,System.ComponentModel.EventDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptorCollection_Insert_mB3259BB95ADAA9B11B8A2171F5FAD03C52C40557 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, int32_t ___index0, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * ___value1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EventDescriptorCollection_Insert_mB3259BB95ADAA9B11B8A2171F5FAD03C52C40557_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
bool L_0 = __this->get_readOnly_6();
|
|
if (!L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_1 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
|
|
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_1, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, EventDescriptorCollection_Insert_mB3259BB95ADAA9B11B8A2171F5FAD03C52C40557_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t L_2 = __this->get_eventCount_5();
|
|
EventDescriptorCollection_EnsureSize_m025A1E96DE65403C6BB70BB95F9098E6572EF191(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1)), /*hidden argument*/NULL);
|
|
int32_t L_3 = ___index0;
|
|
int32_t L_4 = __this->get_eventCount_5();
|
|
if ((((int32_t)L_3) >= ((int32_t)L_4)))
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
{
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_5 = __this->get_events_0();
|
|
int32_t L_6 = ___index0;
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_7 = __this->get_events_0();
|
|
int32_t L_8 = ___index0;
|
|
int32_t L_9 = __this->get_eventCount_5();
|
|
int32_t L_10 = ___index0;
|
|
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_5, L_6, (RuntimeArray *)(RuntimeArray *)L_7, ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)), ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)L_10)), /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_11 = __this->get_events_0();
|
|
int32_t L_12 = ___index0;
|
|
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_13 = ___value1;
|
|
NullCheck(L_11);
|
|
ArrayElementTypeCheck (L_11, L_13);
|
|
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(L_12), (EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 *)L_13);
|
|
int32_t L_14 = __this->get_eventCount_5();
|
|
__this->set_eventCount_5(((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)));
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.EventDescriptorCollection::Remove(System.ComponentModel.EventDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptorCollection_Remove_m9F6BF67636B9406EEFB0E3589F4EB3BAF625447E (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EventDescriptorCollection_Remove_m9F6BF67636B9406EEFB0E3589F4EB3BAF625447E_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
bool L_0 = __this->get_readOnly_6();
|
|
if (!L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_1 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
|
|
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_1, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, EventDescriptorCollection_Remove_m9F6BF67636B9406EEFB0E3589F4EB3BAF625447E_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_2 = ___value0;
|
|
int32_t L_3 = EventDescriptorCollection_IndexOf_m2F0D99D9E5885CC7DB6133839635E9C806F6A385(__this, L_2, /*hidden argument*/NULL);
|
|
V_0 = L_3;
|
|
int32_t L_4 = V_0;
|
|
if ((((int32_t)L_4) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = V_0;
|
|
EventDescriptorCollection_RemoveAt_m3124EA86A586B8FE157E6D6F594E3DCA0752D6D1(__this, L_5, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.EventDescriptorCollection::RemoveAt(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptorCollection_RemoveAt_m3124EA86A586B8FE157E6D6F594E3DCA0752D6D1 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EventDescriptorCollection_RemoveAt_m3124EA86A586B8FE157E6D6F594E3DCA0752D6D1_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
bool L_0 = __this->get_readOnly_6();
|
|
if (!L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_1 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
|
|
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_1, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, EventDescriptorCollection_RemoveAt_m3124EA86A586B8FE157E6D6F594E3DCA0752D6D1_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t L_2 = ___index0;
|
|
int32_t L_3 = __this->get_eventCount_5();
|
|
if ((((int32_t)L_2) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)1)))))
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
{
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_4 = __this->get_events_0();
|
|
int32_t L_5 = ___index0;
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_6 = __this->get_events_0();
|
|
int32_t L_7 = ___index0;
|
|
int32_t L_8 = __this->get_eventCount_5();
|
|
int32_t L_9 = ___index0;
|
|
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_4, ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)), (RuntimeArray *)(RuntimeArray *)L_6, L_7, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)L_9)), (int32_t)1)), /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_10 = __this->get_events_0();
|
|
int32_t L_11 = __this->get_eventCount_5();
|
|
NullCheck(L_10);
|
|
ArrayElementTypeCheck (L_10, NULL);
|
|
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)1))), (EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 *)NULL);
|
|
int32_t L_12 = __this->get_eventCount_5();
|
|
__this->set_eventCount_5(((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)1)));
|
|
return;
|
|
}
|
|
}
|
|
// System.Collections.IEnumerator System.ComponentModel.EventDescriptorCollection::GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* EventDescriptorCollection_GetEnumerator_mEC07212EAD84EF5CD1DB03CFF3773669A030342F (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EventDescriptorCollection_GetEnumerator_mEC07212EAD84EF5CD1DB03CFF3773669A030342F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_0 = __this->get_events_0();
|
|
NullCheck(L_0);
|
|
int32_t L_1 = __this->get_eventCount_5();
|
|
if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))))) == ((uint32_t)L_1))))
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_2 = __this->get_events_0();
|
|
NullCheck((RuntimeArray *)(RuntimeArray *)L_2);
|
|
RuntimeObject* L_3 = Array_GetEnumerator_m3BD9ACCA9512DA3687C8369BF999BA2916F0EA15((RuntimeArray *)(RuntimeArray *)L_2, /*hidden argument*/NULL);
|
|
return L_3;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_4 = __this->get_events_0();
|
|
int32_t L_5 = __this->get_eventCount_5();
|
|
ArraySubsetEnumerator_tA39E27E02B80287A51F09D2875F1A3AF86768BDA * L_6 = (ArraySubsetEnumerator_tA39E27E02B80287A51F09D2875F1A3AF86768BDA *)il2cpp_codegen_object_new(ArraySubsetEnumerator_tA39E27E02B80287A51F09D2875F1A3AF86768BDA_il2cpp_TypeInfo_var);
|
|
ArraySubsetEnumerator__ctor_m39C3859EB2625F6E584E35FDB1950B5E8407761C(L_6, (RuntimeArray *)(RuntimeArray *)L_4, L_5, /*hidden argument*/NULL);
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.ComponentModel.EventDescriptorCollection System.ComponentModel.EventDescriptorCollection::Sort()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * EventDescriptorCollection_Sort_mCB21BF3537C01CD86670AFF9C2D2C03E0106D6CF (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EventDescriptorCollection_Sort_mCB21BF3537C01CD86670AFF9C2D2C03E0106D6CF_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_0 = __this->get_events_0();
|
|
int32_t L_1 = __this->get_eventCount_5();
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_2 = __this->get_namedSort_1();
|
|
RuntimeObject* L_3 = __this->get_comparer_2();
|
|
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_4 = (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 *)il2cpp_codegen_object_new(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37_il2cpp_TypeInfo_var);
|
|
EventDescriptorCollection__ctor_m855A2D527708065CD2E181EBF15A7C743AB6FAC1(L_4, L_0, L_1, L_2, L_3, /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.ComponentModel.EventDescriptorCollection System.ComponentModel.EventDescriptorCollection::Sort(System.String[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * EventDescriptorCollection_Sort_mA0D4ADE46CE36428428AE39B8A3EB86A8364233B (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___names0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EventDescriptorCollection_Sort_mA0D4ADE46CE36428428AE39B8A3EB86A8364233B_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_0 = __this->get_events_0();
|
|
int32_t L_1 = __this->get_eventCount_5();
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_2 = ___names0;
|
|
RuntimeObject* L_3 = __this->get_comparer_2();
|
|
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_4 = (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 *)il2cpp_codegen_object_new(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37_il2cpp_TypeInfo_var);
|
|
EventDescriptorCollection__ctor_m855A2D527708065CD2E181EBF15A7C743AB6FAC1(L_4, L_0, L_1, L_2, L_3, /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.ComponentModel.EventDescriptorCollection System.ComponentModel.EventDescriptorCollection::Sort(System.String[],System.Collections.IComparer)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * EventDescriptorCollection_Sort_m1B8F2EDD470081CCC8218A83CC5C3169E7AE4264 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___names0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EventDescriptorCollection_Sort_m1B8F2EDD470081CCC8218A83CC5C3169E7AE4264_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_0 = __this->get_events_0();
|
|
int32_t L_1 = __this->get_eventCount_5();
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_2 = ___names0;
|
|
RuntimeObject* L_3 = ___comparer1;
|
|
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_4 = (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 *)il2cpp_codegen_object_new(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37_il2cpp_TypeInfo_var);
|
|
EventDescriptorCollection__ctor_m855A2D527708065CD2E181EBF15A7C743AB6FAC1(L_4, L_0, L_1, L_2, L_3, /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.ComponentModel.EventDescriptorCollection System.ComponentModel.EventDescriptorCollection::Sort(System.Collections.IComparer)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * EventDescriptorCollection_Sort_mA76B90B9FFAB3A35C048C30559792E13FB6CACCA (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EventDescriptorCollection_Sort_mA76B90B9FFAB3A35C048C30559792E13FB6CACCA_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_0 = __this->get_events_0();
|
|
int32_t L_1 = __this->get_eventCount_5();
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_2 = __this->get_namedSort_1();
|
|
RuntimeObject* L_3 = ___comparer0;
|
|
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_4 = (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 *)il2cpp_codegen_object_new(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37_il2cpp_TypeInfo_var);
|
|
EventDescriptorCollection__ctor_m855A2D527708065CD2E181EBF15A7C743AB6FAC1(L_4, L_0, L_1, L_2, L_3, /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.EventDescriptorCollection::InternalSort(System.String[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptorCollection_InternalSort_mFC9324E5B172C969B8930B47ABE42FF8C2FEEC72 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___names0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EventDescriptorCollection_InternalSort_mFC9324E5B172C969B8930B47ABE42FF8C2FEEC72_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * V_5 = NULL;
|
|
int32_t V_6 = 0;
|
|
{
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_0 = __this->get_events_0();
|
|
if (!L_0)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_1 = __this->get_events_0();
|
|
NullCheck(L_1);
|
|
if ((((RuntimeArray*)L_1)->max_length))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
RuntimeObject* L_2 = __this->get_comparer_2();
|
|
EventDescriptorCollection_InternalSort_mAF3920AA7607A00C1B327539E007F9BBCD2FF13F(__this, L_2, /*hidden argument*/NULL);
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_3 = ___names0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_00d0;
|
|
}
|
|
}
|
|
{
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_4 = ___names0;
|
|
NullCheck(L_4);
|
|
if (!(((RuntimeArray*)L_4)->max_length))
|
|
{
|
|
goto IL_00d0;
|
|
}
|
|
}
|
|
{
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_5 = __this->get_events_0();
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_6 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
|
|
ArrayList__ctor_m5BD62A8348AB3A2F573860E81A181B5376AF8FA1(L_6, (RuntimeObject*)(RuntimeObject*)L_5, /*hidden argument*/NULL);
|
|
V_0 = L_6;
|
|
V_1 = 0;
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_7 = __this->get_events_0();
|
|
NullCheck(L_7);
|
|
V_2 = (((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length))));
|
|
V_3 = 0;
|
|
goto IL_0097;
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
V_4 = 0;
|
|
goto IL_008e;
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_8 = V_0;
|
|
int32_t L_9 = V_4;
|
|
NullCheck(L_8);
|
|
RuntimeObject * L_10 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_8, L_9);
|
|
V_5 = ((EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 *)CastclassClass((RuntimeObject*)L_10, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222_il2cpp_TypeInfo_var));
|
|
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_11 = V_5;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0088;
|
|
}
|
|
}
|
|
{
|
|
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_12 = V_5;
|
|
NullCheck(L_12);
|
|
String_t* L_13 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, L_12);
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_14 = ___names0;
|
|
int32_t L_15 = V_3;
|
|
NullCheck(L_14);
|
|
int32_t L_16 = L_15;
|
|
String_t* L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
|
|
NullCheck(L_13);
|
|
bool L_18 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_13, L_17, /*hidden argument*/NULL);
|
|
if (!L_18)
|
|
{
|
|
goto IL_0088;
|
|
}
|
|
}
|
|
{
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_19 = __this->get_events_0();
|
|
int32_t L_20 = V_1;
|
|
int32_t L_21 = L_20;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1));
|
|
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_22 = V_5;
|
|
NullCheck(L_19);
|
|
ArrayElementTypeCheck (L_19, L_22);
|
|
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(L_21), (EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 *)L_22);
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_23 = V_0;
|
|
int32_t L_24 = V_4;
|
|
NullCheck(L_23);
|
|
VirtActionInvoker2< int32_t, RuntimeObject * >::Invoke(28 /* System.Void System.Collections.ArrayList::set_Item(System.Int32,System.Object) */, L_23, L_24, NULL);
|
|
goto IL_0093;
|
|
}
|
|
|
|
IL_0088:
|
|
{
|
|
int32_t L_25 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
|
|
}
|
|
|
|
IL_008e:
|
|
{
|
|
int32_t L_26 = V_4;
|
|
int32_t L_27 = V_2;
|
|
if ((((int32_t)L_26) < ((int32_t)L_27)))
|
|
{
|
|
goto IL_004b;
|
|
}
|
|
}
|
|
|
|
IL_0093:
|
|
{
|
|
int32_t L_28 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1));
|
|
}
|
|
|
|
IL_0097:
|
|
{
|
|
int32_t L_29 = V_3;
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_30 = ___names0;
|
|
NullCheck(L_30);
|
|
if ((((int32_t)L_29) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_30)->max_length)))))))
|
|
{
|
|
goto IL_0046;
|
|
}
|
|
}
|
|
{
|
|
V_6 = 0;
|
|
goto IL_00cb;
|
|
}
|
|
|
|
IL_00a2:
|
|
{
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_31 = V_0;
|
|
int32_t L_32 = V_6;
|
|
NullCheck(L_31);
|
|
RuntimeObject * L_33 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_31, L_32);
|
|
if (!L_33)
|
|
{
|
|
goto IL_00c5;
|
|
}
|
|
}
|
|
{
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_34 = __this->get_events_0();
|
|
int32_t L_35 = V_1;
|
|
int32_t L_36 = L_35;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1));
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_37 = V_0;
|
|
int32_t L_38 = V_6;
|
|
NullCheck(L_37);
|
|
RuntimeObject * L_39 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_37, L_38);
|
|
NullCheck(L_34);
|
|
ArrayElementTypeCheck (L_34, ((EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 *)CastclassClass((RuntimeObject*)L_39, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222_il2cpp_TypeInfo_var)));
|
|
(L_34)->SetAt(static_cast<il2cpp_array_size_t>(L_36), (EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 *)((EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 *)CastclassClass((RuntimeObject*)L_39, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222_il2cpp_TypeInfo_var)));
|
|
}
|
|
|
|
IL_00c5:
|
|
{
|
|
int32_t L_40 = V_6;
|
|
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)1));
|
|
}
|
|
|
|
IL_00cb:
|
|
{
|
|
int32_t L_41 = V_6;
|
|
int32_t L_42 = V_2;
|
|
if ((((int32_t)L_41) < ((int32_t)L_42)))
|
|
{
|
|
goto IL_00a2;
|
|
}
|
|
}
|
|
|
|
IL_00d0:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.EventDescriptorCollection::InternalSort(System.Collections.IComparer)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptorCollection_InternalSort_mAF3920AA7607A00C1B327539E007F9BBCD2FF13F (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, RuntimeObject* ___sorter0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EventDescriptorCollection_InternalSort_mAF3920AA7607A00C1B327539E007F9BBCD2FF13F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = ___sorter0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
|
|
TypeDescriptor_SortDescriptorArray_mF1BF8FDE18108198B6E5CF6B31909A7F544F649C(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_1 = __this->get_events_0();
|
|
RuntimeObject* L_2 = ___sorter0;
|
|
Array_Sort_mF1CCD5D84D8D9EF9872FAB34A474119942AD495A((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.EventDescriptorCollection::System.Collections.ICollection.get_Count()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EventDescriptorCollection_System_Collections_ICollection_get_Count_m360696919250EEB37806F7B331BC2D5127021716 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = EventDescriptorCollection_get_Count_mCAA673C0D2447E4823B34AE97D61BBC999A3E6BC_inline(__this, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.EventDescriptorCollection::System.Collections.ICollection.get_IsSynchronized()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventDescriptorCollection_System_Collections_ICollection_get_IsSynchronized_mCC1E151D95FB716BE8B06CD7F9C9B0E80E4B2E4D (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.EventDescriptorCollection::System.Collections.ICollection.get_SyncRoot()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EventDescriptorCollection_System_Collections_ICollection_get_SyncRoot_mBDACC0F4D991CDC34E1447AA9D5BE06B6A0E44F2 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return NULL;
|
|
}
|
|
}
|
|
// System.Collections.IEnumerator System.ComponentModel.EventDescriptorCollection::System.Collections.IEnumerable.GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* EventDescriptorCollection_System_Collections_IEnumerable_GetEnumerator_m175494690E3ECAC20382096A8D43493C6DF3245A (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = EventDescriptorCollection_GetEnumerator_mEC07212EAD84EF5CD1DB03CFF3773669A030342F(__this, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.EventDescriptorCollection::System.Collections.IList.get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EventDescriptorCollection_System_Collections_IList_get_Item_mF9F2044326BAD3E203EE9C4B71998C6139671E7C (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___index0;
|
|
EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 * L_1 = VirtFuncInvoker1< EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 *, int32_t >::Invoke(20 /* System.ComponentModel.EventDescriptor System.ComponentModel.EventDescriptorCollection::get_Item(System.Int32) */, __this, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.EventDescriptorCollection::System.Collections.IList.set_Item(System.Int32,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptorCollection_System_Collections_IList_set_Item_m12BD29BF86D1A0AC1255C811F7E9BE0D56DD48DD (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EventDescriptorCollection_System_Collections_IList_set_Item_m12BD29BF86D1A0AC1255C811F7E9BE0D56DD48DD_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
bool L_0 = __this->get_readOnly_6();
|
|
if (!L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_1 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
|
|
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_1, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, EventDescriptorCollection_System_Collections_IList_set_Item_m12BD29BF86D1A0AC1255C811F7E9BE0D56DD48DD_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t L_2 = ___index0;
|
|
int32_t L_3 = __this->get_eventCount_5();
|
|
if ((((int32_t)L_2) < ((int32_t)L_3)))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * L_4 = (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF *)il2cpp_codegen_object_new(IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var);
|
|
IndexOutOfRangeException__ctor_m17448AB4B27BC9D8AEB4605CDB0EA053626ABEC1(L_4, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, EventDescriptorCollection_System_Collections_IList_set_Item_m12BD29BF86D1A0AC1255C811F7E9BE0D56DD48DD_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
EventDescriptorCollection_EnsureEventsOwned_mF1722C2F3574DFE39C8509B62BA0013A68A1C8FB(__this, /*hidden argument*/NULL);
|
|
EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4* L_5 = __this->get_events_0();
|
|
int32_t L_6 = ___index0;
|
|
RuntimeObject * L_7 = ___value1;
|
|
NullCheck(L_5);
|
|
ArrayElementTypeCheck (L_5, ((EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 *)CastclassClass((RuntimeObject*)L_7, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222_il2cpp_TypeInfo_var)));
|
|
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 *)((EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 *)CastclassClass((RuntimeObject*)L_7, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222_il2cpp_TypeInfo_var)));
|
|
return;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.EventDescriptorCollection::System.Collections.IList.Add(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EventDescriptorCollection_System_Collections_IList_Add_mA285053C7C5617586A25D1B3FD1DA834A484F9B9 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EventDescriptorCollection_System_Collections_IList_Add_mA285053C7C5617586A25D1B3FD1DA834A484F9B9_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject * L_0 = ___value0;
|
|
int32_t L_1 = EventDescriptorCollection_Add_mC05DAE99E5D1B041F5755F71E6A2E114640F9779(__this, ((EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 *)CastclassClass((RuntimeObject*)L_0, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.EventDescriptorCollection::System.Collections.IList.Clear()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptorCollection_System_Collections_IList_Clear_m690719A2AC9F81A4B9D94878CA2A991F07F2538C (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EventDescriptorCollection_Clear_m72C4D0C9B92F9055A62EE6D86D9F3E86264405B5(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.EventDescriptorCollection::System.Collections.IList.Contains(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventDescriptorCollection_System_Collections_IList_Contains_mF75078ECF8D88E161AA11A9AAE71543ECB3CEC26 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EventDescriptorCollection_System_Collections_IList_Contains_mF75078ECF8D88E161AA11A9AAE71543ECB3CEC26_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject * L_0 = ___value0;
|
|
bool L_1 = EventDescriptorCollection_Contains_mD58C927756864E91133BD59356756E96253D4416(__this, ((EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 *)CastclassClass((RuntimeObject*)L_0, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.EventDescriptorCollection::System.Collections.IList.IndexOf(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EventDescriptorCollection_System_Collections_IList_IndexOf_m48410473C90632946175F748D09BFAA506D0578E (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EventDescriptorCollection_System_Collections_IList_IndexOf_m48410473C90632946175F748D09BFAA506D0578E_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject * L_0 = ___value0;
|
|
int32_t L_1 = EventDescriptorCollection_IndexOf_m2F0D99D9E5885CC7DB6133839635E9C806F6A385(__this, ((EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 *)CastclassClass((RuntimeObject*)L_0, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.EventDescriptorCollection::System.Collections.IList.Insert(System.Int32,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptorCollection_System_Collections_IList_Insert_m0538802AE7EB66BDF621A96C23637A50738FD995 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EventDescriptorCollection_System_Collections_IList_Insert_m0538802AE7EB66BDF621A96C23637A50738FD995_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = ___index0;
|
|
RuntimeObject * L_1 = ___value1;
|
|
EventDescriptorCollection_Insert_mB3259BB95ADAA9B11B8A2171F5FAD03C52C40557(__this, L_0, ((EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 *)CastclassClass((RuntimeObject*)L_1, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.EventDescriptorCollection::System.Collections.IList.Remove(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptorCollection_System_Collections_IList_Remove_m7416A79A4EA58351DBF9B8111C69A6CA8DD1DB05 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EventDescriptorCollection_System_Collections_IList_Remove_m7416A79A4EA58351DBF9B8111C69A6CA8DD1DB05_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject * L_0 = ___value0;
|
|
EventDescriptorCollection_Remove_m9F6BF67636B9406EEFB0E3589F4EB3BAF625447E(__this, ((EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222 *)CastclassClass((RuntimeObject*)L_0, EventDescriptor_tAB488D66C0409A1889EE56355848CDA43ED95222_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.EventDescriptorCollection::System.Collections.IList.RemoveAt(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptorCollection_System_Collections_IList_RemoveAt_m9DCA747BC2AC75F2920EC289C66FCE2099622329 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___index0;
|
|
EventDescriptorCollection_RemoveAt_m3124EA86A586B8FE157E6D6F594E3DCA0752D6D1(__this, L_0, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.EventDescriptorCollection::System.Collections.IList.get_IsReadOnly()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventDescriptorCollection_System_Collections_IList_get_IsReadOnly_m1D57F4D7C77E62F7E06273DEC783685E107D0DB5 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->get_readOnly_6();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.EventDescriptorCollection::System.Collections.IList.get_IsFixedSize()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventDescriptorCollection_System_Collections_IList_get_IsFixedSize_m00833DCAD0FB8406395CDA1CA0E6C4DDBF958100 (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->get_readOnly_6();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.EventDescriptorCollection::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDescriptorCollection__cctor_m027E184FD1333633CEFBEE18BA140A89E8DEEFB1 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EventDescriptorCollection__cctor_m027E184FD1333633CEFBEE18BA140A89E8DEEFB1_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * L_0 = (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 *)il2cpp_codegen_object_new(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37_il2cpp_TypeInfo_var);
|
|
EventDescriptorCollection__ctor_mDC62048A9CCD9F4E5C2CE7BBEB7C995A60ACB0D5(L_0, (EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)(EventDescriptorU5BU5D_t813A4DE1E217CA821E8389F24AB1562B0A5458C4*)NULL, (bool)1, /*hidden argument*/NULL);
|
|
((EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37_StaticFields*)il2cpp_codegen_static_fields_for(EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37_il2cpp_TypeInfo_var))->set_Empty_7(L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.EventHandlerList::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandlerList__ctor_mE953BDF2C360A0ABCD90892E5F48D26762358CC8 (EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.EventHandlerList::.ctor(System.ComponentModel.Component)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandlerList__ctor_m3B8B937C7A4F3EF4E46315692BC1CF5BAC97CD38 (EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 * __this, Component_t7AEFE153F6778CF52E1981BC3E811A9604B29473 * ___parent0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
Component_t7AEFE153F6778CF52E1981BC3E811A9604B29473 * L_0 = ___parent0;
|
|
__this->set_parent_1(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Delegate System.ComponentModel.EventHandlerList::get_Item(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * EventHandlerList_get_Item_mFB7DC8CD40DFDA76E9732CB48CE774DDEC373C42 (EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 * __this, RuntimeObject * ___key0, const RuntimeMethod* method)
|
|
{
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * V_0 = NULL;
|
|
{
|
|
V_0 = (ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D *)NULL;
|
|
Component_t7AEFE153F6778CF52E1981BC3E811A9604B29473 * L_0 = __this->get_parent_1();
|
|
if (!L_0)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
Component_t7AEFE153F6778CF52E1981BC3E811A9604B29473 * L_1 = __this->get_parent_1();
|
|
NullCheck(L_1);
|
|
bool L_2 = Component_get_CanRaiseEventsInternal_mEB36254A3CA5E7A1BD31D1B9F13D93ACC295936F(L_1, /*hidden argument*/NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
RuntimeObject * L_3 = ___key0;
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * L_4 = EventHandlerList_Find_m0D64F77486BF4EABD934BF04CE38EF6DB0450B42(__this, L_3, /*hidden argument*/NULL);
|
|
V_0 = L_4;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * L_5 = V_0;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * L_6 = V_0;
|
|
NullCheck(L_6);
|
|
Delegate_t * L_7 = L_6->get_handler_2();
|
|
return L_7;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
return (Delegate_t *)NULL;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.EventHandlerList::set_Item(System.Object,System.Delegate)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandlerList_set_Item_m2B5E38C064A6761A2E50A30440297B71372007A9 (EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 * __this, RuntimeObject * ___key0, Delegate_t * ___value1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EventHandlerList_set_Item_m2B5E38C064A6761A2E50A30440297B71372007A9_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * V_0 = NULL;
|
|
{
|
|
RuntimeObject * L_0 = ___key0;
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * L_1 = EventHandlerList_Find_m0D64F77486BF4EABD934BF04CE38EF6DB0450B42(__this, L_0, /*hidden argument*/NULL);
|
|
V_0 = L_1;
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * L_3 = V_0;
|
|
Delegate_t * L_4 = ___value1;
|
|
NullCheck(L_3);
|
|
L_3->set_handler_2(L_4);
|
|
return;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
RuntimeObject * L_5 = ___key0;
|
|
Delegate_t * L_6 = ___value1;
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * L_7 = __this->get_head_0();
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * L_8 = (ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D *)il2cpp_codegen_object_new(ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D_il2cpp_TypeInfo_var);
|
|
ListEntry__ctor_m8FB0789AFD94BD817A59EB14EF2064A2F4270220(L_8, L_5, L_6, L_7, /*hidden argument*/NULL);
|
|
__this->set_head_0(L_8);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.EventHandlerList::AddHandler(System.Object,System.Delegate)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandlerList_AddHandler_m7C93C7AF6FD41E4C41E444CCEC0E46C9F3F01A09 (EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 * __this, RuntimeObject * ___key0, Delegate_t * ___value1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (EventHandlerList_AddHandler_m7C93C7AF6FD41E4C41E444CCEC0E46C9F3F01A09_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * V_0 = NULL;
|
|
{
|
|
RuntimeObject * L_0 = ___key0;
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * L_1 = EventHandlerList_Find_m0D64F77486BF4EABD934BF04CE38EF6DB0450B42(__this, L_0, /*hidden argument*/NULL);
|
|
V_0 = L_1;
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * L_3 = V_0;
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * L_4 = V_0;
|
|
NullCheck(L_4);
|
|
Delegate_t * L_5 = L_4->get_handler_2();
|
|
Delegate_t * L_6 = ___value1;
|
|
Delegate_t * L_7 = Delegate_Combine_mC25D2F7DECAFBA6D9A2F9EBA8A77063F0658ECF1(L_5, L_6, /*hidden argument*/NULL);
|
|
NullCheck(L_3);
|
|
L_3->set_handler_2(L_7);
|
|
return;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
RuntimeObject * L_8 = ___key0;
|
|
Delegate_t * L_9 = ___value1;
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * L_10 = __this->get_head_0();
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * L_11 = (ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D *)il2cpp_codegen_object_new(ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D_il2cpp_TypeInfo_var);
|
|
ListEntry__ctor_m8FB0789AFD94BD817A59EB14EF2064A2F4270220(L_11, L_8, L_9, L_10, /*hidden argument*/NULL);
|
|
__this->set_head_0(L_11);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.EventHandlerList::AddHandlers(System.ComponentModel.EventHandlerList)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandlerList_AddHandlers_mE69D3268A2948384A7D6EED824371B9A87E5C8CC (EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 * __this, EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 * ___listToAddFrom0, const RuntimeMethod* method)
|
|
{
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * V_0 = NULL;
|
|
{
|
|
EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 * L_0 = ___listToAddFrom0;
|
|
NullCheck(L_0);
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * L_1 = L_0->get_head_0();
|
|
V_0 = L_1;
|
|
goto IL_0022;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * L_2 = V_0;
|
|
NullCheck(L_2);
|
|
RuntimeObject * L_3 = L_2->get_key_1();
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * L_4 = V_0;
|
|
NullCheck(L_4);
|
|
Delegate_t * L_5 = L_4->get_handler_2();
|
|
EventHandlerList_AddHandler_m7C93C7AF6FD41E4C41E444CCEC0E46C9F3F01A09(__this, L_3, L_5, /*hidden argument*/NULL);
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * L_6 = V_0;
|
|
NullCheck(L_6);
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * L_7 = L_6->get_next_0();
|
|
V_0 = L_7;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * L_8 = V_0;
|
|
if (L_8)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.EventHandlerList::Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandlerList_Dispose_m7AE615B1F92C7048EB95A80A0E32761EE57B66AE (EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->set_head_0((ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D *)NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.ComponentModel.EventHandlerList_ListEntry System.ComponentModel.EventHandlerList::Find(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * EventHandlerList_Find_m0D64F77486BF4EABD934BF04CE38EF6DB0450B42 (EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 * __this, RuntimeObject * ___key0, const RuntimeMethod* method)
|
|
{
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * V_0 = NULL;
|
|
{
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * L_0 = __this->get_head_0();
|
|
V_0 = L_0;
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * L_1 = V_0;
|
|
NullCheck(L_1);
|
|
RuntimeObject * L_2 = L_1->get_key_1();
|
|
RuntimeObject * L_3 = ___key0;
|
|
if ((((RuntimeObject*)(RuntimeObject *)L_2) == ((RuntimeObject*)(RuntimeObject *)L_3)))
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * L_4 = V_0;
|
|
NullCheck(L_4);
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * L_5 = L_4->get_next_0();
|
|
V_0 = L_5;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * L_6 = V_0;
|
|
if (L_6)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * L_7 = V_0;
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.EventHandlerList::RemoveHandler(System.Object,System.Delegate)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandlerList_RemoveHandler_mC125E76596116E967804D771CC7551ED5E700718 (EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 * __this, RuntimeObject * ___key0, Delegate_t * ___value1, const RuntimeMethod* method)
|
|
{
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * V_0 = NULL;
|
|
{
|
|
RuntimeObject * L_0 = ___key0;
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * L_1 = EventHandlerList_Find_m0D64F77486BF4EABD934BF04CE38EF6DB0450B42(__this, L_0, /*hidden argument*/NULL);
|
|
V_0 = L_1;
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * L_3 = V_0;
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * L_4 = V_0;
|
|
NullCheck(L_4);
|
|
Delegate_t * L_5 = L_4->get_handler_2();
|
|
Delegate_t * L_6 = ___value1;
|
|
Delegate_t * L_7 = Delegate_Remove_m0B0DB7D1B3AF96B71AFAA72BA0EFE32FBBC2932D(L_5, L_6, /*hidden argument*/NULL);
|
|
NullCheck(L_3);
|
|
L_3->set_handler_2(L_7);
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.EventHandlerList_ListEntry::.ctor(System.Object,System.Delegate,System.ComponentModel.EventHandlerList_ListEntry)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListEntry__ctor_m8FB0789AFD94BD817A59EB14EF2064A2F4270220 (ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * __this, RuntimeObject * ___key0, Delegate_t * ___handler1, ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * ___next2, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
ListEntry_t32989B38CAC0D49C6A5AC5BA1622A62088BA6E6D * L_0 = ___next2;
|
|
__this->set_next_0(L_0);
|
|
RuntimeObject * L_1 = ___key0;
|
|
__this->set_key_1(L_1);
|
|
Delegate_t * L_2 = ___handler1;
|
|
__this->set_handler_2(L_2);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.ExpandableObjectConverter::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpandableObjectConverter__ctor_mDFE2C6DF3E42BFEDD938757267F2A6E40B8FEB66 (ExpandableObjectConverter_tC19580E01F630034FD5140CFA7453E1125E13F99 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ExpandableObjectConverter__ctor_mDFE2C6DF3E42BFEDD938757267F2A6E40B8FEB66_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_il2cpp_TypeInfo_var);
|
|
TypeConverter__ctor_m7F8A006E775CCB83A8ACB042B296E48B0AE501CD(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.ExpandableObjectConverter::GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * ExpandableObjectConverter_GetProperties_m674DA113DAF377614A8EB8BB5BE199BEF53B37C2 (ExpandableObjectConverter_tC19580E01F630034FD5140CFA7453E1125E13F99 * __this, RuntimeObject* ___context0, RuntimeObject * ___value1, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ExpandableObjectConverter_GetProperties_m674DA113DAF377614A8EB8BB5BE199BEF53B37C2_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject * L_0 = ___value1;
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_1 = ___attributes2;
|
|
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
|
|
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_2 = TypeDescriptor_GetProperties_m05CFF294019C93C8ADC7433BB7D5D87F19DDE7FC(L_0, L_1, /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.ExpandableObjectConverter::GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExpandableObjectConverter_GetPropertiesSupported_m6908E999010CD552559E3143245E02D69BBB4B73 (ExpandableObjectConverter_tC19580E01F630034FD5140CFA7453E1125E13F99 * __this, RuntimeObject* ___context0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.ExtendedPropertyDescriptor::.ctor(System.ComponentModel.ReflectPropertyDescriptor,System.Type,System.ComponentModel.IExtenderProvider,System.Attribute[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExtendedPropertyDescriptor__ctor_mC8CA04D11B52520D581769FB316244C9EA5F7420 (ExtendedPropertyDescriptor_tABDBA511CEE5442C0B06059799418904896E0CF6 * __this, ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * ___extenderInfo0, Type_t * ___receiverType1, RuntimeObject* ___provider2, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes3, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ExtendedPropertyDescriptor__ctor_mC8CA04D11B52520D581769FB316244C9EA5F7420_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_0 = NULL;
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_1 = NULL;
|
|
{
|
|
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * L_0 = ___extenderInfo0;
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_1 = ___attributes3;
|
|
PropertyDescriptor__ctor_m8C1C276319F5C29A452F48C89B595334AB7E65B0(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_2 = VirtFuncInvoker0< AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* >::Invoke(4 /* System.Attribute[] System.ComponentModel.MemberDescriptor::get_AttributeArray() */, __this);
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_3 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
|
|
ArrayList__ctor_m5BD62A8348AB3A2F573860E81A181B5376AF8FA1(L_3, (RuntimeObject*)(RuntimeObject*)L_2, /*hidden argument*/NULL);
|
|
V_0 = L_3;
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_4 = V_0;
|
|
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * L_5 = ___extenderInfo0;
|
|
Type_t * L_6 = ___receiverType1;
|
|
RuntimeObject* L_7 = ___provider2;
|
|
ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * L_8 = ExtenderProvidedPropertyAttribute_Create_mB53BAA317F0E146F21F4508E51921C05459A756B(L_5, L_6, L_7, /*hidden argument*/NULL);
|
|
NullCheck(L_4);
|
|
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_4, L_8);
|
|
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * L_9 = ___extenderInfo0;
|
|
NullCheck(L_9);
|
|
bool L_10 = VirtFuncInvoker0< bool >::Invoke(20 /* System.Boolean System.ComponentModel.PropertyDescriptor::get_IsReadOnly() */, L_9);
|
|
if (!L_10)
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
{
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_11 = V_0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_il2cpp_TypeInfo_var);
|
|
ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * L_12 = ((ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_StaticFields*)il2cpp_codegen_static_fields_for(ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_il2cpp_TypeInfo_var))->get_Yes_1();
|
|
NullCheck(L_11);
|
|
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_11, L_12);
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_13 = V_0;
|
|
NullCheck(L_13);
|
|
int32_t L_14 = VirtFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_13);
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_15 = (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)SZArrayNew(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var, (uint32_t)L_14);
|
|
V_1 = L_15;
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_16 = V_0;
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_17 = V_1;
|
|
NullCheck(L_16);
|
|
VirtActionInvoker2< RuntimeArray *, int32_t >::Invoke(35 /* System.Void System.Collections.ArrayList::CopyTo(System.Array,System.Int32) */, L_16, (RuntimeArray *)(RuntimeArray *)L_17, 0);
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_18 = V_1;
|
|
VirtActionInvoker1< AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* >::Invoke(5 /* System.Void System.ComponentModel.MemberDescriptor::set_AttributeArray(System.Attribute[]) */, __this, L_18);
|
|
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * L_19 = ___extenderInfo0;
|
|
__this->set_extenderInfo_17(L_19);
|
|
RuntimeObject* L_20 = ___provider2;
|
|
__this->set_provider_18(L_20);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.ExtendedPropertyDescriptor::.ctor(System.ComponentModel.PropertyDescriptor,System.Attribute[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExtendedPropertyDescriptor__ctor_mB3DDF0467442FE4325BE2B83F8049DD543DAF389 (ExtendedPropertyDescriptor_tABDBA511CEE5442C0B06059799418904896E0CF6 * __this, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___extender0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ExtendedPropertyDescriptor__ctor_mB3DDF0467442FE4325BE2B83F8049DD543DAF389_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * V_0 = NULL;
|
|
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * V_1 = NULL;
|
|
{
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_0 = ___extender0;
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_1 = ___attributes1;
|
|
PropertyDescriptor__ctor_m8C1C276319F5C29A452F48C89B595334AB7E65B0(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_2 = ___extender0;
|
|
NullCheck(L_2);
|
|
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_3 = VirtFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(6 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, L_2);
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_4 = { reinterpret_cast<intptr_t> (ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_5 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_4, /*hidden argument*/NULL);
|
|
NullCheck(L_3);
|
|
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_6 = VirtFuncInvoker1< Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_3, L_5);
|
|
V_0 = ((ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 *)IsInstSealed((RuntimeObject*)L_6, ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68_il2cpp_TypeInfo_var));
|
|
ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * L_7 = V_0;
|
|
NullCheck(L_7);
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_8 = ExtenderProvidedPropertyAttribute_get_ExtenderProperty_mB56FFEF61D8278AFFA0FB91710E1A37795738E47_inline(L_7, /*hidden argument*/NULL);
|
|
V_1 = ((ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E *)IsInstSealed((RuntimeObject*)L_8, ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E_il2cpp_TypeInfo_var));
|
|
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * L_9 = V_1;
|
|
__this->set_extenderInfo_17(L_9);
|
|
ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * L_10 = V_0;
|
|
NullCheck(L_10);
|
|
RuntimeObject* L_11 = ExtenderProvidedPropertyAttribute_get_Provider_m54BFFEFF3AF82BD3F36AC3A1D473FAC53CF368C6_inline(L_10, /*hidden argument*/NULL);
|
|
__this->set_provider_18(L_11);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.ExtendedPropertyDescriptor::CanResetValue(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExtendedPropertyDescriptor_CanResetValue_mA461CE7457523A96CE9547BFE9E1BFD4BEDCB03E (ExtendedPropertyDescriptor_tABDBA511CEE5442C0B06059799418904896E0CF6 * __this, RuntimeObject * ___comp0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * L_0 = __this->get_extenderInfo_17();
|
|
RuntimeObject* L_1 = __this->get_provider_18();
|
|
RuntimeObject * L_2 = ___comp0;
|
|
NullCheck(L_0);
|
|
bool L_3 = ReflectPropertyDescriptor_ExtenderCanResetValue_mACFED798483AFF6BB779CF30C35D735A484B4DAB(L_0, L_1, L_2, /*hidden argument*/NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Type System.ComponentModel.ExtendedPropertyDescriptor::get_ComponentType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * ExtendedPropertyDescriptor_get_ComponentType_m6DBE270D501CFAB038FF8C12EF71A93F3C3025D7 (ExtendedPropertyDescriptor_tABDBA511CEE5442C0B06059799418904896E0CF6 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * L_0 = __this->get_extenderInfo_17();
|
|
NullCheck(L_0);
|
|
Type_t * L_1 = VirtFuncInvoker0< Type_t * >::Invoke(17 /* System.Type System.ComponentModel.PropertyDescriptor::get_ComponentType() */, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.ExtendedPropertyDescriptor::get_IsReadOnly()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExtendedPropertyDescriptor_get_IsReadOnly_m2F1AB64D3CB1ED3E62800A2F52CC94645382B42A (ExtendedPropertyDescriptor_tABDBA511CEE5442C0B06059799418904896E0CF6 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ExtendedPropertyDescriptor_get_IsReadOnly_m2F1AB64D3CB1ED3E62800A2F52CC94645382B42A_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_0 = VirtFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(6 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, __this);
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL);
|
|
NullCheck(L_0);
|
|
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_3 = VirtFuncInvoker1< Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_0, L_2);
|
|
IL2CPP_RUNTIME_CLASS_INIT(ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_il2cpp_TypeInfo_var);
|
|
ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B * L_4 = ((ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_StaticFields*)il2cpp_codegen_static_fields_for(ReadOnlyAttribute_t5805F62303A0DEDAE657066BA289E3249FA6A35B_il2cpp_TypeInfo_var))->get_Yes_1();
|
|
NullCheck(L_3);
|
|
bool L_5 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_3, L_4);
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Type System.ComponentModel.ExtendedPropertyDescriptor::get_PropertyType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * ExtendedPropertyDescriptor_get_PropertyType_m4F634F2E318150F948FA3D4572F7626C7E8968E2 (ExtendedPropertyDescriptor_tABDBA511CEE5442C0B06059799418904896E0CF6 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * L_0 = __this->get_extenderInfo_17();
|
|
RuntimeObject* L_1 = __this->get_provider_18();
|
|
NullCheck(L_0);
|
|
Type_t * L_2 = ReflectPropertyDescriptor_ExtenderGetType_mD6042994CD9EFFCDE3177C09E58823CADA0CFBD7(L_0, L_1, /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.ExtendedPropertyDescriptor::get_DisplayName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ExtendedPropertyDescriptor_get_DisplayName_mC5690961D9E460239779D421E4C5636958426E84 (ExtendedPropertyDescriptor_tABDBA511CEE5442C0B06059799418904896E0CF6 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ExtendedPropertyDescriptor_get_DisplayName_mC5690961D9E460239779D421E4C5636958426E84_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE * V_1 = NULL;
|
|
RuntimeObject* V_2 = NULL;
|
|
String_t* V_3 = NULL;
|
|
{
|
|
String_t* L_0 = MemberDescriptor_get_DisplayName_m985D97ED7EAEC1A7DA3524E50FB0CF9B3704B746(__this, /*hidden argument*/NULL);
|
|
V_0 = L_0;
|
|
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_1 = VirtFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(6 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, __this);
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_2, /*hidden argument*/NULL);
|
|
NullCheck(L_1);
|
|
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_4 = VirtFuncInvoker1< Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_1, L_3);
|
|
V_1 = ((DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE *)IsInstClass((RuntimeObject*)L_4, DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE_il2cpp_TypeInfo_var));
|
|
DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE * L_5 = V_1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_002d;
|
|
}
|
|
}
|
|
{
|
|
DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE * L_6 = V_1;
|
|
NullCheck(L_6);
|
|
bool L_7 = VirtFuncInvoker0< bool >::Invoke(6 /* System.Boolean System.Attribute::IsDefaultAttribute() */, L_6);
|
|
if (!L_7)
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
RuntimeObject* L_8 = __this->get_provider_18();
|
|
RuntimeObject* L_9 = MemberDescriptor_GetSite_mCB20B3C6E8E9E4018655CB861FBC408F4468FFD6(L_8, /*hidden argument*/NULL);
|
|
V_2 = L_9;
|
|
RuntimeObject* L_10 = V_2;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_11 = V_2;
|
|
NullCheck(L_11);
|
|
String_t* L_12 = InterfaceFuncInvoker0< String_t* >::Invoke(3 /* System.String System.ComponentModel.ISite::get_Name() */, ISite_t6804B48BC23ABB5F4141903F878589BCEF6097A2_il2cpp_TypeInfo_var, L_11);
|
|
V_3 = L_12;
|
|
String_t* L_13 = V_3;
|
|
if (!L_13)
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_14 = V_3;
|
|
NullCheck(L_14);
|
|
int32_t L_15 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_14, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_15) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = L_16;
|
|
String_t* L_18 = V_0;
|
|
NullCheck(L_17);
|
|
ArrayElementTypeCheck (L_17, L_18);
|
|
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_18);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = L_17;
|
|
String_t* L_20 = V_3;
|
|
NullCheck(L_19);
|
|
ArrayElementTypeCheck (L_19, L_20);
|
|
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_20);
|
|
String_t* L_21 = SR_GetString_m9548BD6DD52DFDB46372F211078AE57FA2401E39(_stringLiteralF11609D36BD0B298B9C7AA240604794B64555B8E, L_19, /*hidden argument*/NULL);
|
|
V_0 = L_21;
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
String_t* L_22 = V_0;
|
|
return L_22;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.ExtendedPropertyDescriptor::GetValue(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ExtendedPropertyDescriptor_GetValue_m6B1CD918C844A1E51C8D9157A942113947A173B9 (ExtendedPropertyDescriptor_tABDBA511CEE5442C0B06059799418904896E0CF6 * __this, RuntimeObject * ___comp0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * L_0 = __this->get_extenderInfo_17();
|
|
RuntimeObject* L_1 = __this->get_provider_18();
|
|
RuntimeObject * L_2 = ___comp0;
|
|
NullCheck(L_0);
|
|
RuntimeObject * L_3 = ReflectPropertyDescriptor_ExtenderGetValue_m741FE4C60D34936C3505CE5E90DB426593C7F96F(L_0, L_1, L_2, /*hidden argument*/NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.ExtendedPropertyDescriptor::ResetValue(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExtendedPropertyDescriptor_ResetValue_mDD4B911A9B4010ECC996A15B036420B4D5975D46 (ExtendedPropertyDescriptor_tABDBA511CEE5442C0B06059799418904896E0CF6 * __this, RuntimeObject * ___comp0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * L_0 = __this->get_extenderInfo_17();
|
|
RuntimeObject* L_1 = __this->get_provider_18();
|
|
RuntimeObject * L_2 = ___comp0;
|
|
NullCheck(L_0);
|
|
ReflectPropertyDescriptor_ExtenderResetValue_mD615C4E5718D88643447EA1115D1B48460D2DA06(L_0, L_1, L_2, __this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.ExtendedPropertyDescriptor::SetValue(System.Object,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExtendedPropertyDescriptor_SetValue_m4F1F588E9326C775AC0054B6621CBD966653F44D (ExtendedPropertyDescriptor_tABDBA511CEE5442C0B06059799418904896E0CF6 * __this, RuntimeObject * ___component0, RuntimeObject * ___value1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * L_0 = __this->get_extenderInfo_17();
|
|
RuntimeObject* L_1 = __this->get_provider_18();
|
|
RuntimeObject * L_2 = ___component0;
|
|
RuntimeObject * L_3 = ___value1;
|
|
NullCheck(L_0);
|
|
ReflectPropertyDescriptor_ExtenderSetValue_mC58759964687244DFA66A4330C48B8EC0BFA860E(L_0, L_1, L_2, L_3, __this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.ExtendedPropertyDescriptor::ShouldSerializeValue(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExtendedPropertyDescriptor_ShouldSerializeValue_m814776C0DD1BA637F1B063CD59AF772E8F306E66 (ExtendedPropertyDescriptor_tABDBA511CEE5442C0B06059799418904896E0CF6 * __this, RuntimeObject * ___comp0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReflectPropertyDescriptor_t4DC7A4205276D400462B36386EEDEEBA6289C11E * L_0 = __this->get_extenderInfo_17();
|
|
RuntimeObject* L_1 = __this->get_provider_18();
|
|
RuntimeObject * L_2 = ___comp0;
|
|
NullCheck(L_0);
|
|
bool L_3 = ReflectPropertyDescriptor_ExtenderShouldSerializeValue_mD2094CC76B452BFB3D7157B92FC88D1F3C016BE9(L_0, L_1, L_2, /*hidden argument*/NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.ComponentModel.ExtenderProvidedPropertyAttribute System.ComponentModel.ExtenderProvidedPropertyAttribute::Create(System.ComponentModel.PropertyDescriptor,System.Type,System.ComponentModel.IExtenderProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * ExtenderProvidedPropertyAttribute_Create_mB53BAA317F0E146F21F4508E51921C05459A756B (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___extenderProperty0, Type_t * ___receiverType1, RuntimeObject* ___provider2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ExtenderProvidedPropertyAttribute_Create_mB53BAA317F0E146F21F4508E51921C05459A756B_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * L_0 = (ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 *)il2cpp_codegen_object_new(ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68_il2cpp_TypeInfo_var);
|
|
ExtenderProvidedPropertyAttribute__ctor_mED416479A8167DB724212857B8421BB4079D9F14(L_0, /*hidden argument*/NULL);
|
|
ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * L_1 = L_0;
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_2 = ___extenderProperty0;
|
|
NullCheck(L_1);
|
|
L_1->set_extenderProperty_0(L_2);
|
|
ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * L_3 = L_1;
|
|
Type_t * L_4 = ___receiverType1;
|
|
NullCheck(L_3);
|
|
L_3->set_receiverType_2(L_4);
|
|
ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * L_5 = L_3;
|
|
RuntimeObject* L_6 = ___provider2;
|
|
NullCheck(L_5);
|
|
L_5->set_provider_1(L_6);
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.ExtenderProvidedPropertyAttribute::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExtenderProvidedPropertyAttribute__ctor_mED416479A8167DB724212857B8421BB4079D9F14 (ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.ComponentModel.PropertyDescriptor System.ComponentModel.ExtenderProvidedPropertyAttribute::get_ExtenderProperty()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ExtenderProvidedPropertyAttribute_get_ExtenderProperty_mB56FFEF61D8278AFFA0FB91710E1A37795738E47 (ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_0 = __this->get_extenderProperty_0();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.ComponentModel.IExtenderProvider System.ComponentModel.ExtenderProvidedPropertyAttribute::get_Provider()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ExtenderProvidedPropertyAttribute_get_Provider_m54BFFEFF3AF82BD3F36AC3A1D473FAC53CF368C6 (ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->get_provider_1();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Type System.ComponentModel.ExtenderProvidedPropertyAttribute::get_ReceiverType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * ExtenderProvidedPropertyAttribute_get_ReceiverType_mE35ED6058DEBE1160D17BF385E2C46E161085E33 (ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Type_t * L_0 = __this->get_receiverType_2();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.ExtenderProvidedPropertyAttribute::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExtenderProvidedPropertyAttribute_Equals_m7FAB4FA6A11AAA6451F18CB7B06D001FD257EAAC (ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ExtenderProvidedPropertyAttribute_Equals_m7FAB4FA6A11AAA6451F18CB7B06D001FD257EAAC_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * V_0 = NULL;
|
|
{
|
|
RuntimeObject * L_0 = ___obj0;
|
|
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 *)__this))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
RuntimeObject * L_1 = ___obj0;
|
|
V_0 = ((ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 *)IsInstSealed((RuntimeObject*)L_1, ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68_il2cpp_TypeInfo_var));
|
|
ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * L_3 = V_0;
|
|
NullCheck(L_3);
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_4 = L_3->get_extenderProperty_0();
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_5 = __this->get_extenderProperty_0();
|
|
NullCheck(L_4);
|
|
bool L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_4, L_5);
|
|
if (!L_6)
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * L_7 = V_0;
|
|
NullCheck(L_7);
|
|
RuntimeObject* L_8 = L_7->get_provider_1();
|
|
RuntimeObject* L_9 = __this->get_provider_1();
|
|
NullCheck(L_8);
|
|
bool L_10 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_8, L_9);
|
|
if (!L_10)
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * L_11 = V_0;
|
|
NullCheck(L_11);
|
|
Type_t * L_12 = L_11->get_receiverType_2();
|
|
Type_t * L_13 = __this->get_receiverType_2();
|
|
NullCheck(L_12);
|
|
bool L_14 = VirtFuncInvoker1< bool, Type_t * >::Invoke(142 /* System.Boolean System.Type::Equals(System.Type) */, L_12, L_13);
|
|
return L_14;
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.ExtenderProvidedPropertyAttribute::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ExtenderProvidedPropertyAttribute_GetHashCode_m6D03B17855FE555DA2E3F54F11C164BBD3150FB4 (ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B(__this, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.ExtenderProvidedPropertyAttribute::IsDefaultAttribute()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExtenderProvidedPropertyAttribute_IsDefaultAttribute_m2BEF7A86CD44FC50CE84586895CE253453A18573 (ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ExtenderProvidedPropertyAttribute_IsDefaultAttribute_m2BEF7A86CD44FC50CE84586895CE253453A18573_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Type_t * L_0 = __this->get_receiverType_2();
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Boolean System.ComponentModel.GuidConverter::CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GuidConverter_CanConvertFrom_m94EEA5AFA08B798A6D0622EB5FEE787F684C6B73 (GuidConverter_t9207FA129C0A5A7AD84D5FEC9C9F2CA5F3FB9D7D * __this, RuntimeObject* ___context0, Type_t * ___sourceType1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (GuidConverter_CanConvertFrom_m94EEA5AFA08B798A6D0622EB5FEE787F684C6B73_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Type_t * L_0 = ___sourceType1;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL);
|
|
bool L_3 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, L_2, /*hidden argument*/NULL);
|
|
if (!L_3)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
RuntimeObject* L_4 = ___context0;
|
|
Type_t * L_5 = ___sourceType1;
|
|
bool L_6 = TypeConverter_CanConvertFrom_m8E1F9E41B7DEE6A032EAC70130ADC6356C3F227D(__this, L_4, L_5, /*hidden argument*/NULL);
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.GuidConverter::CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GuidConverter_CanConvertTo_m7AB12CCC8B2009BBAB9C686E449386DF0328844F (GuidConverter_t9207FA129C0A5A7AD84D5FEC9C9F2CA5F3FB9D7D * __this, RuntimeObject* ___context0, Type_t * ___destinationType1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (GuidConverter_CanConvertTo_m7AB12CCC8B2009BBAB9C686E449386DF0328844F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Type_t * L_0 = ___destinationType1;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL);
|
|
bool L_3 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, L_2, /*hidden argument*/NULL);
|
|
if (!L_3)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
RuntimeObject* L_4 = ___context0;
|
|
Type_t * L_5 = ___destinationType1;
|
|
bool L_6 = TypeConverter_CanConvertTo_m1CD3397D9E5717DE72A13B28C0A75D997A9F337D(__this, L_4, L_5, /*hidden argument*/NULL);
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.GuidConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GuidConverter_ConvertFrom_mDE3816BDF5CD3C2AB48E8CC54A74CC0AD5C20BC8 (GuidConverter_t9207FA129C0A5A7AD84D5FEC9C9F2CA5F3FB9D7D * __this, RuntimeObject* ___context0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, RuntimeObject * ___value2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (GuidConverter_ConvertFrom_mDE3816BDF5CD3C2AB48E8CC54A74CC0AD5C20BC8_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject * L_0 = ___value2;
|
|
if (!((String_t*)IsInstSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_1 = ___value2;
|
|
NullCheck(((String_t*)CastclassSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var)));
|
|
String_t* L_2 = String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D(((String_t*)CastclassSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
|
|
Guid_t L_3;
|
|
memset((&L_3), 0, sizeof(L_3));
|
|
Guid__ctor_mC668142577A40A77D13B78AADDEFFFC2E2705079((&L_3), L_2, /*hidden argument*/NULL);
|
|
Guid_t L_4 = L_3;
|
|
RuntimeObject * L_5 = Box(Guid_t_il2cpp_TypeInfo_var, &L_4);
|
|
return L_5;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
RuntimeObject* L_6 = ___context0;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_7 = ___culture1;
|
|
RuntimeObject * L_8 = ___value2;
|
|
RuntimeObject * L_9 = TypeConverter_ConvertFrom_mD5AE49E422520F6E07B3C0D6202788E49B4698A3(__this, L_6, L_7, L_8, /*hidden argument*/NULL);
|
|
return L_9;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.GuidConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GuidConverter_ConvertTo_m963EF915D82BCCEB03C349D03832F54C2F3C9F76 (GuidConverter_t9207FA129C0A5A7AD84D5FEC9C9F2CA5F3FB9D7D * __this, RuntimeObject* ___context0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, RuntimeObject * ___value2, Type_t * ___destinationType3, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (GuidConverter_ConvertTo_m963EF915D82BCCEB03C349D03832F54C2F3C9F76_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * V_0 = NULL;
|
|
{
|
|
Type_t * L_0 = ___destinationType3;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralFF3BA695D3EFEA937A1B1571C4E6461A8DACB151, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, GuidConverter_ConvertTo_m963EF915D82BCCEB03C349D03832F54C2F3C9F76_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
Type_t * L_3 = ___destinationType3;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_4 = { reinterpret_cast<intptr_t> (InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_5 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_4, /*hidden argument*/NULL);
|
|
bool L_6 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_3, L_5, /*hidden argument*/NULL);
|
|
if (!L_6)
|
|
{
|
|
goto IL_0072;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_7 = ___value2;
|
|
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_7, Guid_t_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0072;
|
|
}
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (Guid_t_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_8, /*hidden argument*/NULL);
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_10 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_11 = L_10;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_12 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
|
|
Type_t * L_13 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_12, /*hidden argument*/NULL);
|
|
NullCheck(L_11);
|
|
ArrayElementTypeCheck (L_11, L_13);
|
|
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_13);
|
|
NullCheck(L_9);
|
|
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_14 = Type_GetConstructor_m4371D7AD6A8E15067C698696B0167323CBC7F3DA(L_9, L_11, /*hidden argument*/NULL);
|
|
V_0 = L_14;
|
|
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_15 = V_0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_il2cpp_TypeInfo_var);
|
|
bool L_16 = ConstructorInfo_op_Inequality_m7BACC92FB27D1999A084F5346451CEE9FD0445E4(L_15, (ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF *)NULL, /*hidden argument*/NULL);
|
|
if (!L_16)
|
|
{
|
|
goto IL_0072;
|
|
}
|
|
}
|
|
{
|
|
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_17 = V_0;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = L_18;
|
|
RuntimeObject * L_20 = ___value2;
|
|
NullCheck(L_20);
|
|
String_t* L_21 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_20);
|
|
NullCheck(L_19);
|
|
ArrayElementTypeCheck (L_19, L_21);
|
|
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_21);
|
|
InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6 * L_22 = (InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6 *)il2cpp_codegen_object_new(InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6_il2cpp_TypeInfo_var);
|
|
InstanceDescriptor__ctor_m90DA8CABB01052EA5C5022E14FE50533254C71DD(L_22, L_17, (RuntimeObject*)(RuntimeObject*)L_19, /*hidden argument*/NULL);
|
|
return L_22;
|
|
}
|
|
|
|
IL_0072:
|
|
{
|
|
RuntimeObject* L_23 = ___context0;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_24 = ___culture1;
|
|
RuntimeObject * L_25 = ___value2;
|
|
Type_t * L_26 = ___destinationType3;
|
|
RuntimeObject * L_27 = TypeConverter_ConvertTo_mFC7AA7F0A382607E75CCE820A705B5965D099AAC(__this, L_23, L_24, L_25, L_26, /*hidden argument*/NULL);
|
|
return L_27;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.GuidConverter::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GuidConverter__ctor_m057CFEA2B7918294B08BFB54B6A2C56B58F6CB0C (GuidConverter_t9207FA129C0A5A7AD84D5FEC9C9F2CA5F3FB9D7D * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (GuidConverter__ctor_m057CFEA2B7918294B08BFB54B6A2C56B58F6CB0C_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_il2cpp_TypeInfo_var);
|
|
TypeConverter__ctor_m7F8A006E775CCB83A8ACB042B296E48B0AE501CD(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.HandledEventArgs::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HandledEventArgs__ctor_mE147FBEF783ABA6F74E669F3621CAF12A8CCFD00 (HandledEventArgs_t26999700606DD7EC365648A50C9E3E15EFCAC2DF * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
HandledEventArgs__ctor_m3B9A8B0FF620FC343E98B455D30C46B12239BA3A(__this, (bool)0, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.HandledEventArgs::.ctor(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HandledEventArgs__ctor_m3B9A8B0FF620FC343E98B455D30C46B12239BA3A (HandledEventArgs_t26999700606DD7EC365648A50C9E3E15EFCAC2DF * __this, bool ___defaultHandledValue0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (HandledEventArgs__ctor_m3B9A8B0FF620FC343E98B455D30C46B12239BA3A_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var);
|
|
EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7(__this, /*hidden argument*/NULL);
|
|
bool L_0 = ___defaultHandledValue0;
|
|
__this->set_handled_1(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.HandledEventArgs::get_Handled()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HandledEventArgs_get_Handled_m8910090C98213803C9DF966E41CE8C2BBEFDFFDE (HandledEventArgs_t26999700606DD7EC365648A50C9E3E15EFCAC2DF * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->get_handled_1();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.HandledEventArgs::set_Handled(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HandledEventArgs_set_Handled_m78CBBDEE2D8E0533C4A4CBB9A366DFB9E1230B0D (HandledEventArgs_t26999700606DD7EC365648A50C9E3E15EFCAC2DF * __this, bool ___value0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___value0;
|
|
__this->set_handled_1(L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.HandledEventHandler::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HandledEventHandler__ctor_mCB22728C70CAF33101F0632D8E99AC10B54DABC4 (HandledEventHandler_t17748FC020C52377E8BE63A85595C31181910699 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
|
|
{
|
|
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
|
|
__this->set_method_3(___method1);
|
|
__this->set_m_target_2(___object0);
|
|
}
|
|
// System.Void System.ComponentModel.HandledEventHandler::Invoke(System.Object,System.ComponentModel.HandledEventArgs)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HandledEventHandler_Invoke_m542F5DC15A30A0B4E909F1D55C20F65BCCA5518D (HandledEventHandler_t17748FC020C52377E8BE63A85595C31181910699 * __this, RuntimeObject * ___sender0, HandledEventArgs_t26999700606DD7EC365648A50C9E3E15EFCAC2DF * ___e1, const RuntimeMethod* method)
|
|
{
|
|
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
|
|
Delegate_t** delegatesToInvoke;
|
|
il2cpp_array_size_t length;
|
|
if (delegateArrayToInvoke != NULL)
|
|
{
|
|
length = delegateArrayToInvoke->max_length;
|
|
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
|
|
}
|
|
else
|
|
{
|
|
length = 1;
|
|
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
|
|
}
|
|
|
|
for (il2cpp_array_size_t i = 0; i < length; i++)
|
|
{
|
|
Delegate_t* currentDelegate = delegatesToInvoke[i];
|
|
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
|
|
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
|
|
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
|
|
if (!il2cpp_codegen_method_is_virtual(targetMethod))
|
|
{
|
|
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
|
|
}
|
|
bool ___methodIsStatic = MethodIsStatic(targetMethod);
|
|
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
|
|
if (___methodIsStatic)
|
|
{
|
|
if (___parameterCount == 2)
|
|
{
|
|
// open
|
|
typedef void (*FunctionPointerType) (RuntimeObject *, HandledEventArgs_t26999700606DD7EC365648A50C9E3E15EFCAC2DF *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod);
|
|
}
|
|
else
|
|
{
|
|
// closed
|
|
typedef void (*FunctionPointerType) (void*, RuntimeObject *, HandledEventArgs_t26999700606DD7EC365648A50C9E3E15EFCAC2DF *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___e1, targetMethod);
|
|
}
|
|
}
|
|
else if (___parameterCount != 2)
|
|
{
|
|
// open
|
|
if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
|
|
{
|
|
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
GenericInterfaceActionInvoker1< HandledEventArgs_t26999700606DD7EC365648A50C9E3E15EFCAC2DF * >::Invoke(targetMethod, ___sender0, ___e1);
|
|
else
|
|
GenericVirtActionInvoker1< HandledEventArgs_t26999700606DD7EC365648A50C9E3E15EFCAC2DF * >::Invoke(targetMethod, ___sender0, ___e1);
|
|
}
|
|
else
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
InterfaceActionInvoker1< HandledEventArgs_t26999700606DD7EC365648A50C9E3E15EFCAC2DF * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___sender0, ___e1);
|
|
else
|
|
VirtActionInvoker1< HandledEventArgs_t26999700606DD7EC365648A50C9E3E15EFCAC2DF * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___sender0, ___e1);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___e1) - 1), targetMethod);
|
|
}
|
|
typedef void (*FunctionPointerType) (RuntimeObject *, HandledEventArgs_t26999700606DD7EC365648A50C9E3E15EFCAC2DF *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// closed
|
|
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
|
|
{
|
|
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
GenericInterfaceActionInvoker2< RuntimeObject *, HandledEventArgs_t26999700606DD7EC365648A50C9E3E15EFCAC2DF * >::Invoke(targetMethod, targetThis, ___sender0, ___e1);
|
|
else
|
|
GenericVirtActionInvoker2< RuntimeObject *, HandledEventArgs_t26999700606DD7EC365648A50C9E3E15EFCAC2DF * >::Invoke(targetMethod, targetThis, ___sender0, ___e1);
|
|
}
|
|
else
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
InterfaceActionInvoker2< RuntimeObject *, HandledEventArgs_t26999700606DD7EC365648A50C9E3E15EFCAC2DF * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___sender0, ___e1);
|
|
else
|
|
VirtActionInvoker2< RuntimeObject *, HandledEventArgs_t26999700606DD7EC365648A50C9E3E15EFCAC2DF * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___sender0, ___e1);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, HandledEventArgs_t26999700606DD7EC365648A50C9E3E15EFCAC2DF *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___sender0) - 1), ___e1, targetMethod);
|
|
}
|
|
if (targetThis == NULL)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject *, HandledEventArgs_t26999700606DD7EC365648A50C9E3E15EFCAC2DF *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod);
|
|
}
|
|
else
|
|
{
|
|
typedef void (*FunctionPointerType) (void*, RuntimeObject *, HandledEventArgs_t26999700606DD7EC365648A50C9E3E15EFCAC2DF *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___e1, targetMethod);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// System.IAsyncResult System.ComponentModel.HandledEventHandler::BeginInvoke(System.Object,System.ComponentModel.HandledEventArgs,System.AsyncCallback,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* HandledEventHandler_BeginInvoke_m07A5ADABC641110803C29B9C3C1DBC07CB7A6AA5 (HandledEventHandler_t17748FC020C52377E8BE63A85595C31181910699 * __this, RuntimeObject * ___sender0, HandledEventArgs_t26999700606DD7EC365648A50C9E3E15EFCAC2DF * ___e1, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
|
|
{
|
|
void *__d_args[3] = {0};
|
|
__d_args[0] = ___sender0;
|
|
__d_args[1] = ___e1;
|
|
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
|
|
}
|
|
// System.Void System.ComponentModel.HandledEventHandler::EndInvoke(System.IAsyncResult)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HandledEventHandler_EndInvoke_mAA10829337E2E7CCF852E0A15AF2B698C73ADD72 (HandledEventHandler_t17748FC020C52377E8BE63A85595C31181910699 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.ImmutableObjectAttribute::.ctor(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImmutableObjectAttribute__ctor_m26C7DB2D34B3942D2B97EBA31E3171BED775C726 (ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 * __this, bool ___immutable0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->set_immutable_3((bool)1);
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
bool L_0 = ___immutable0;
|
|
__this->set_immutable_3(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.ImmutableObjectAttribute::get_Immutable()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ImmutableObjectAttribute_get_Immutable_m3ABF9ED723E613F83942F47A4B2B3525430BD8A8 (ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->get_immutable_3();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.ImmutableObjectAttribute::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ImmutableObjectAttribute_Equals_mE070B68353CF7DBC6BC54B28ED31F691ACDF6394 (ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ImmutableObjectAttribute_Equals_mE070B68353CF7DBC6BC54B28ED31F691ACDF6394_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 * V_0 = NULL;
|
|
{
|
|
RuntimeObject * L_0 = ___obj0;
|
|
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 *)__this))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
RuntimeObject * L_1 = ___obj0;
|
|
V_0 = ((ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 *)IsInstSealed((RuntimeObject*)L_1, ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492_il2cpp_TypeInfo_var));
|
|
ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 * L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 * L_3 = V_0;
|
|
NullCheck(L_3);
|
|
bool L_4 = ImmutableObjectAttribute_get_Immutable_m3ABF9ED723E613F83942F47A4B2B3525430BD8A8_inline(L_3, /*hidden argument*/NULL);
|
|
bool L_5 = __this->get_immutable_3();
|
|
return (bool)((((int32_t)L_4) == ((int32_t)L_5))? 1 : 0);
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.ImmutableObjectAttribute::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ImmutableObjectAttribute_GetHashCode_mBE8AC1ABB3CADF0ECA489214B080865DD069F8E7 (ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B(__this, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.ImmutableObjectAttribute::IsDefaultAttribute()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ImmutableObjectAttribute_IsDefaultAttribute_m8BAFE51FBB87BB878E58970259D3E7DB84538F55 (ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ImmutableObjectAttribute_IsDefaultAttribute_m8BAFE51FBB87BB878E58970259D3E7DB84538F55_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492_il2cpp_TypeInfo_var);
|
|
ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 * L_0 = ((ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492_StaticFields*)il2cpp_codegen_static_fields_for(ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492_il2cpp_TypeInfo_var))->get_Default_2();
|
|
bool L_1 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, __this, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.ImmutableObjectAttribute::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImmutableObjectAttribute__cctor_m74A13A0DA32F80E45DF82DE6E9C70152C23CD4AA (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ImmutableObjectAttribute__cctor_m74A13A0DA32F80E45DF82DE6E9C70152C23CD4AA_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 * L_0 = (ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 *)il2cpp_codegen_object_new(ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492_il2cpp_TypeInfo_var);
|
|
ImmutableObjectAttribute__ctor_m26C7DB2D34B3942D2B97EBA31E3171BED775C726(L_0, (bool)1, /*hidden argument*/NULL);
|
|
((ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492_StaticFields*)il2cpp_codegen_static_fields_for(ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492_il2cpp_TypeInfo_var))->set_Yes_0(L_0);
|
|
ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 * L_1 = (ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 *)il2cpp_codegen_object_new(ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492_il2cpp_TypeInfo_var);
|
|
ImmutableObjectAttribute__ctor_m26C7DB2D34B3942D2B97EBA31E3171BED775C726(L_1, (bool)0, /*hidden argument*/NULL);
|
|
((ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492_StaticFields*)il2cpp_codegen_static_fields_for(ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492_il2cpp_TypeInfo_var))->set_No_1(L_1);
|
|
ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 * L_2 = ((ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492_StaticFields*)il2cpp_codegen_static_fields_for(ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492_il2cpp_TypeInfo_var))->get_No_1();
|
|
((ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492_StaticFields*)il2cpp_codegen_static_fields_for(ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492_il2cpp_TypeInfo_var))->set_Default_2(L_2);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.InheritanceAttribute::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InheritanceAttribute__ctor_m8F26EE455BC5AC02A7F8B621CBF0ABA4CE16E161 (InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (InheritanceAttribute__ctor_m8F26EE455BC5AC02A7F8B621CBF0ABA4CE16E161_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4_il2cpp_TypeInfo_var);
|
|
InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 * L_0 = ((InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4_StaticFields*)il2cpp_codegen_static_fields_for(InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4_il2cpp_TypeInfo_var))->get_Default_4();
|
|
NullCheck(L_0);
|
|
int32_t L_1 = L_0->get_inheritanceLevel_0();
|
|
__this->set_inheritanceLevel_0(L_1);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.InheritanceAttribute::.ctor(System.ComponentModel.InheritanceLevel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InheritanceAttribute__ctor_mCA254DAC0CC24E08736F8034929EE421975F29C4 (InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 * __this, int32_t ___inheritanceLevel0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
int32_t L_0 = ___inheritanceLevel0;
|
|
__this->set_inheritanceLevel_0(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.ComponentModel.InheritanceLevel System.ComponentModel.InheritanceAttribute::get_InheritanceLevel()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InheritanceAttribute_get_InheritanceLevel_mA90C9C95D4B7D9AE8F4713F91A0ED806D68B06CC (InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->get_inheritanceLevel_0();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.InheritanceAttribute::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InheritanceAttribute_Equals_m38E2B19AF81042403A7000B74456D502D42AC6D3 (InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (InheritanceAttribute_Equals_m38E2B19AF81042403A7000B74456D502D42AC6D3_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject * L_0 = ___value0;
|
|
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 *)__this))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
RuntimeObject * L_1 = ___value0;
|
|
if (((InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 *)IsInstSealed((RuntimeObject*)L_1, InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
RuntimeObject * L_2 = ___value0;
|
|
NullCheck(((InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 *)CastclassSealed((RuntimeObject*)L_2, InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4_il2cpp_TypeInfo_var)));
|
|
int32_t L_3 = InheritanceAttribute_get_InheritanceLevel_mA90C9C95D4B7D9AE8F4713F91A0ED806D68B06CC_inline(((InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 *)CastclassSealed((RuntimeObject*)L_2, InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
|
|
int32_t L_4 = __this->get_inheritanceLevel_0();
|
|
return (bool)((((int32_t)L_3) == ((int32_t)L_4))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.InheritanceAttribute::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InheritanceAttribute_GetHashCode_m0E02CE836E80CD1AFD8D4E0440CAA6A3319230D6 (InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B(__this, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.InheritanceAttribute::IsDefaultAttribute()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InheritanceAttribute_IsDefaultAttribute_mE8AA69F58F1F479AB2BAE7961B90B315EE8DA251 (InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (InheritanceAttribute_IsDefaultAttribute_mE8AA69F58F1F479AB2BAE7961B90B315EE8DA251_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4_il2cpp_TypeInfo_var);
|
|
InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 * L_0 = ((InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4_StaticFields*)il2cpp_codegen_static_fields_for(InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4_il2cpp_TypeInfo_var))->get_Default_4();
|
|
bool L_1 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, __this, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.InheritanceAttribute::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InheritanceAttribute_ToString_m5961E79A09AB27FEA67EEA36528102F82C5C0FAC (InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (InheritanceAttribute_ToString_m5961E79A09AB27FEA67EEA36528102F82C5C0FAC_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (InheritanceLevel_t7A3CA26A46C1759F0D0D9BD78A7B298490C1DAD6_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_0, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_2 = TypeDescriptor_GetConverter_m30E075F6ED53FD85B7C1F7F44E58BA20645A68BA(L_1, /*hidden argument*/NULL);
|
|
int32_t L_3 = InheritanceAttribute_get_InheritanceLevel_mA90C9C95D4B7D9AE8F4713F91A0ED806D68B06CC_inline(__this, /*hidden argument*/NULL);
|
|
int32_t L_4 = L_3;
|
|
RuntimeObject * L_5 = Box(InheritanceLevel_t7A3CA26A46C1759F0D0D9BD78A7B298490C1DAD6_il2cpp_TypeInfo_var, &L_4);
|
|
NullCheck(L_2);
|
|
String_t* L_6 = TypeConverter_ConvertToString_m2CBE8E127541982F2FB74F81D59AA62D097FD623(L_2, L_5, /*hidden argument*/NULL);
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.InheritanceAttribute::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InheritanceAttribute__cctor_m2FE29F1B1C05923AFCEE6580D1DED768B981FD11 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (InheritanceAttribute__cctor_m2FE29F1B1C05923AFCEE6580D1DED768B981FD11_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 * L_0 = (InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 *)il2cpp_codegen_object_new(InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4_il2cpp_TypeInfo_var);
|
|
InheritanceAttribute__ctor_mCA254DAC0CC24E08736F8034929EE421975F29C4(L_0, 1, /*hidden argument*/NULL);
|
|
((InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4_StaticFields*)il2cpp_codegen_static_fields_for(InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4_il2cpp_TypeInfo_var))->set_Inherited_1(L_0);
|
|
InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 * L_1 = (InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 *)il2cpp_codegen_object_new(InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4_il2cpp_TypeInfo_var);
|
|
InheritanceAttribute__ctor_mCA254DAC0CC24E08736F8034929EE421975F29C4(L_1, 2, /*hidden argument*/NULL);
|
|
((InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4_StaticFields*)il2cpp_codegen_static_fields_for(InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4_il2cpp_TypeInfo_var))->set_InheritedReadOnly_2(L_1);
|
|
InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 * L_2 = (InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 *)il2cpp_codegen_object_new(InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4_il2cpp_TypeInfo_var);
|
|
InheritanceAttribute__ctor_mCA254DAC0CC24E08736F8034929EE421975F29C4(L_2, 3, /*hidden argument*/NULL);
|
|
((InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4_StaticFields*)il2cpp_codegen_static_fields_for(InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4_il2cpp_TypeInfo_var))->set_NotInherited_3(L_2);
|
|
InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 * L_3 = ((InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4_StaticFields*)il2cpp_codegen_static_fields_for(InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4_il2cpp_TypeInfo_var))->get_NotInherited_3();
|
|
((InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4_StaticFields*)il2cpp_codegen_static_fields_for(InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4_il2cpp_TypeInfo_var))->set_Default_4(L_3);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.InitializationEventAttribute::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InitializationEventAttribute__ctor_mC70D5DF9B2A94A929E92360B4D6981FDD8B55A80 (InitializationEventAttribute_t66A3424618601597D5221545AA27CCAE24DC19B1 * __this, String_t* ___eventName0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
String_t* L_0 = ___eventName0;
|
|
__this->set_eventName_0(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.InitializationEventAttribute::get_EventName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InitializationEventAttribute_get_EventName_mB0DA8F246E1C4479CA62594C12E11BE9C6CB770B (InitializationEventAttribute_t66A3424618601597D5221545AA27CCAE24DC19B1 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_eventName_0();
|
|
return L_0;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.InstallerTypeAttribute::.ctor(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InstallerTypeAttribute__ctor_mBE109C7485B443453D1DF352D8BC3DB8A4FECC26 (InstallerTypeAttribute_t69E2B80148C986610B0F88883070C0BAD2A2B755 * __this, Type_t * ___installerType0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
Type_t * L_0 = ___installerType0;
|
|
NullCheck(L_0);
|
|
String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(31 /* System.String System.Type::get_AssemblyQualifiedName() */, L_0);
|
|
__this->set__typeName_0(L_1);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.InstallerTypeAttribute::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InstallerTypeAttribute__ctor_m4591FDCC6AEB14694E98C0062D0C1B74D255D7FC (InstallerTypeAttribute_t69E2B80148C986610B0F88883070C0BAD2A2B755 * __this, String_t* ___typeName0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
String_t* L_0 = ___typeName0;
|
|
__this->set__typeName_0(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Type System.ComponentModel.InstallerTypeAttribute::get_InstallerType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * InstallerTypeAttribute_get_InstallerType_m631BD3EDBE0683D8902DA08E04A79574770A5991 (InstallerTypeAttribute_t69E2B80148C986610B0F88883070C0BAD2A2B755 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (InstallerTypeAttribute_get_InstallerType_m631BD3EDBE0683D8902DA08E04A79574770A5991_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = __this->get__typeName_0();
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_1 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_mCF0A3B28889C9FFB9987C8D30C23DF0912E7C00C, L_0, "System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e");
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.InstallerTypeAttribute::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InstallerTypeAttribute_Equals_m1F11A91BD9EC793C60C88EA1BF329948BC405878 (InstallerTypeAttribute_t69E2B80148C986610B0F88883070C0BAD2A2B755 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (InstallerTypeAttribute_Equals_m1F11A91BD9EC793C60C88EA1BF329948BC405878_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
InstallerTypeAttribute_t69E2B80148C986610B0F88883070C0BAD2A2B755 * V_0 = NULL;
|
|
{
|
|
RuntimeObject * L_0 = ___obj0;
|
|
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(InstallerTypeAttribute_t69E2B80148C986610B0F88883070C0BAD2A2B755 *)__this))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
RuntimeObject * L_1 = ___obj0;
|
|
V_0 = ((InstallerTypeAttribute_t69E2B80148C986610B0F88883070C0BAD2A2B755 *)IsInstClass((RuntimeObject*)L_1, InstallerTypeAttribute_t69E2B80148C986610B0F88883070C0BAD2A2B755_il2cpp_TypeInfo_var));
|
|
InstallerTypeAttribute_t69E2B80148C986610B0F88883070C0BAD2A2B755 * L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
InstallerTypeAttribute_t69E2B80148C986610B0F88883070C0BAD2A2B755 * L_3 = V_0;
|
|
NullCheck(L_3);
|
|
String_t* L_4 = L_3->get__typeName_0();
|
|
String_t* L_5 = __this->get__typeName_0();
|
|
bool L_6 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_4, L_5, /*hidden argument*/NULL);
|
|
return L_6;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.InstallerTypeAttribute::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InstallerTypeAttribute_GetHashCode_m41024F816E2A955897F1EA8FB4589D1D138FE584 (InstallerTypeAttribute_t69E2B80148C986610B0F88883070C0BAD2A2B755 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B(__this, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.String System.ComponentModel.InstanceCreationEditor::get_Text()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InstanceCreationEditor_get_Text_mD417DB3B84845D0CB83DFD107523F61B8D1EC2B0 (InstanceCreationEditor_t87E9919F45C092DA810FAC5AEFD200F26A9D7EEA * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (InstanceCreationEditor_get_Text_mD417DB3B84845D0CB83DFD107523F61B8D1EC2B0_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteralD7DD8A4C7D37D1D6C29AC60910689BF845213FCC, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.InstanceCreationEditor::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InstanceCreationEditor__ctor_mB663920F11633261DA7BD17E2ECF294FA618CF4D (InstanceCreationEditor_t87E9919F45C092DA810FAC5AEFD200F26A9D7EEA * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Type System.ComponentModel.Int16Converter::get_TargetType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Int16Converter_get_TargetType_m03C28B87C29C22B04B4D41C0F654612CADBBD144 (Int16Converter_tA2223DDF2BE99AD79AD836FCEC90F2C12705433B * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Int16Converter_get_TargetType_m03C28B87C29C22B04B4D41C0F654612CADBBD144_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.Int16Converter::FromString(System.String,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Int16Converter_FromString_m5037FE57C286C9CAC9CDE3116D0F426EF88993FC (Int16Converter_tA2223DDF2BE99AD79AD836FCEC90F2C12705433B * __this, String_t* ___value0, int32_t ___radix1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Int16Converter_FromString_m5037FE57C286C9CAC9CDE3116D0F426EF88993FC_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___value0;
|
|
int32_t L_1 = ___radix1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
int16_t L_2 = Convert_ToInt16_mE45C6C06FA6664B29F1C763C08CF4846A06B27D5(L_0, L_1, /*hidden argument*/NULL);
|
|
int16_t L_3 = L_2;
|
|
RuntimeObject * L_4 = Box(Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var, &L_3);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.Int16Converter::FromString(System.String,System.Globalization.CultureInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Int16Converter_FromString_m1D6EED88E7A619CF41C3F822EF148DC647521367 (Int16Converter_tA2223DDF2BE99AD79AD836FCEC90F2C12705433B * __this, String_t* ___value0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Int16Converter_FromString_m1D6EED88E7A619CF41C3F822EF148DC647521367_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___value0;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = ___culture1;
|
|
int16_t L_2 = Int16_Parse_m1BA1421C8060847322823397FAE590E371B0A92F(L_0, L_1, /*hidden argument*/NULL);
|
|
int16_t L_3 = L_2;
|
|
RuntimeObject * L_4 = Box(Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var, &L_3);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.Int16Converter::FromString(System.String,System.Globalization.NumberFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Int16Converter_FromString_m68A48D7A88B2206AD366C3CD5824C90CB483A01B (Int16Converter_tA2223DDF2BE99AD79AD836FCEC90F2C12705433B * __this, String_t* ___value0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___formatInfo1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Int16Converter_FromString_m68A48D7A88B2206AD366C3CD5824C90CB483A01B_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___value0;
|
|
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = ___formatInfo1;
|
|
int16_t L_2 = Int16_Parse_m8974BEBECCE6184E1A2CA312D637E40B731F49B2(L_0, 7, L_1, /*hidden argument*/NULL);
|
|
int16_t L_3 = L_2;
|
|
RuntimeObject * L_4 = Box(Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var, &L_3);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.Int16Converter::ToString(System.Object,System.Globalization.NumberFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int16Converter_ToString_m04E267BEB959CCCD5FF76F5221B4A82D3B90DE23 (Int16Converter_tA2223DDF2BE99AD79AD836FCEC90F2C12705433B * __this, RuntimeObject * ___value0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___formatInfo1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Int16Converter_ToString_m04E267BEB959CCCD5FF76F5221B4A82D3B90DE23_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int16_t V_0 = 0;
|
|
{
|
|
RuntimeObject * L_0 = ___value0;
|
|
V_0 = ((*(int16_t*)((int16_t*)UnBox(L_0, Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var))));
|
|
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = ___formatInfo1;
|
|
String_t* L_2 = Int16_ToString_m9D8BFF89E90032C2A3332CF5831C38AFD2C9E31A((int16_t*)(&V_0), _stringLiteralA36A6718F54524D846894FB04B5B885B4E43E63B, L_1, /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.Int16Converter::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int16Converter__ctor_mD4D022096E6FB9FFDB84D879E31177A892DD072D (Int16Converter_tA2223DDF2BE99AD79AD836FCEC90F2C12705433B * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BaseNumberConverter__ctor_mD78E1C7E1F8A977BC7AD33DB0C1E5E32C60E8E83(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Type System.ComponentModel.Int32Converter::get_TargetType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Int32Converter_get_TargetType_mADD76E2E99D4B78ECB684AE296C6AD5E45840433 (Int32Converter_t73A6E403EBE01B56528CB227509954397A46BA22 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Int32Converter_get_TargetType_mADD76E2E99D4B78ECB684AE296C6AD5E45840433_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.Int32Converter::FromString(System.String,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Int32Converter_FromString_m522F024625D49139F89AC5DE44EA3DCFDD490B55 (Int32Converter_t73A6E403EBE01B56528CB227509954397A46BA22 * __this, String_t* ___value0, int32_t ___radix1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Int32Converter_FromString_m522F024625D49139F89AC5DE44EA3DCFDD490B55_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___value0;
|
|
int32_t L_1 = ___radix1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
int32_t L_2 = Convert_ToInt32_m8DC81C7C49EE4A9334E71E45E3A220644E45B4F4(L_0, L_1, /*hidden argument*/NULL);
|
|
int32_t L_3 = L_2;
|
|
RuntimeObject * L_4 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_3);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.Int32Converter::FromString(System.String,System.Globalization.NumberFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Int32Converter_FromString_m99A5C50498D91308BEA81C8E9E134608DD525799 (Int32Converter_t73A6E403EBE01B56528CB227509954397A46BA22 * __this, String_t* ___value0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___formatInfo1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Int32Converter_FromString_m99A5C50498D91308BEA81C8E9E134608DD525799_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___value0;
|
|
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = ___formatInfo1;
|
|
int32_t L_2 = Int32_Parse_m17BA45CC13A0E08712F2EE60CC1356291D0592AC(L_0, 7, L_1, /*hidden argument*/NULL);
|
|
int32_t L_3 = L_2;
|
|
RuntimeObject * L_4 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_3);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.Int32Converter::FromString(System.String,System.Globalization.CultureInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Int32Converter_FromString_m84E1A77746AAC084FF5A93E167D6ED83A772C704 (Int32Converter_t73A6E403EBE01B56528CB227509954397A46BA22 * __this, String_t* ___value0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Int32Converter_FromString_m84E1A77746AAC084FF5A93E167D6ED83A772C704_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___value0;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = ___culture1;
|
|
int32_t L_2 = Int32_Parse_m9FD0A75E9C7A9BFC26070A60A420D77CD629CC58(L_0, L_1, /*hidden argument*/NULL);
|
|
int32_t L_3 = L_2;
|
|
RuntimeObject * L_4 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_3);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.Int32Converter::ToString(System.Object,System.Globalization.NumberFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32Converter_ToString_m30AAD6DCBB228CBD58299310D39D80A44AEB7C6A (Int32Converter_t73A6E403EBE01B56528CB227509954397A46BA22 * __this, RuntimeObject * ___value0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___formatInfo1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Int32Converter_ToString_m30AAD6DCBB228CBD58299310D39D80A44AEB7C6A_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
RuntimeObject * L_0 = ___value0;
|
|
V_0 = ((*(int32_t*)((int32_t*)UnBox(L_0, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var))));
|
|
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = ___formatInfo1;
|
|
String_t* L_2 = Int32_ToString_mE527694B0C55AE14FDCBE1D9C848446C18E22C09((int32_t*)(&V_0), _stringLiteralA36A6718F54524D846894FB04B5B885B4E43E63B, L_1, /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.Int32Converter::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int32Converter__ctor_m1CD79AE5880FDE2EC91F1D67E567AAA3618D19B9 (Int32Converter_t73A6E403EBE01B56528CB227509954397A46BA22 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BaseNumberConverter__ctor_mD78E1C7E1F8A977BC7AD33DB0C1E5E32C60E8E83(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Type System.ComponentModel.Int64Converter::get_TargetType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Int64Converter_get_TargetType_mA6FF642BF7B48C93043B520B6F56598262324155 (Int64Converter_tED09C98C409F894484943F8D4F9C6468A97F1447 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Int64Converter_get_TargetType_mA6FF642BF7B48C93043B520B6F56598262324155_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.Int64Converter::FromString(System.String,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Int64Converter_FromString_m40D208F2EDE6FFDFF6A897EDE71636290F759A61 (Int64Converter_tED09C98C409F894484943F8D4F9C6468A97F1447 * __this, String_t* ___value0, int32_t ___radix1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Int64Converter_FromString_m40D208F2EDE6FFDFF6A897EDE71636290F759A61_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___value0;
|
|
int32_t L_1 = ___radix1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
|
|
int64_t L_2 = Convert_ToInt64_m6E6AC604B6C67431B921B2B3CC577F2F0A70741C(L_0, L_1, /*hidden argument*/NULL);
|
|
int64_t L_3 = L_2;
|
|
RuntimeObject * L_4 = Box(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var, &L_3);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.Int64Converter::FromString(System.String,System.Globalization.NumberFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Int64Converter_FromString_m9537EF10EF270D889756264177A7AD71BAC3342C (Int64Converter_tED09C98C409F894484943F8D4F9C6468A97F1447 * __this, String_t* ___value0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___formatInfo1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Int64Converter_FromString_m9537EF10EF270D889756264177A7AD71BAC3342C_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___value0;
|
|
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = ___formatInfo1;
|
|
int64_t L_2 = Int64_Parse_m5113C0CCFB668DBC49D71D9F07CC8A96B8C7773D(L_0, 7, L_1, /*hidden argument*/NULL);
|
|
int64_t L_3 = L_2;
|
|
RuntimeObject * L_4 = Box(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var, &L_3);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.Int64Converter::FromString(System.String,System.Globalization.CultureInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Int64Converter_FromString_m4B006B13E6B60FB3471055D2AACA19A20BC6C73A (Int64Converter_tED09C98C409F894484943F8D4F9C6468A97F1447 * __this, String_t* ___value0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Int64Converter_FromString_m4B006B13E6B60FB3471055D2AACA19A20BC6C73A_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___value0;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = ___culture1;
|
|
int64_t L_2 = Int64_Parse_m58A1CEB948FDC6C2ECCA27CA9D19CB904BF98FD4(L_0, L_1, /*hidden argument*/NULL);
|
|
int64_t L_3 = L_2;
|
|
RuntimeObject * L_4 = Box(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var, &L_3);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.Int64Converter::ToString(System.Object,System.Globalization.NumberFormatInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int64Converter_ToString_m914E4B677BB3D12FEFF432696606554C7276093C (Int64Converter_tED09C98C409F894484943F8D4F9C6468A97F1447 * __this, RuntimeObject * ___value0, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___formatInfo1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Int64Converter_ToString_m914E4B677BB3D12FEFF432696606554C7276093C_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int64_t V_0 = 0;
|
|
{
|
|
RuntimeObject * L_0 = ___value0;
|
|
V_0 = ((*(int64_t*)((int64_t*)UnBox(L_0, Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var))));
|
|
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = ___formatInfo1;
|
|
String_t* L_2 = Int64_ToString_mB73201579D1D4BC868EC9BC901B2812AC4B90517((int64_t*)(&V_0), _stringLiteralA36A6718F54524D846894FB04B5B885B4E43E63B, L_1, /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.Int64Converter::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int64Converter__ctor_mE4DC71A97EF110B854F22A48AB0F0D3792B53A74 (Int64Converter_tED09C98C409F894484943F8D4F9C6468A97F1447 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BaseNumberConverter__ctor_mD78E1C7E1F8A977BC7AD33DB0C1E5E32C60E8E83(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.String System.ComponentModel.IntSecurity::UnsafeGetFullPath(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IntSecurity_UnsafeGetFullPath_m5B606F2B38235AF2F2A44E9C631BC029044173A8 (String_t* ___fileName0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (IntSecurity_UnsafeGetFullPath_m5B606F2B38235AF2F2A44E9C631BC029044173A8_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___fileName0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var);
|
|
String_t* L_1 = Path_GetFullPath_m58677E6FFAFB7BB4A23011CE50F76487226EDE20(L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.InvalidAsynchronousStateException::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidAsynchronousStateException__ctor_mBFDF56C387AC0FEEE0537438C889C3C0481FF927 (InvalidAsynchronousStateException_t7DB1CEE45E73613ADBB359792244856600B5E5D7 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
InvalidAsynchronousStateException__ctor_m023121E41FC7A6A4764C71690F9E7914E5A6F244(__this, (String_t*)NULL, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.InvalidAsynchronousStateException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidAsynchronousStateException__ctor_m023121E41FC7A6A4764C71690F9E7914E5A6F244 (InvalidAsynchronousStateException_t7DB1CEE45E73613ADBB359792244856600B5E5D7 * __this, String_t* ___message0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___message0;
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(__this, L_0, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.InvalidAsynchronousStateException::.ctor(System.String,System.Exception)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidAsynchronousStateException__ctor_mB42946A2CD377DBED779D49D40B253AE20E8FA6F (InvalidAsynchronousStateException_t7DB1CEE45E73613ADBB359792244856600B5E5D7 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___message0;
|
|
Exception_t * L_1 = ___innerException1;
|
|
ArgumentException__ctor_m1BF85DCCECA37FCD88A0884AF3C4D03566911BF0(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.InvalidAsynchronousStateException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidAsynchronousStateException__ctor_mA7845D7B18B5F68BC9F4479A39787DD3AA38D00B (InvalidAsynchronousStateException_t7DB1CEE45E73613ADBB359792244856600B5E5D7 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
|
|
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
|
|
ArgumentException__ctor_m33453ED48103C3A4893FBE06039DF7473FBAD7E6(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.InvalidEnumArgumentException::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidEnumArgumentException__ctor_mB864143D7868554B01B381A76A081E9408C085AA (InvalidEnumArgumentException_tCC80F4F8EF655A404E9D11895A6477AA3D210BB1 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
InvalidEnumArgumentException__ctor_m184AA05A3020A39DE26104E0BBB6667B4A0A6D81(__this, (String_t*)NULL, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.InvalidEnumArgumentException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidEnumArgumentException__ctor_m184AA05A3020A39DE26104E0BBB6667B4A0A6D81 (InvalidEnumArgumentException_tCC80F4F8EF655A404E9D11895A6477AA3D210BB1 * __this, String_t* ___message0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___message0;
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(__this, L_0, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.InvalidEnumArgumentException::.ctor(System.String,System.Exception)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidEnumArgumentException__ctor_m6F2BB21FE8EF3BF9444D99831709CD39738670F9 (InvalidEnumArgumentException_tCC80F4F8EF655A404E9D11895A6477AA3D210BB1 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___message0;
|
|
Exception_t * L_1 = ___innerException1;
|
|
ArgumentException__ctor_m1BF85DCCECA37FCD88A0884AF3C4D03566911BF0(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.InvalidEnumArgumentException::.ctor(System.String,System.Int32,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidEnumArgumentException__ctor_mE17CFFA48D7C085BF4828419A4BADBBB9BD8D32A (InvalidEnumArgumentException_tCC80F4F8EF655A404E9D11895A6477AA3D210BB1 * __this, String_t* ___argumentName0, int32_t ___invalidValue1, Type_t * ___enumClass2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (InvalidEnumArgumentException__ctor_mE17CFFA48D7C085BF4828419A4BADBBB9BD8D32A_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)3);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0;
|
|
String_t* L_2 = ___argumentName0;
|
|
NullCheck(L_1);
|
|
ArrayElementTypeCheck (L_1, L_2);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_2);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = L_1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_4 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL);
|
|
String_t* L_5 = Int32_ToString_m1D0AF82BDAB5D4710527DD3FEFA6F01246D128A5((int32_t*)(&___invalidValue1), L_4, /*hidden argument*/NULL);
|
|
NullCheck(L_3);
|
|
ArrayElementTypeCheck (L_3, L_5);
|
|
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_5);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = L_3;
|
|
Type_t * L_7 = ___enumClass2;
|
|
NullCheck(L_7);
|
|
String_t* L_8 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_7);
|
|
NullCheck(L_6);
|
|
ArrayElementTypeCheck (L_6, L_8);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_8);
|
|
String_t* L_9 = SR_GetString_m9548BD6DD52DFDB46372F211078AE57FA2401E39(_stringLiteral61D51E2BE21AD76207C622D3BA9A816B6893BA38, L_6, /*hidden argument*/NULL);
|
|
String_t* L_10 = ___argumentName0;
|
|
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(__this, L_9, L_10, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.InvalidEnumArgumentException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidEnumArgumentException__ctor_m6F36E458BA27A8163962D354E3374BEF7E7C5943 (InvalidEnumArgumentException_tCC80F4F8EF655A404E9D11895A6477AA3D210BB1 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
|
|
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
|
|
ArgumentException__ctor_m33453ED48103C3A4893FBE06039DF7473FBAD7E6(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Boolean System.ComponentModel.LicFileLicenseProvider::IsKeyValid(System.String,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LicFileLicenseProvider_IsKeyValid_m05DC6B498F1D33AB1AC664541F491C099AD1340E (LicFileLicenseProvider_t458B091F8501C2890FD617BB025AB49DC494076F * __this, String_t* ___key0, Type_t * ___type1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___key0;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_1 = ___key0;
|
|
Type_t * L_2 = ___type1;
|
|
String_t* L_3 = VirtFuncInvoker1< String_t*, Type_t * >::Invoke(6 /* System.String System.ComponentModel.LicFileLicenseProvider::GetKey(System.Type) */, __this, L_2);
|
|
NullCheck(L_1);
|
|
bool L_4 = String_StartsWith_m7D468FB7C801D9C2DBEEEEC86F8BA8F4EC3243C1(L_1, L_3, /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.LicFileLicenseProvider::GetKey(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* LicFileLicenseProvider_GetKey_mDAA23D7E746F1CA4E42A5A5BECD324296E3FF901 (LicFileLicenseProvider_t458B091F8501C2890FD617BB025AB49DC494076F * __this, Type_t * ___type0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicFileLicenseProvider_GetKey_mDAA23D7E746F1CA4E42A5A5BECD324296E3FF901_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
|
|
Type_t * L_1 = ___type0;
|
|
NullCheck(L_1);
|
|
String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Type::get_FullName() */, L_1);
|
|
String_t* L_3 = String_Format_m30892041DA5F50D7B8CFD82FFC0F55B5B97A2B7F(L_0, _stringLiteral1D71EEE7A68160309DDBFC2A9699C64D12F81362, L_2, /*hidden argument*/NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.ComponentModel.License System.ComponentModel.LicFileLicenseProvider::GetLicense(System.ComponentModel.LicenseContext,System.Type,System.Object,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR License_t9011453B97942387364692C7DFAD2DEDB2160F8C * LicFileLicenseProvider_GetLicense_mE422FDDF8364AE19646004BA7DCE98B0378E41A3 (LicFileLicenseProvider_t458B091F8501C2890FD617BB025AB49DC494076F * __this, LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * ___context0, Type_t * ___type1, RuntimeObject * ___instance2, bool ___allowExceptions3, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicFileLicenseProvider_GetLicense_mE422FDDF8364AE19646004BA7DCE98B0378E41A3_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
LicFileLicense_t5AF4C870B7DF7EE91D6C0FA5DA1354763EF9E5FF * V_0 = NULL;
|
|
String_t* V_1 = NULL;
|
|
String_t* V_2 = NULL;
|
|
String_t* V_3 = NULL;
|
|
RuntimeObject* V_4 = NULL;
|
|
String_t* V_5 = NULL;
|
|
{
|
|
V_0 = (LicFileLicense_t5AF4C870B7DF7EE91D6C0FA5DA1354763EF9E5FF *)NULL;
|
|
LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * L_0 = ___context0;
|
|
if (!L_0)
|
|
{
|
|
goto IL_00de;
|
|
}
|
|
}
|
|
{
|
|
LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * L_1 = ___context0;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.ComponentModel.LicenseUsageMode System.ComponentModel.LicenseContext::get_UsageMode() */, L_1);
|
|
if (L_2)
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * L_3 = ___context0;
|
|
Type_t * L_4 = ___type1;
|
|
NullCheck(L_3);
|
|
String_t* L_5 = VirtFuncInvoker2< String_t*, Type_t *, Assembly_t * >::Invoke(6 /* System.String System.ComponentModel.LicenseContext::GetSavedLicenseKey(System.Type,System.Reflection.Assembly) */, L_3, L_4, (Assembly_t *)NULL);
|
|
V_1 = L_5;
|
|
String_t* L_6 = V_1;
|
|
if (!L_6)
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_7 = V_1;
|
|
Type_t * L_8 = ___type1;
|
|
bool L_9 = VirtFuncInvoker2< bool, String_t*, Type_t * >::Invoke(5 /* System.Boolean System.ComponentModel.LicFileLicenseProvider::IsKeyValid(System.String,System.Type) */, __this, L_7, L_8);
|
|
if (!L_9)
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_10 = V_1;
|
|
LicFileLicense_t5AF4C870B7DF7EE91D6C0FA5DA1354763EF9E5FF * L_11 = (LicFileLicense_t5AF4C870B7DF7EE91D6C0FA5DA1354763EF9E5FF *)il2cpp_codegen_object_new(LicFileLicense_t5AF4C870B7DF7EE91D6C0FA5DA1354763EF9E5FF_il2cpp_TypeInfo_var);
|
|
LicFileLicense__ctor_mA3DCCF9DAAA00809C8F889B59AF1DEF77269C04B(L_11, __this, L_10, /*hidden argument*/NULL);
|
|
V_0 = L_11;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
LicFileLicense_t5AF4C870B7DF7EE91D6C0FA5DA1354763EF9E5FF * L_12 = V_0;
|
|
if (L_12)
|
|
{
|
|
goto IL_00de;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (String_t*)NULL;
|
|
LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * L_13 = ___context0;
|
|
if (!L_13)
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
}
|
|
{
|
|
LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * L_14 = ___context0;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (ITypeResolutionService_t7F3892CAAFEF769D52D791845BBDC389788F3B26_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_15, /*hidden argument*/NULL);
|
|
NullCheck(L_14);
|
|
RuntimeObject * L_17 = VirtFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(7 /* System.Object System.ComponentModel.LicenseContext::GetService(System.Type) */, L_14, L_16);
|
|
V_4 = ((RuntimeObject*)Castclass((RuntimeObject*)L_17, ITypeResolutionService_t7F3892CAAFEF769D52D791845BBDC389788F3B26_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_18 = V_4;
|
|
if (!L_18)
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_19 = V_4;
|
|
Type_t * L_20 = ___type1;
|
|
NullCheck(L_20);
|
|
Assembly_t * L_21 = VirtFuncInvoker0< Assembly_t * >::Invoke(27 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_20);
|
|
NullCheck(L_21);
|
|
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_22 = VirtFuncInvoker0< AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * >::Invoke(20 /* System.Reflection.AssemblyName System.Reflection.Assembly::GetName() */, L_21);
|
|
NullCheck(L_19);
|
|
String_t* L_23 = InterfaceFuncInvoker1< String_t*, AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * >::Invoke(1 /* System.String System.ComponentModel.Design.ITypeResolutionService::GetPathOfAssembly(System.Reflection.AssemblyName) */, ITypeResolutionService_t7F3892CAAFEF769D52D791845BBDC389788F3B26_il2cpp_TypeInfo_var, L_19, L_22);
|
|
V_2 = L_23;
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
String_t* L_24 = V_2;
|
|
if (L_24)
|
|
{
|
|
goto IL_0076;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_25 = ___type1;
|
|
NullCheck(L_25);
|
|
Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 * L_26 = VirtFuncInvoker0< Module_t882FB0C491B9CD194BE7CD1AC62FEFB31EEBE5D7 * >::Invoke(15 /* System.Reflection.Module System.Reflection.MemberInfo::get_Module() */, L_25);
|
|
NullCheck(L_26);
|
|
String_t* L_27 = VirtFuncInvoker0< String_t* >::Invoke(12 /* System.String System.Reflection.Module::get_FullyQualifiedName() */, L_26);
|
|
V_2 = L_27;
|
|
}
|
|
|
|
IL_0076:
|
|
{
|
|
String_t* L_28 = V_2;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var);
|
|
String_t* L_29 = Path_GetDirectoryName_m61922AA6D7B48EACBA36FF41A1B28F506CFB8A97(L_28, /*hidden argument*/NULL);
|
|
Type_t * L_30 = ___type1;
|
|
NullCheck(L_30);
|
|
String_t* L_31 = VirtFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Type::get_FullName() */, L_30);
|
|
String_t* L_32 = String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64(L_29, _stringLiteral08534F33C201A45017B502E90A800F1B708EBCB3, L_31, _stringLiteral7D5560F4111919A58AF4813952AA2AF175ECB6F7, /*hidden argument*/NULL);
|
|
V_3 = L_32;
|
|
String_t* L_33 = V_3;
|
|
bool L_34 = File_Exists_m6B9BDD8EEB33D744EB0590DD27BC0152FAFBD1FB(L_33, /*hidden argument*/NULL);
|
|
if (!L_34)
|
|
{
|
|
goto IL_00ce;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_35 = V_3;
|
|
FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 * L_36 = (FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 *)il2cpp_codegen_object_new(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418_il2cpp_TypeInfo_var);
|
|
FileStream__ctor_mB254658F1E758D76B41C942CB91BDF38FD544C83(L_36, L_35, 3, 1, 1, /*hidden argument*/NULL);
|
|
StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * L_37 = (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E *)il2cpp_codegen_object_new(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_il2cpp_TypeInfo_var);
|
|
StreamReader__ctor_m6AD25C8043D76E8E4BB14554D59A69035A1908EB(L_37, L_36, /*hidden argument*/NULL);
|
|
StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * L_38 = L_37;
|
|
NullCheck(L_38);
|
|
String_t* L_39 = VirtFuncInvoker0< String_t* >::Invoke(13 /* System.String System.IO.TextReader::ReadLine() */, L_38);
|
|
V_5 = L_39;
|
|
NullCheck(L_38);
|
|
VirtActionInvoker0::Invoke(7 /* System.Void System.IO.TextReader::Close() */, L_38);
|
|
String_t* L_40 = V_5;
|
|
Type_t * L_41 = ___type1;
|
|
bool L_42 = VirtFuncInvoker2< bool, String_t*, Type_t * >::Invoke(5 /* System.Boolean System.ComponentModel.LicFileLicenseProvider::IsKeyValid(System.String,System.Type) */, __this, L_40, L_41);
|
|
if (!L_42)
|
|
{
|
|
goto IL_00ce;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_43 = ___type1;
|
|
String_t* L_44 = VirtFuncInvoker1< String_t*, Type_t * >::Invoke(6 /* System.String System.ComponentModel.LicFileLicenseProvider::GetKey(System.Type) */, __this, L_43);
|
|
LicFileLicense_t5AF4C870B7DF7EE91D6C0FA5DA1354763EF9E5FF * L_45 = (LicFileLicense_t5AF4C870B7DF7EE91D6C0FA5DA1354763EF9E5FF *)il2cpp_codegen_object_new(LicFileLicense_t5AF4C870B7DF7EE91D6C0FA5DA1354763EF9E5FF_il2cpp_TypeInfo_var);
|
|
LicFileLicense__ctor_mA3DCCF9DAAA00809C8F889B59AF1DEF77269C04B(L_45, __this, L_44, /*hidden argument*/NULL);
|
|
V_0 = L_45;
|
|
}
|
|
|
|
IL_00ce:
|
|
{
|
|
LicFileLicense_t5AF4C870B7DF7EE91D6C0FA5DA1354763EF9E5FF * L_46 = V_0;
|
|
if (!L_46)
|
|
{
|
|
goto IL_00de;
|
|
}
|
|
}
|
|
{
|
|
LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * L_47 = ___context0;
|
|
Type_t * L_48 = ___type1;
|
|
LicFileLicense_t5AF4C870B7DF7EE91D6C0FA5DA1354763EF9E5FF * L_49 = V_0;
|
|
NullCheck(L_49);
|
|
String_t* L_50 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.ComponentModel.License::get_LicenseKey() */, L_49);
|
|
NullCheck(L_47);
|
|
VirtActionInvoker2< Type_t *, String_t* >::Invoke(8 /* System.Void System.ComponentModel.LicenseContext::SetSavedLicenseKey(System.Type,System.String) */, L_47, L_48, L_50);
|
|
}
|
|
|
|
IL_00de:
|
|
{
|
|
LicFileLicense_t5AF4C870B7DF7EE91D6C0FA5DA1354763EF9E5FF * L_51 = V_0;
|
|
return L_51;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.LicFileLicenseProvider::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicFileLicenseProvider__ctor_m2E69041E5EE354DD12B54F63EBDB67B144E298FD (LicFileLicenseProvider_t458B091F8501C2890FD617BB025AB49DC494076F * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
LicenseProvider__ctor_mC9C232F22F593BFFD6E17AFBDEE34F0248300C83(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.LicFileLicenseProvider_LicFileLicense::.ctor(System.ComponentModel.LicFileLicenseProvider,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicFileLicense__ctor_mA3DCCF9DAAA00809C8F889B59AF1DEF77269C04B (LicFileLicense_t5AF4C870B7DF7EE91D6C0FA5DA1354763EF9E5FF * __this, LicFileLicenseProvider_t458B091F8501C2890FD617BB025AB49DC494076F * ___owner0, String_t* ___key1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
License__ctor_m60C65CA65162567487747456D8A5E6DB3817400F(__this, /*hidden argument*/NULL);
|
|
String_t* L_0 = ___key1;
|
|
__this->set_key_0(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.LicFileLicenseProvider_LicFileLicense::get_LicenseKey()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* LicFileLicense_get_LicenseKey_m9ACA268958A84E7DC96D55D801043D9B404DD7F5 (LicFileLicense_t5AF4C870B7DF7EE91D6C0FA5DA1354763EF9E5FF * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_key_0();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.LicFileLicenseProvider_LicFileLicense::Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicFileLicense_Dispose_m91439D03DDE491C8C3F21E45A07843277DDF3A90 (LicFileLicense_t5AF4C870B7DF7EE91D6C0FA5DA1354763EF9E5FF * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicFileLicense_Dispose_m91439D03DDE491C8C3F21E45A07843277DDF3A90_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var);
|
|
GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.License::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void License__ctor_m60C65CA65162567487747456D8A5E6DB3817400F (License_t9011453B97942387364692C7DFAD2DEDB2160F8C * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.ComponentModel.LicenseUsageMode System.ComponentModel.LicenseContext::get_UsageMode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LicenseContext_get_UsageMode_m74C67EC1DA40FCE7ECB8AFF112074BBB2DCA5D9D (LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (int32_t)(0);
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.LicenseContext::GetSavedLicenseKey(System.Type,System.Reflection.Assembly)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* LicenseContext_GetSavedLicenseKey_m5CDEB3668CE9C7C589BEF0318893C562919782F7 (LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * __this, Type_t * ___type0, Assembly_t * ___resourceAssembly1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (String_t*)NULL;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.LicenseContext::GetService(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * LicenseContext_GetService_mC513C8F05EC38E87335CFF560ADFA3F50D0CECD0 (LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * __this, Type_t * ___type0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return NULL;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.LicenseContext::SetSavedLicenseKey(System.Type,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseContext_SetSavedLicenseKey_m04B950A879E024A255FA9C0A78047BD05F06C3D4 (LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * __this, Type_t * ___type0, String_t* ___key1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.LicenseContext::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseContext__ctor_mAB5FAA290C59283C695E6D1E55E479BC7435AB51 (LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.LicenseException::.ctor(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseException__ctor_m1CE763695A858FDCCB8DA467E174BAB454319080 (LicenseException_t68C548BE94D4AD7F82C5AD5E710AC18F50F30F9D * __this, Type_t * ___type0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseException__ctor_m1CE763695A858FDCCB8DA467E174BAB454319080_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Type_t * L_0 = ___type0;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1;
|
|
Type_t * L_3 = ___type0;
|
|
NullCheck(L_3);
|
|
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Type::get_FullName() */, L_3);
|
|
NullCheck(L_2);
|
|
ArrayElementTypeCheck (L_2, L_4);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_4);
|
|
String_t* L_5 = SR_GetString_m9548BD6DD52DFDB46372F211078AE57FA2401E39(_stringLiteralE2983156D9C4E535A873A17E2F61F2C65D9F6B2F, L_2, /*hidden argument*/NULL);
|
|
LicenseException__ctor_mCCB6A21E8D1D703F71B82A7D498991574AF22086(__this, L_0, NULL, L_5, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.LicenseException::.ctor(System.Type,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseException__ctor_mB94330021DE40D6A3E84D0C28A69A79CB1575A0C (LicenseException_t68C548BE94D4AD7F82C5AD5E710AC18F50F30F9D * __this, Type_t * ___type0, RuntimeObject * ___instance1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseException__ctor_mB94330021DE40D6A3E84D0C28A69A79CB1575A0C_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Type_t * L_0 = ___type0;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1;
|
|
Type_t * L_3 = ___type0;
|
|
NullCheck(L_3);
|
|
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Type::get_FullName() */, L_3);
|
|
NullCheck(L_2);
|
|
ArrayElementTypeCheck (L_2, L_4);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_4);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = L_2;
|
|
RuntimeObject * L_6 = ___instance1;
|
|
NullCheck(L_6);
|
|
Type_t * L_7 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_6, /*hidden argument*/NULL);
|
|
NullCheck(L_7);
|
|
String_t* L_8 = VirtFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Type::get_FullName() */, L_7);
|
|
NullCheck(L_5);
|
|
ArrayElementTypeCheck (L_5, L_8);
|
|
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_8);
|
|
String_t* L_9 = SR_GetString_m9548BD6DD52DFDB46372F211078AE57FA2401E39(_stringLiteral37568C8C884998B806216F91E2D53505DFC236EA, L_5, /*hidden argument*/NULL);
|
|
LicenseException__ctor_mCCB6A21E8D1D703F71B82A7D498991574AF22086(__this, L_0, NULL, L_9, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.LicenseException::.ctor(System.Type,System.Object,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseException__ctor_mCCB6A21E8D1D703F71B82A7D498991574AF22086 (LicenseException_t68C548BE94D4AD7F82C5AD5E710AC18F50F30F9D * __this, Type_t * ___type0, RuntimeObject * ___instance1, String_t* ___message2, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___message2;
|
|
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
|
|
Type_t * L_1 = ___type0;
|
|
__this->set_type_17(L_1);
|
|
RuntimeObject * L_2 = ___instance1;
|
|
__this->set_instance_18(L_2);
|
|
Exception_set_HResult_m920DF8C728D8A0EC0759685FED890C775FA08B99_inline(__this, ((int32_t)-2146232063), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.LicenseException::.ctor(System.Type,System.Object,System.String,System.Exception)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseException__ctor_m581FFC89C4588722DFAC649AC731997CC1EB47F3 (LicenseException_t68C548BE94D4AD7F82C5AD5E710AC18F50F30F9D * __this, Type_t * ___type0, RuntimeObject * ___instance1, String_t* ___message2, Exception_t * ___innerException3, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___message2;
|
|
Exception_t * L_1 = ___innerException3;
|
|
SystemException__ctor_mA18D2EA5642C066F35CB8C965398F9A542C33B0A(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
Type_t * L_2 = ___type0;
|
|
__this->set_type_17(L_2);
|
|
RuntimeObject * L_3 = ___instance1;
|
|
__this->set_instance_18(L_3);
|
|
Exception_set_HResult_m920DF8C728D8A0EC0759685FED890C775FA08B99_inline(__this, ((int32_t)-2146232063), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.LicenseException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseException__ctor_m1D5272BAFA96479089303E88C8A2D67F3D1564EF (LicenseException_t68C548BE94D4AD7F82C5AD5E710AC18F50F30F9D * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseException__ctor_m1D5272BAFA96479089303E88C8A2D67F3D1564EF_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
|
|
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
|
|
SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Type_t_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL);
|
|
NullCheck(L_2);
|
|
RuntimeObject * L_5 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_2, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, L_4, /*hidden argument*/NULL);
|
|
__this->set_type_17(((Type_t *)CastclassClass((RuntimeObject*)L_5, Type_t_il2cpp_TypeInfo_var)));
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = ___info0;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
|
|
Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL);
|
|
NullCheck(L_6);
|
|
RuntimeObject * L_9 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_6, _stringLiteralC3BEC6BCBC9B9F04E60FCB1D9C9C1A37F3E12E93, L_8, /*hidden argument*/NULL);
|
|
__this->set_instance_18(L_9);
|
|
return;
|
|
}
|
|
}
|
|
// System.Type System.ComponentModel.LicenseException::get_LicensedType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * LicenseException_get_LicensedType_m64177B53D297721AF80C83DF52D51C435C962228 (LicenseException_t68C548BE94D4AD7F82C5AD5E710AC18F50F30F9D * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Type_t * L_0 = __this->get_type_17();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.LicenseException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseException_GetObjectData_mBF347F760742E24FEF4AB89830F1659CDF3CBF68 (LicenseException_t68C548BE94D4AD7F82C5AD5E710AC18F50F30F9D * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseException_GetObjectData_mBF347F760742E24FEF4AB89830F1659CDF3CBF68_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, LicenseException_GetObjectData_mBF347F760742E24FEF4AB89830F1659CDF3CBF68_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0;
|
|
Type_t * L_3 = __this->get_type_17();
|
|
NullCheck(L_2);
|
|
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_2, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, L_3, /*hidden argument*/NULL);
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0;
|
|
RuntimeObject * L_5 = __this->get_instance_18();
|
|
NullCheck(L_4);
|
|
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_4, _stringLiteralC3BEC6BCBC9B9F04E60FCB1D9C9C1A37F3E12E93, L_5, /*hidden argument*/NULL);
|
|
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = ___info0;
|
|
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_7 = ___context1;
|
|
Exception_GetObjectData_m76F759ED00FA218FFC522C32626B851FDE849AD6(__this, L_6, L_7, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.LicenseManager::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseManager__ctor_mABD051736DCDDED06F94820AF270A380D38E204B (LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.ComponentModel.LicenseContext System.ComponentModel.LicenseManager::get_CurrentContext()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * LicenseManager_get_CurrentContext_m1D8C3D3DF397BF157E8679AF9E51A114BC4255A9 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseManager_get_CurrentContext_m1D8C3D3DF397BF157E8679AF9E51A114BC4255A9_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject * V_0 = NULL;
|
|
bool V_1 = false;
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * L_0 = ((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->get_context_1();
|
|
il2cpp_codegen_memory_barrier();
|
|
if (L_0)
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
RuntimeObject * L_1 = ((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->get_internalSyncObject_5();
|
|
V_0 = L_1;
|
|
V_1 = (bool)0;
|
|
}
|
|
|
|
IL_0011:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
{
|
|
RuntimeObject * L_2 = V_0;
|
|
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_2, (bool*)(&V_1), /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * L_3 = ((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->get_context_1();
|
|
il2cpp_codegen_memory_barrier();
|
|
if (L_3)
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
RuntimeLicenseContext_t1367392EED5E28C90B5128BF01CA0B846120C641 * L_4 = (RuntimeLicenseContext_t1367392EED5E28C90B5128BF01CA0B846120C641 *)il2cpp_codegen_object_new(RuntimeLicenseContext_t1367392EED5E28C90B5128BF01CA0B846120C641_il2cpp_TypeInfo_var);
|
|
RuntimeLicenseContext__ctor_m34027F15B8C84AF7AF0C124458FED83141B480F2(L_4, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_memory_barrier();
|
|
((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->set_context_1(L_4);
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
IL2CPP_LEAVE(0x3A, FINALLY_0030);
|
|
}
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__last_unhandled_exception = (Exception_t *)e.ex;
|
|
goto FINALLY_0030;
|
|
}
|
|
|
|
FINALLY_0030:
|
|
{ // begin finally (depth: 1)
|
|
{
|
|
bool L_5 = V_1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
RuntimeObject * L_6 = V_0;
|
|
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_6, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
IL2CPP_END_FINALLY(48)
|
|
}
|
|
} // end finally (depth: 1)
|
|
IL2CPP_CLEANUP(48)
|
|
{
|
|
IL2CPP_JUMP_TBL(0x3A, IL_003a)
|
|
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * L_7 = ((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->get_context_1();
|
|
il2cpp_codegen_memory_barrier();
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.LicenseManager::set_CurrentContext(System.ComponentModel.LicenseContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseManager_set_CurrentContext_m74C48E5628CD103BA19F67257C52CC83E3B02B25 (LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseManager_set_CurrentContext_m74C48E5628CD103BA19F67257C52CC83E3B02B25_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject * V_0 = NULL;
|
|
bool V_1 = false;
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
RuntimeObject * L_0 = ((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->get_internalSyncObject_5();
|
|
V_0 = L_0;
|
|
V_1 = (bool)0;
|
|
}
|
|
|
|
IL_0008:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
{
|
|
RuntimeObject * L_1 = V_0;
|
|
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_1, (bool*)(&V_1), /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
RuntimeObject * L_2 = ((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->get_contextLockHolder_2();
|
|
if (!L_2)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
String_t* L_3 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteralF7DC60C5838CF1796102355AA1DCED253918411D, /*hidden argument*/NULL);
|
|
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
|
|
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, L_3, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, LicenseManager_set_CurrentContext_m74C48E5628CD103BA19F67257C52CC83E3B02B25_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * L_5 = ___value0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_memory_barrier();
|
|
((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->set_context_1(L_5);
|
|
IL2CPP_LEAVE(0x3B, FINALLY_0031);
|
|
}
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__last_unhandled_exception = (Exception_t *)e.ex;
|
|
goto FINALLY_0031;
|
|
}
|
|
|
|
FINALLY_0031:
|
|
{ // begin finally (depth: 1)
|
|
{
|
|
bool L_6 = V_1;
|
|
if (!L_6)
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
RuntimeObject * L_7 = V_0;
|
|
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_7, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
IL2CPP_END_FINALLY(49)
|
|
}
|
|
} // end finally (depth: 1)
|
|
IL2CPP_CLEANUP(49)
|
|
{
|
|
IL2CPP_JUMP_TBL(0x3B, IL_003b)
|
|
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.ComponentModel.LicenseUsageMode System.ComponentModel.LicenseManager::get_UsageMode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LicenseManager_get_UsageMode_m484105D3C9631EB6E370471DC209AB459C499B15 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseManager_get_UsageMode_m484105D3C9631EB6E370471DC209AB459C499B15_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * L_0 = ((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->get_context_1();
|
|
il2cpp_codegen_memory_barrier();
|
|
if (!L_0)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * L_1 = ((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->get_context_1();
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_1);
|
|
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.ComponentModel.LicenseUsageMode System.ComponentModel.LicenseContext::get_UsageMode() */, L_1);
|
|
return L_2;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
return (int32_t)(0);
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.LicenseManager::CacheProvider(System.Type,System.ComponentModel.LicenseProvider)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseManager_CacheProvider_m57C5C69DCA26A0F4DE6393569468CA42E0388807 (Type_t * ___type0, LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596 * ___provider1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseManager_CacheProvider_m57C5C69DCA26A0F4DE6393569468CA42E0388807_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = ((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->get_providers_3();
|
|
il2cpp_codegen_memory_barrier();
|
|
if (L_0)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
|
|
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_1, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_memory_barrier();
|
|
((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->set_providers_3(L_1);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_2 = ((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->get_providers_3();
|
|
il2cpp_codegen_memory_barrier();
|
|
Type_t * L_3 = ___type0;
|
|
LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596 * L_4 = ___provider1;
|
|
NullCheck(L_2);
|
|
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(31 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_2, L_3, L_4);
|
|
LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596 * L_5 = ___provider1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_6 = ((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->get_providerInstances_4();
|
|
il2cpp_codegen_memory_barrier();
|
|
if (L_6)
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_7 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
|
|
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_7, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_memory_barrier();
|
|
((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->set_providerInstances_4(L_7);
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_8 = ((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->get_providerInstances_4();
|
|
il2cpp_codegen_memory_barrier();
|
|
LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596 * L_9 = ___provider1;
|
|
NullCheck(L_9);
|
|
Type_t * L_10 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_9, /*hidden argument*/NULL);
|
|
LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596 * L_11 = ___provider1;
|
|
NullCheck(L_8);
|
|
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(31 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_8, L_10, L_11);
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.LicenseManager::CreateWithContext(System.Type,System.ComponentModel.LicenseContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * LicenseManager_CreateWithContext_m30AF17D75C786F9E775F67A22E4B9A79291412DF (Type_t * ___type0, LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * ___creationContext1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseManager_CreateWithContext_m30AF17D75C786F9E775F67A22E4B9A79291412DF_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Type_t * L_0 = ___type0;
|
|
LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * L_1 = ___creationContext1;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)0);
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
RuntimeObject * L_3 = LicenseManager_CreateWithContext_m8F60A7F76134A5C372414D6BDF31DA0247BED7E8(L_0, L_1, L_2, /*hidden argument*/NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.LicenseManager::CreateWithContext(System.Type,System.ComponentModel.LicenseContext,System.Object[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * LicenseManager_CreateWithContext_m8F60A7F76134A5C372414D6BDF31DA0247BED7E8 (Type_t * ___type0, LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * ___creationContext1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseManager_CreateWithContext_m8F60A7F76134A5C372414D6BDF31DA0247BED7E8_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject * V_0 = NULL;
|
|
RuntimeObject * V_1 = NULL;
|
|
bool V_2 = false;
|
|
LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * V_3 = NULL;
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
{
|
|
V_0 = NULL;
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
RuntimeObject * L_0 = ((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->get_internalSyncObject_5();
|
|
V_1 = L_0;
|
|
V_2 = (bool)0;
|
|
}
|
|
|
|
IL_000a:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
{
|
|
RuntimeObject * L_1 = V_1;
|
|
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_1, (bool*)(&V_2), /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * L_2 = LicenseManager_get_CurrentContext_m1D8C3D3DF397BF157E8679AF9E51A114BC4255A9(/*hidden argument*/NULL);
|
|
V_3 = L_2;
|
|
}
|
|
|
|
IL_0018:
|
|
try
|
|
{ // begin try (depth: 2)
|
|
{
|
|
LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * L_3 = ___creationContext1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
LicenseManager_set_CurrentContext_m74C48E5628CD103BA19F67257C52CC83E3B02B25(L_3, /*hidden argument*/NULL);
|
|
RuntimeObject * L_4 = ((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->get_selfLock_0();
|
|
LicenseManager_LockContext_m5F0E9C8C761FADD96A5CD8FAA7D0B25129DCF4B8(L_4, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0028:
|
|
try
|
|
{ // begin try (depth: 3)
|
|
Type_t * L_5 = ___type0;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = ___args2;
|
|
RuntimeObject * L_7 = SecurityUtils_SecureCreateInstance_m291D8D6709E79129FDE3E1EA01D37F1D40E73EA4(L_5, L_6, /*hidden argument*/NULL);
|
|
V_0 = L_7;
|
|
IL2CPP_LEAVE(0x53, FINALLY_0038);
|
|
} // end try (depth: 3)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__exception_local = (Exception_t *)e.ex;
|
|
if(il2cpp_codegen_class_is_assignable_from (TargetInvocationException_t0DD35F6083E1D1E0509BF181A79C76D3339D89B8_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
|
|
goto CATCH_0032;
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0032:
|
|
{ // begin catch(System.Reflection.TargetInvocationException)
|
|
NullCheck(((TargetInvocationException_t0DD35F6083E1D1E0509BF181A79C76D3339D89B8 *)__exception_local));
|
|
Exception_t * L_8 = Exception_get_InnerException_mCB68CC8CBF2540EF381CB17A4E4E3F6D0E33453F_inline(((TargetInvocationException_t0DD35F6083E1D1E0509BF181A79C76D3339D89B8 *)__exception_local), /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, LicenseManager_CreateWithContext_m8F60A7F76134A5C372414D6BDF31DA0247BED7E8_RuntimeMethod_var);
|
|
} // end catch (depth: 3)
|
|
} // end try (depth: 2)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__last_unhandled_exception = (Exception_t *)e.ex;
|
|
goto FINALLY_0038;
|
|
}
|
|
|
|
FINALLY_0038:
|
|
{ // begin finally (depth: 2)
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
RuntimeObject * L_9 = ((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->get_selfLock_0();
|
|
LicenseManager_UnlockContext_mA71102EF4CC72A943687F72E01BFA4A18C30E903(L_9, /*hidden argument*/NULL);
|
|
LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * L_10 = V_3;
|
|
LicenseManager_set_CurrentContext_m74C48E5628CD103BA19F67257C52CC83E3B02B25(L_10, /*hidden argument*/NULL);
|
|
IL2CPP_END_FINALLY(56)
|
|
} // end finally (depth: 2)
|
|
IL2CPP_CLEANUP(56)
|
|
{
|
|
IL2CPP_END_CLEANUP(0x53, FINALLY_0049);
|
|
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
|
|
}
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__last_unhandled_exception = (Exception_t *)e.ex;
|
|
goto FINALLY_0049;
|
|
}
|
|
|
|
FINALLY_0049:
|
|
{ // begin finally (depth: 1)
|
|
{
|
|
bool L_11 = V_2;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
RuntimeObject * L_12 = V_1;
|
|
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_12, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
IL2CPP_END_FINALLY(73)
|
|
}
|
|
} // end finally (depth: 1)
|
|
IL2CPP_CLEANUP(73)
|
|
{
|
|
IL2CPP_JUMP_TBL(0x53, IL_0053)
|
|
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
RuntimeObject * L_13 = V_0;
|
|
return L_13;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.LicenseManager::GetCachedNoLicenseProvider(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LicenseManager_GetCachedNoLicenseProvider_m4CBF2FBA41AB146963BB10B971CD7B7641A7C71E (Type_t * ___type0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseManager_GetCachedNoLicenseProvider_m4CBF2FBA41AB146963BB10B971CD7B7641A7C71E_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = ((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->get_providers_3();
|
|
il2cpp_codegen_memory_barrier();
|
|
if (!L_0)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = ((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->get_providers_3();
|
|
il2cpp_codegen_memory_barrier();
|
|
Type_t * L_2 = ___type0;
|
|
NullCheck(L_1);
|
|
bool L_3 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(27 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_1, L_2);
|
|
return L_3;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.ComponentModel.LicenseProvider System.ComponentModel.LicenseManager::GetCachedProvider(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596 * LicenseManager_GetCachedProvider_m2DBCEBBD847008191D4F2D559F13284B94B9BF5F (Type_t * ___type0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseManager_GetCachedProvider_m2DBCEBBD847008191D4F2D559F13284B94B9BF5F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = ((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->get_providers_3();
|
|
il2cpp_codegen_memory_barrier();
|
|
if (!L_0)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = ((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->get_providers_3();
|
|
il2cpp_codegen_memory_barrier();
|
|
Type_t * L_2 = ___type0;
|
|
NullCheck(L_1);
|
|
RuntimeObject * L_3 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_1, L_2);
|
|
return ((LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596 *)CastclassClass((RuntimeObject*)L_3, LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596_il2cpp_TypeInfo_var));
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
return (LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596 *)NULL;
|
|
}
|
|
}
|
|
// System.ComponentModel.LicenseProvider System.ComponentModel.LicenseManager::GetCachedProviderInstance(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596 * LicenseManager_GetCachedProviderInstance_mB227F49DE9F0309CBA097C14328021C7CA19AD52 (Type_t * ___providerType0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseManager_GetCachedProviderInstance_mB227F49DE9F0309CBA097C14328021C7CA19AD52_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = ((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->get_providerInstances_4();
|
|
il2cpp_codegen_memory_barrier();
|
|
if (!L_0)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = ((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->get_providerInstances_4();
|
|
il2cpp_codegen_memory_barrier();
|
|
Type_t * L_2 = ___providerType0;
|
|
NullCheck(L_1);
|
|
RuntimeObject * L_3 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_1, L_2);
|
|
return ((LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596 *)CastclassClass((RuntimeObject*)L_3, LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596_il2cpp_TypeInfo_var));
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
return (LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596 *)NULL;
|
|
}
|
|
}
|
|
// System.IntPtr System.ComponentModel.LicenseManager::GetLicenseInteropHelperType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t LicenseManager_GetLicenseInteropHelperType_m6D7B101583EC4AF696E18C8FBB98CA33C2486C99 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseManager_GetLicenseInteropHelperType_m6D7B101583EC4AF696E18C8FBB98CA33C2486C99_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (LicenseInteropHelper_t528682251600D62797521A8A3CCAD83BD1A47C0E_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_0, /*hidden argument*/NULL);
|
|
NullCheck(L_1);
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = VirtFuncInvoker0< RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D >::Invoke(28 /* System.RuntimeTypeHandle System.Type::get_TypeHandle() */, L_1);
|
|
V_0 = L_2;
|
|
intptr_t L_3 = RuntimeTypeHandle_get_Value_m3277019DD9C1A7E5D22F075DDF8CBDFA4D146BC6_inline((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D *)(&V_0), /*hidden argument*/NULL);
|
|
return (intptr_t)L_3;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.LicenseManager::IsLicensed(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LicenseManager_IsLicensed_m9E3019950A2EC4585B5791974594732CFAC6AAA3 (Type_t * ___type0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseManager_IsLicensed_m9E3019950A2EC4585B5791974594732CFAC6AAA3_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C * V_0 = NULL;
|
|
bool G_B2_0 = false;
|
|
bool G_B1_0 = false;
|
|
{
|
|
Type_t * L_0 = ___type0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
bool L_1 = LicenseManager_ValidateInternal_m6FDC9AF38B256326CD5FEB70F21CEE0C73B2FBD0(L_0, NULL, (bool)0, (License_t9011453B97942387364692C7DFAD2DEDB2160F8C **)(&V_0), /*hidden argument*/NULL);
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C * L_2 = V_0;
|
|
G_B1_0 = L_1;
|
|
if (!L_2)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C * L_3 = V_0;
|
|
NullCheck(L_3);
|
|
VirtActionInvoker0::Invoke(6 /* System.Void System.ComponentModel.License::Dispose() */, L_3);
|
|
V_0 = (License_t9011453B97942387364692C7DFAD2DEDB2160F8C *)NULL;
|
|
G_B2_0 = G_B1_0;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
return G_B2_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.LicenseManager::IsValid(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LicenseManager_IsValid_mF0821E32ECF353F331288E52B78E0A60D15F69D0 (Type_t * ___type0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseManager_IsValid_mF0821E32ECF353F331288E52B78E0A60D15F69D0_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C * V_0 = NULL;
|
|
bool G_B2_0 = false;
|
|
bool G_B1_0 = false;
|
|
{
|
|
Type_t * L_0 = ___type0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
bool L_1 = LicenseManager_ValidateInternal_m6FDC9AF38B256326CD5FEB70F21CEE0C73B2FBD0(L_0, NULL, (bool)0, (License_t9011453B97942387364692C7DFAD2DEDB2160F8C **)(&V_0), /*hidden argument*/NULL);
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C * L_2 = V_0;
|
|
G_B1_0 = L_1;
|
|
if (!L_2)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C * L_3 = V_0;
|
|
NullCheck(L_3);
|
|
VirtActionInvoker0::Invoke(6 /* System.Void System.ComponentModel.License::Dispose() */, L_3);
|
|
V_0 = (License_t9011453B97942387364692C7DFAD2DEDB2160F8C *)NULL;
|
|
G_B2_0 = G_B1_0;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
return G_B2_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.LicenseManager::IsValid(System.Type,System.Object,System.ComponentModel.License&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LicenseManager_IsValid_m54F014B188955A11271F52CDFB45293B4A816D7F (Type_t * ___type0, RuntimeObject * ___instance1, License_t9011453B97942387364692C7DFAD2DEDB2160F8C ** ___license2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseManager_IsValid_m54F014B188955A11271F52CDFB45293B4A816D7F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Type_t * L_0 = ___type0;
|
|
RuntimeObject * L_1 = ___instance1;
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C ** L_2 = ___license2;
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
bool L_3 = LicenseManager_ValidateInternal_m6FDC9AF38B256326CD5FEB70F21CEE0C73B2FBD0(L_0, L_1, (bool)0, (License_t9011453B97942387364692C7DFAD2DEDB2160F8C **)L_2, /*hidden argument*/NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.LicenseManager::LockContext(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseManager_LockContext_m5F0E9C8C761FADD96A5CD8FAA7D0B25129DCF4B8 (RuntimeObject * ___contextUser0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseManager_LockContext_m5F0E9C8C761FADD96A5CD8FAA7D0B25129DCF4B8_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject * V_0 = NULL;
|
|
bool V_1 = false;
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
RuntimeObject * L_0 = ((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->get_internalSyncObject_5();
|
|
V_0 = L_0;
|
|
V_1 = (bool)0;
|
|
}
|
|
|
|
IL_0008:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
{
|
|
RuntimeObject * L_1 = V_0;
|
|
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_1, (bool*)(&V_1), /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
RuntimeObject * L_2 = ((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->get_contextLockHolder_2();
|
|
if (!L_2)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
String_t* L_3 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteral0B917548CFF24F4241C9E3C21BCC5119F3F595D0, /*hidden argument*/NULL);
|
|
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
|
|
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, L_3, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, LicenseManager_LockContext_m5F0E9C8C761FADD96A5CD8FAA7D0B25129DCF4B8_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
RuntimeObject * L_5 = ___contextUser0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->set_contextLockHolder_2(L_5);
|
|
IL2CPP_LEAVE(0x39, FINALLY_002f);
|
|
}
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__last_unhandled_exception = (Exception_t *)e.ex;
|
|
goto FINALLY_002f;
|
|
}
|
|
|
|
FINALLY_002f:
|
|
{ // begin finally (depth: 1)
|
|
{
|
|
bool L_6 = V_1;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
RuntimeObject * L_7 = V_0;
|
|
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_7, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
IL2CPP_END_FINALLY(47)
|
|
}
|
|
} // end finally (depth: 1)
|
|
IL2CPP_CLEANUP(47)
|
|
{
|
|
IL2CPP_JUMP_TBL(0x39, IL_0039)
|
|
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.LicenseManager::UnlockContext(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseManager_UnlockContext_mA71102EF4CC72A943687F72E01BFA4A18C30E903 (RuntimeObject * ___contextUser0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseManager_UnlockContext_mA71102EF4CC72A943687F72E01BFA4A18C30E903_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject * V_0 = NULL;
|
|
bool V_1 = false;
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
RuntimeObject * L_0 = ((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->get_internalSyncObject_5();
|
|
V_0 = L_0;
|
|
V_1 = (bool)0;
|
|
}
|
|
|
|
IL_0008:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
{
|
|
RuntimeObject * L_1 = V_0;
|
|
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_1, (bool*)(&V_1), /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
RuntimeObject * L_2 = ((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->get_contextLockHolder_2();
|
|
RuntimeObject * L_3 = ___contextUser0;
|
|
if ((((RuntimeObject*)(RuntimeObject *)L_2) == ((RuntimeObject*)(RuntimeObject *)L_3)))
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
String_t* L_4 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteral199C3F55FBB9E3A7D53A65CCECF350469513DBE3, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_5 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_5, L_4, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, LicenseManager_UnlockContext_mA71102EF4CC72A943687F72E01BFA4A18C30E903_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->set_contextLockHolder_2(NULL);
|
|
IL2CPP_LEAVE(0x3A, FINALLY_0030);
|
|
}
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__last_unhandled_exception = (Exception_t *)e.ex;
|
|
goto FINALLY_0030;
|
|
}
|
|
|
|
FINALLY_0030:
|
|
{ // begin finally (depth: 1)
|
|
{
|
|
bool L_6 = V_1;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
RuntimeObject * L_7 = V_0;
|
|
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_7, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
IL2CPP_END_FINALLY(48)
|
|
}
|
|
} // end finally (depth: 1)
|
|
IL2CPP_CLEANUP(48)
|
|
{
|
|
IL2CPP_JUMP_TBL(0x3A, IL_003a)
|
|
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.LicenseManager::ValidateInternal(System.Type,System.Object,System.Boolean,System.ComponentModel.License&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LicenseManager_ValidateInternal_m6FDC9AF38B256326CD5FEB70F21CEE0C73B2FBD0 (Type_t * ___type0, RuntimeObject * ___instance1, bool ___allowExceptions2, License_t9011453B97942387364692C7DFAD2DEDB2160F8C ** ___license3, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseManager_ValidateInternal_m6FDC9AF38B256326CD5FEB70F21CEE0C73B2FBD0_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * L_0 = LicenseManager_get_CurrentContext_m1D8C3D3DF397BF157E8679AF9E51A114BC4255A9(/*hidden argument*/NULL);
|
|
Type_t * L_1 = ___type0;
|
|
RuntimeObject * L_2 = ___instance1;
|
|
bool L_3 = ___allowExceptions2;
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C ** L_4 = ___license3;
|
|
bool L_5 = LicenseManager_ValidateInternalRecursive_m3840EF4F43E4A99AC93287DB3D77ACE0D6EAF56F(L_0, L_1, L_2, L_3, (License_t9011453B97942387364692C7DFAD2DEDB2160F8C **)L_4, (String_t**)(&V_0), /*hidden argument*/NULL);
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.LicenseManager::ValidateInternalRecursive(System.ComponentModel.LicenseContext,System.Type,System.Object,System.Boolean,System.ComponentModel.License&,System.String&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LicenseManager_ValidateInternalRecursive_m3840EF4F43E4A99AC93287DB3D77ACE0D6EAF56F (LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * ___context0, Type_t * ___type1, RuntimeObject * ___instance2, bool ___allowExceptions3, License_t9011453B97942387364692C7DFAD2DEDB2160F8C ** ___license4, String_t** ___licenseKey5, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseManager_ValidateInternalRecursive_m3840EF4F43E4A99AC93287DB3D77ACE0D6EAF56F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596 * V_0 = NULL;
|
|
bool V_1 = false;
|
|
LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D * V_2 = NULL;
|
|
Type_t * V_3 = NULL;
|
|
Type_t * V_4 = NULL;
|
|
String_t* V_5 = NULL;
|
|
{
|
|
Type_t * L_0 = ___type1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596 * L_1 = LicenseManager_GetCachedProvider_m2DBCEBBD847008191D4F2D559F13284B94B9BF5F(L_0, /*hidden argument*/NULL);
|
|
V_0 = L_1;
|
|
LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596 * L_2 = V_0;
|
|
if (L_2)
|
|
{
|
|
goto IL_0050;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_3 = ___type1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
bool L_4 = LicenseManager_GetCachedNoLicenseProvider_m4CBF2FBA41AB146963BB10B971CD7B7641A7C71E(L_3, /*hidden argument*/NULL);
|
|
if (L_4)
|
|
{
|
|
goto IL_0050;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_5 = ___type1;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_6, /*hidden argument*/NULL);
|
|
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_8 = Attribute_GetCustomAttribute_m2A281F2593CC0DC3D02E97D79A3581C72A7512E4(L_5, L_7, (bool)0, /*hidden argument*/NULL);
|
|
V_2 = ((LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D *)CastclassSealed((RuntimeObject*)L_8, LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D_il2cpp_TypeInfo_var));
|
|
LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D * L_9 = V_2;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D * L_10 = V_2;
|
|
NullCheck(L_10);
|
|
Type_t * L_11 = LicenseProviderAttribute_get_LicenseProvider_mEECC153EF3491BFE42A37DE3A564BDF277D974DB(L_10, /*hidden argument*/NULL);
|
|
V_3 = L_11;
|
|
Type_t * L_12 = V_3;
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596 * L_13 = LicenseManager_GetCachedProviderInstance_mB227F49DE9F0309CBA097C14328021C7CA19AD52(L_12, /*hidden argument*/NULL);
|
|
V_0 = L_13;
|
|
LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596 * L_14 = V_0;
|
|
if (L_14)
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_15 = V_3;
|
|
RuntimeObject * L_16 = SecurityUtils_SecureCreateInstance_m00B165286E54C3393CFFE82948E078F96018750A(L_15, /*hidden argument*/NULL);
|
|
V_0 = ((LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596 *)CastclassClass((RuntimeObject*)L_16, LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596_il2cpp_TypeInfo_var));
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
Type_t * L_17 = ___type1;
|
|
LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596 * L_18 = V_0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
LicenseManager_CacheProvider_m57C5C69DCA26A0F4DE6393569468CA42E0388807(L_17, L_18, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0050:
|
|
{
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C ** L_19 = ___license4;
|
|
*((RuntimeObject **)L_19) = (RuntimeObject *)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_19, (void*)(RuntimeObject *)NULL);
|
|
V_1 = (bool)1;
|
|
String_t** L_20 = ___licenseKey5;
|
|
*((RuntimeObject **)L_20) = (RuntimeObject *)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_20, (void*)(RuntimeObject *)NULL);
|
|
LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596 * L_21 = V_0;
|
|
if (!L_21)
|
|
{
|
|
goto IL_007e;
|
|
}
|
|
}
|
|
{
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C ** L_22 = ___license4;
|
|
LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596 * L_23 = V_0;
|
|
LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * L_24 = ___context0;
|
|
Type_t * L_25 = ___type1;
|
|
RuntimeObject * L_26 = ___instance2;
|
|
bool L_27 = ___allowExceptions3;
|
|
NullCheck(L_23);
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C * L_28 = VirtFuncInvoker4< License_t9011453B97942387364692C7DFAD2DEDB2160F8C *, LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A *, Type_t *, RuntimeObject *, bool >::Invoke(4 /* System.ComponentModel.License System.ComponentModel.LicenseProvider::GetLicense(System.ComponentModel.LicenseContext,System.Type,System.Object,System.Boolean) */, L_23, L_24, L_25, L_26, L_27);
|
|
*((RuntimeObject **)L_22) = (RuntimeObject *)L_28;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_22, (void*)(RuntimeObject *)L_28);
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C ** L_29 = ___license4;
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C * L_30 = *((License_t9011453B97942387364692C7DFAD2DEDB2160F8C **)L_29);
|
|
if (L_30)
|
|
{
|
|
goto IL_0073;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_007e;
|
|
}
|
|
|
|
IL_0073:
|
|
{
|
|
String_t** L_31 = ___licenseKey5;
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C ** L_32 = ___license4;
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C * L_33 = *((License_t9011453B97942387364692C7DFAD2DEDB2160F8C **)L_32);
|
|
NullCheck(L_33);
|
|
String_t* L_34 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.ComponentModel.License::get_LicenseKey() */, L_33);
|
|
*((RuntimeObject **)L_31) = (RuntimeObject *)L_34;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_31, (void*)(RuntimeObject *)L_34);
|
|
}
|
|
|
|
IL_007e:
|
|
{
|
|
bool L_35 = V_1;
|
|
if (!L_35)
|
|
{
|
|
goto IL_00da;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_36 = ___instance2;
|
|
if (L_36)
|
|
{
|
|
goto IL_00da;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_37 = ___type1;
|
|
NullCheck(L_37);
|
|
Type_t * L_38 = VirtFuncInvoker0< Type_t * >::Invoke(33 /* System.Type System.Type::get_BaseType() */, L_37);
|
|
V_4 = L_38;
|
|
Type_t * L_39 = V_4;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_40 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_41 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_40, /*hidden argument*/NULL);
|
|
bool L_42 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_39, L_41, /*hidden argument*/NULL);
|
|
if (!L_42)
|
|
{
|
|
goto IL_00da;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_43 = V_4;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_44 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_43, (Type_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_44)
|
|
{
|
|
goto IL_00da;
|
|
}
|
|
}
|
|
{
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C ** L_45 = ___license4;
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C * L_46 = *((License_t9011453B97942387364692C7DFAD2DEDB2160F8C **)L_45);
|
|
if (!L_46)
|
|
{
|
|
goto IL_00ba;
|
|
}
|
|
}
|
|
{
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C ** L_47 = ___license4;
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C * L_48 = *((License_t9011453B97942387364692C7DFAD2DEDB2160F8C **)L_47);
|
|
NullCheck(L_48);
|
|
VirtActionInvoker0::Invoke(6 /* System.Void System.ComponentModel.License::Dispose() */, L_48);
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C ** L_49 = ___license4;
|
|
*((RuntimeObject **)L_49) = (RuntimeObject *)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_49, (void*)(RuntimeObject *)NULL);
|
|
}
|
|
|
|
IL_00ba:
|
|
{
|
|
LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * L_50 = ___context0;
|
|
Type_t * L_51 = V_4;
|
|
bool L_52 = ___allowExceptions3;
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C ** L_53 = ___license4;
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
bool L_54 = LicenseManager_ValidateInternalRecursive_m3840EF4F43E4A99AC93287DB3D77ACE0D6EAF56F(L_50, L_51, NULL, L_52, (License_t9011453B97942387364692C7DFAD2DEDB2160F8C **)L_53, (String_t**)(&V_5), /*hidden argument*/NULL);
|
|
V_1 = L_54;
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C ** L_55 = ___license4;
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C * L_56 = *((License_t9011453B97942387364692C7DFAD2DEDB2160F8C **)L_55);
|
|
if (!L_56)
|
|
{
|
|
goto IL_00da;
|
|
}
|
|
}
|
|
{
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C ** L_57 = ___license4;
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C * L_58 = *((License_t9011453B97942387364692C7DFAD2DEDB2160F8C **)L_57);
|
|
NullCheck(L_58);
|
|
VirtActionInvoker0::Invoke(6 /* System.Void System.ComponentModel.License::Dispose() */, L_58);
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C ** L_59 = ___license4;
|
|
*((RuntimeObject **)L_59) = (RuntimeObject *)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_59, (void*)(RuntimeObject *)NULL);
|
|
}
|
|
|
|
IL_00da:
|
|
{
|
|
bool L_60 = V_1;
|
|
return L_60;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.LicenseManager::Validate(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseManager_Validate_m0017E33865486A937AEBA6C769114708AACE3C9B (Type_t * ___type0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseManager_Validate_m0017E33865486A937AEBA6C769114708AACE3C9B_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C * V_0 = NULL;
|
|
{
|
|
Type_t * L_0 = ___type0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
bool L_1 = LicenseManager_ValidateInternal_m6FDC9AF38B256326CD5FEB70F21CEE0C73B2FBD0(L_0, NULL, (bool)1, (License_t9011453B97942387364692C7DFAD2DEDB2160F8C **)(&V_0), /*hidden argument*/NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_2 = ___type0;
|
|
LicenseException_t68C548BE94D4AD7F82C5AD5E710AC18F50F30F9D * L_3 = (LicenseException_t68C548BE94D4AD7F82C5AD5E710AC18F50F30F9D *)il2cpp_codegen_object_new(LicenseException_t68C548BE94D4AD7F82C5AD5E710AC18F50F30F9D_il2cpp_TypeInfo_var);
|
|
LicenseException__ctor_m1CE763695A858FDCCB8DA467E174BAB454319080(L_3, L_2, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, LicenseManager_Validate_m0017E33865486A937AEBA6C769114708AACE3C9B_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C * L_4 = V_0;
|
|
if (!L_4)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C * L_5 = V_0;
|
|
NullCheck(L_5);
|
|
VirtActionInvoker0::Invoke(6 /* System.Void System.ComponentModel.License::Dispose() */, L_5);
|
|
V_0 = (License_t9011453B97942387364692C7DFAD2DEDB2160F8C *)NULL;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.ComponentModel.License System.ComponentModel.LicenseManager::Validate(System.Type,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR License_t9011453B97942387364692C7DFAD2DEDB2160F8C * LicenseManager_Validate_m1192AB4ACEA6467B8C6E03B56BFC74DF118D69C3 (Type_t * ___type0, RuntimeObject * ___instance1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseManager_Validate_m1192AB4ACEA6467B8C6E03B56BFC74DF118D69C3_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C * V_0 = NULL;
|
|
{
|
|
Type_t * L_0 = ___type0;
|
|
RuntimeObject * L_1 = ___instance1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
bool L_2 = LicenseManager_ValidateInternal_m6FDC9AF38B256326CD5FEB70F21CEE0C73B2FBD0(L_0, L_1, (bool)1, (License_t9011453B97942387364692C7DFAD2DEDB2160F8C **)(&V_0), /*hidden argument*/NULL);
|
|
if (L_2)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_3 = ___type0;
|
|
RuntimeObject * L_4 = ___instance1;
|
|
LicenseException_t68C548BE94D4AD7F82C5AD5E710AC18F50F30F9D * L_5 = (LicenseException_t68C548BE94D4AD7F82C5AD5E710AC18F50F30F9D *)il2cpp_codegen_object_new(LicenseException_t68C548BE94D4AD7F82C5AD5E710AC18F50F30F9D_il2cpp_TypeInfo_var);
|
|
LicenseException__ctor_mB94330021DE40D6A3E84D0C28A69A79CB1575A0C(L_5, L_3, L_4, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, LicenseManager_Validate_m1192AB4ACEA6467B8C6E03B56BFC74DF118D69C3_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C * L_6 = V_0;
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.LicenseManager::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseManager__cctor_mFA5AEDEDE5B54596DD66F05C7C580EF52E95D57C (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseManager__cctor_mFA5AEDEDE5B54596DD66F05C7C580EF52E95D57C_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject * L_0 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_0, /*hidden argument*/NULL);
|
|
((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->set_selfLock_0(L_0);
|
|
il2cpp_codegen_memory_barrier();
|
|
((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->set_context_1((LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A *)NULL);
|
|
((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->set_contextLockHolder_2(NULL);
|
|
RuntimeObject * L_1 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_1, /*hidden argument*/NULL);
|
|
((LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_StaticFields*)il2cpp_codegen_static_fields_for(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var))->set_internalSyncObject_5(L_1);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Object System.ComponentModel.LicenseManager_LicenseInteropHelper::AllocateAndValidateLicense(System.RuntimeTypeHandle,System.IntPtr,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * LicenseInteropHelper_AllocateAndValidateLicense_m4AA45D14D8587FD39C8B21F5F1E7F7A777E00692 (RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ___rth0, intptr_t ___bstrKey1, int32_t ___fDesignTime2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseInteropHelper_AllocateAndValidateLicense_m4AA45D14D8587FD39C8B21F5F1E7F7A777E00692_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Type_t * V_0 = NULL;
|
|
CLRLicenseContext_t16B4876D030AD05B4AEA1B65FDC49BC8E4BF64DC * V_1 = NULL;
|
|
RuntimeObject * V_2 = NULL;
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = ___rth0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_0, /*hidden argument*/NULL);
|
|
V_0 = L_1;
|
|
int32_t L_2 = ___fDesignTime2;
|
|
if (L_2)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
G_B3_0 = 0;
|
|
goto IL_000e;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
Type_t * L_3 = V_0;
|
|
CLRLicenseContext_t16B4876D030AD05B4AEA1B65FDC49BC8E4BF64DC * L_4 = (CLRLicenseContext_t16B4876D030AD05B4AEA1B65FDC49BC8E4BF64DC *)il2cpp_codegen_object_new(CLRLicenseContext_t16B4876D030AD05B4AEA1B65FDC49BC8E4BF64DC_il2cpp_TypeInfo_var);
|
|
CLRLicenseContext__ctor_mDD7E6CA9FE763FC4ECAC93AD03E00A55B8BC251D(L_4, G_B3_0, L_3, /*hidden argument*/NULL);
|
|
V_1 = L_4;
|
|
int32_t L_5 = ___fDesignTime2;
|
|
if (L_5)
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_6 = ___bstrKey1;
|
|
intptr_t L_7 = IntPtr_op_Explicit_m62A5ED7757661C8DB6AEF4816829ED92A1929F91(0, /*hidden argument*/NULL);
|
|
bool L_8 = IntPtr_op_Inequality_mB4886A806009EA825EFCC60CD2A7F6EB8E273A61((intptr_t)L_6, (intptr_t)L_7, /*hidden argument*/NULL);
|
|
if (!L_8)
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
CLRLicenseContext_t16B4876D030AD05B4AEA1B65FDC49BC8E4BF64DC * L_9 = V_1;
|
|
Type_t * L_10 = V_0;
|
|
intptr_t L_11 = ___bstrKey1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Marshal_tC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40_il2cpp_TypeInfo_var);
|
|
String_t* L_12 = Marshal_PtrToStringBSTR_m08D1E116E42F1BD91691298B409D67B95149ABFF((intptr_t)L_11, /*hidden argument*/NULL);
|
|
NullCheck(L_9);
|
|
VirtActionInvoker2< Type_t *, String_t* >::Invoke(8 /* System.Void System.ComponentModel.LicenseContext::SetSavedLicenseKey(System.Type,System.String) */, L_9, L_10, L_12);
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
}
|
|
|
|
IL_0034:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
Type_t * L_13 = V_0;
|
|
CLRLicenseContext_t16B4876D030AD05B4AEA1B65FDC49BC8E4BF64DC * L_14 = V_1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
RuntimeObject * L_15 = LicenseManager_CreateWithContext_m30AF17D75C786F9E775F67A22E4B9A79291412DF(L_13, L_14, /*hidden argument*/NULL);
|
|
V_2 = L_15;
|
|
goto IL_004e;
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__exception_local = (Exception_t *)e.ex;
|
|
if(il2cpp_codegen_class_is_assignable_from (LicenseException_t68C548BE94D4AD7F82C5AD5E710AC18F50F30F9D_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
|
|
goto CATCH_003e;
|
|
throw e;
|
|
}
|
|
|
|
CATCH_003e:
|
|
{ // begin catch(System.ComponentModel.LicenseException)
|
|
NullCheck(((LicenseException_t68C548BE94D4AD7F82C5AD5E710AC18F50F30F9D *)__exception_local));
|
|
String_t* L_16 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, ((LicenseException_t68C548BE94D4AD7F82C5AD5E710AC18F50F30F9D *)__exception_local));
|
|
COMException_t16C4698DE84A5ED9085B5545DEE0EDE38DB455DD * L_17 = (COMException_t16C4698DE84A5ED9085B5545DEE0EDE38DB455DD *)il2cpp_codegen_object_new(COMException_t16C4698DE84A5ED9085B5545DEE0EDE38DB455DD_il2cpp_TypeInfo_var);
|
|
COMException__ctor_m8DA73F7E8F5C315508CB4DA67BF396FB07509685(L_17, L_16, ((int32_t)-2147221230), /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, LicenseInteropHelper_AllocateAndValidateLicense_m4AA45D14D8587FD39C8B21F5F1E7F7A777E00692_RuntimeMethod_var);
|
|
} // end catch (depth: 1)
|
|
|
|
IL_004e:
|
|
{
|
|
RuntimeObject * L_18 = V_2;
|
|
return L_18;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.LicenseManager_LicenseInteropHelper::RequestLicKey(System.RuntimeTypeHandle,System.IntPtr&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LicenseInteropHelper_RequestLicKey_m08C663B945E03A79BF3C785C2BF0293F5CE36EC9 (RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ___rth0, intptr_t* ___pbstrKey1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseInteropHelper_RequestLicKey_m08C663B945E03A79BF3C785C2BF0293F5CE36EC9_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Type_t * V_0 = NULL;
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C * V_1 = NULL;
|
|
String_t* V_2 = NULL;
|
|
{
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = ___rth0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_0, /*hidden argument*/NULL);
|
|
V_0 = L_1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * L_2 = LicenseManager_get_CurrentContext_m1D8C3D3DF397BF157E8679AF9E51A114BC4255A9(/*hidden argument*/NULL);
|
|
Type_t * L_3 = V_0;
|
|
bool L_4 = LicenseManager_ValidateInternalRecursive_m3840EF4F43E4A99AC93287DB3D77ACE0D6EAF56F(L_2, L_3, NULL, (bool)0, (License_t9011453B97942387364692C7DFAD2DEDB2160F8C **)(&V_1), (String_t**)(&V_2), /*hidden argument*/NULL);
|
|
if (L_4)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
return ((int32_t)-2147483640);
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
String_t* L_5 = V_2;
|
|
if (L_5)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
return ((int32_t)-2147483640);
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
intptr_t* L_6 = ___pbstrKey1;
|
|
String_t* L_7 = V_2;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Marshal_tC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40_il2cpp_TypeInfo_var);
|
|
intptr_t L_8 = Marshal_StringToBSTR_mD81E2E08A2BCAA32B23C008F8DF017F8FB0D7BEC(L_7, /*hidden argument*/NULL);
|
|
*((intptr_t*)L_6) = (intptr_t)L_8;
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C * L_9 = V_1;
|
|
if (!L_9)
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C * L_10 = V_1;
|
|
NullCheck(L_10);
|
|
VirtActionInvoker0::Invoke(6 /* System.Void System.ComponentModel.License::Dispose() */, L_10);
|
|
V_1 = (License_t9011453B97942387364692C7DFAD2DEDB2160F8C *)NULL;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.LicenseManager_LicenseInteropHelper::GetLicInfo(System.RuntimeTypeHandle,System.Int32&,System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseInteropHelper_GetLicInfo_mED813B812774441E6F66D514D1A2088C00616903 (LicenseInteropHelper_t528682251600D62797521A8A3CCAD83BD1A47C0E * __this, RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ___rth0, int32_t* ___pRuntimeKeyAvail1, int32_t* ___pLicVerified2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseInteropHelper_GetLicInfo_mED813B812774441E6F66D514D1A2088C00616903_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Type_t * V_0 = NULL;
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C * V_1 = NULL;
|
|
String_t* V_2 = NULL;
|
|
{
|
|
int32_t* L_0 = ___pRuntimeKeyAvail1;
|
|
*((int32_t*)L_0) = (int32_t)0;
|
|
int32_t* L_1 = ___pLicVerified2;
|
|
*((int32_t*)L_1) = (int32_t)0;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = ___rth0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_2, /*hidden argument*/NULL);
|
|
V_0 = L_3;
|
|
DesigntimeLicenseContext_tFBEF4E72A1E0E7F03A01D35ADFEE86A23F848AA1 * L_4 = __this->get_helperContext_4();
|
|
if (L_4)
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
DesigntimeLicenseContext_tFBEF4E72A1E0E7F03A01D35ADFEE86A23F848AA1 * L_5 = (DesigntimeLicenseContext_tFBEF4E72A1E0E7F03A01D35ADFEE86A23F848AA1 *)il2cpp_codegen_object_new(DesigntimeLicenseContext_tFBEF4E72A1E0E7F03A01D35ADFEE86A23F848AA1_il2cpp_TypeInfo_var);
|
|
DesigntimeLicenseContext__ctor_mF2389DEF22E3FAE1E69F4F84F0CE6BD871AB0409(L_5, /*hidden argument*/NULL);
|
|
__this->set_helperContext_4(L_5);
|
|
goto IL_0032;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
DesigntimeLicenseContext_tFBEF4E72A1E0E7F03A01D35ADFEE86A23F848AA1 * L_6 = __this->get_helperContext_4();
|
|
NullCheck(L_6);
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_7 = L_6->get_savedLicenseKeys_0();
|
|
NullCheck(L_7);
|
|
VirtActionInvoker0::Invoke(24 /* System.Void System.Collections.Hashtable::Clear() */, L_7);
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
DesigntimeLicenseContext_tFBEF4E72A1E0E7F03A01D35ADFEE86A23F848AA1 * L_8 = __this->get_helperContext_4();
|
|
Type_t * L_9 = V_0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
bool L_10 = LicenseManager_ValidateInternalRecursive_m3840EF4F43E4A99AC93287DB3D77ACE0D6EAF56F(L_8, L_9, NULL, (bool)0, (License_t9011453B97942387364692C7DFAD2DEDB2160F8C **)(&V_1), (String_t**)(&V_2), /*hidden argument*/NULL);
|
|
if (!L_10)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
DesigntimeLicenseContext_tFBEF4E72A1E0E7F03A01D35ADFEE86A23F848AA1 * L_11 = __this->get_helperContext_4();
|
|
NullCheck(L_11);
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_12 = L_11->get_savedLicenseKeys_0();
|
|
Type_t * L_13 = V_0;
|
|
NullCheck(L_13);
|
|
String_t* L_14 = VirtFuncInvoker0< String_t* >::Invoke(31 /* System.String System.Type::get_AssemblyQualifiedName() */, L_13);
|
|
NullCheck(L_12);
|
|
bool L_15 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(26 /* System.Boolean System.Collections.Hashtable::Contains(System.Object) */, L_12, L_14);
|
|
if (!L_15)
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_16 = ___pRuntimeKeyAvail1;
|
|
*((int32_t*)L_16) = (int32_t)1;
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C * L_17 = V_1;
|
|
if (!L_17)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
License_t9011453B97942387364692C7DFAD2DEDB2160F8C * L_18 = V_1;
|
|
NullCheck(L_18);
|
|
VirtActionInvoker0::Invoke(6 /* System.Void System.ComponentModel.License::Dispose() */, L_18);
|
|
V_1 = (License_t9011453B97942387364692C7DFAD2DEDB2160F8C *)NULL;
|
|
int32_t* L_19 = ___pLicVerified2;
|
|
*((int32_t*)L_19) = (int32_t)1;
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.LicenseManager_LicenseInteropHelper::GetCurrentContextInfo(System.Int32&,System.IntPtr&,System.RuntimeTypeHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseInteropHelper_GetCurrentContextInfo_m3CD1E60533E0488EE769B83D257E18959068CEE1 (LicenseInteropHelper_t528682251600D62797521A8A3CCAD83BD1A47C0E * __this, int32_t* ___fDesignTime0, intptr_t* ___bstrKey1, RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ___rth2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseInteropHelper_GetCurrentContextInfo_m3CD1E60533E0488EE769B83D257E18959068CEE1_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(LicenseManager_t8D3254EFF06EA8AB79A3AE3E4193AC9239D5B3B1_il2cpp_TypeInfo_var);
|
|
LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * L_0 = LicenseManager_get_CurrentContext_m1D8C3D3DF397BF157E8679AF9E51A114BC4255A9(/*hidden argument*/NULL);
|
|
__this->set_savedLicenseContext_5(L_0);
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = ___rth2;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL);
|
|
__this->set_savedType_6(L_2);
|
|
LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * L_3 = __this->get_savedLicenseContext_5();
|
|
NullCheck(L_3);
|
|
int32_t L_4 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.ComponentModel.LicenseUsageMode System.ComponentModel.LicenseContext::get_UsageMode() */, L_3);
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_5 = ___fDesignTime0;
|
|
*((int32_t*)L_5) = (int32_t)1;
|
|
intptr_t* L_6 = ___bstrKey1;
|
|
intptr_t L_7 = IntPtr_op_Explicit_m62A5ED7757661C8DB6AEF4816829ED92A1929F91(0, /*hidden argument*/NULL);
|
|
*((intptr_t*)L_6) = (intptr_t)L_7;
|
|
return;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
int32_t* L_8 = ___fDesignTime0;
|
|
*((int32_t*)L_8) = (int32_t)0;
|
|
LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * L_9 = __this->get_savedLicenseContext_5();
|
|
Type_t * L_10 = __this->get_savedType_6();
|
|
NullCheck(L_9);
|
|
String_t* L_11 = VirtFuncInvoker2< String_t*, Type_t *, Assembly_t * >::Invoke(6 /* System.String System.ComponentModel.LicenseContext::GetSavedLicenseKey(System.Type,System.Reflection.Assembly) */, L_9, L_10, (Assembly_t *)NULL);
|
|
V_0 = L_11;
|
|
intptr_t* L_12 = ___bstrKey1;
|
|
String_t* L_13 = V_0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Marshal_tC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40_il2cpp_TypeInfo_var);
|
|
intptr_t L_14 = Marshal_StringToBSTR_mD81E2E08A2BCAA32B23C008F8DF017F8FB0D7BEC(L_13, /*hidden argument*/NULL);
|
|
*((intptr_t*)L_12) = (intptr_t)L_14;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.LicenseManager_LicenseInteropHelper::SaveKeyInCurrentContext(System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseInteropHelper_SaveKeyInCurrentContext_mFC9918F441A05CB1D8FF05C8CE3B47562E98E70A (LicenseInteropHelper_t528682251600D62797521A8A3CCAD83BD1A47C0E * __this, intptr_t ___bstrKey0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseInteropHelper_SaveKeyInCurrentContext_mFC9918F441A05CB1D8FF05C8CE3B47562E98E70A_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
intptr_t L_0 = ___bstrKey0;
|
|
intptr_t L_1 = IntPtr_op_Explicit_m62A5ED7757661C8DB6AEF4816829ED92A1929F91(0, /*hidden argument*/NULL);
|
|
bool L_2 = IntPtr_op_Inequality_mB4886A806009EA825EFCC60CD2A7F6EB8E273A61((intptr_t)L_0, (intptr_t)L_1, /*hidden argument*/NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
LicenseContext_tE7068766A5D105EA910974E3F08D0AF7534A806A * L_3 = __this->get_savedLicenseContext_5();
|
|
Type_t * L_4 = __this->get_savedType_6();
|
|
intptr_t L_5 = ___bstrKey0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Marshal_tC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40_il2cpp_TypeInfo_var);
|
|
String_t* L_6 = Marshal_PtrToStringBSTR_m08D1E116E42F1BD91691298B409D67B95149ABFF((intptr_t)L_5, /*hidden argument*/NULL);
|
|
NullCheck(L_3);
|
|
VirtActionInvoker2< Type_t *, String_t* >::Invoke(8 /* System.Void System.ComponentModel.LicenseContext::SetSavedLicenseKey(System.Type,System.String) */, L_3, L_4, L_6);
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.LicenseManager_LicenseInteropHelper::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseInteropHelper__ctor_mF904867D56E74E6D4B82C61F1CD9A54C345C3129 (LicenseInteropHelper_t528682251600D62797521A8A3CCAD83BD1A47C0E * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.LicenseManager_LicenseInteropHelper_CLRLicenseContext::.ctor(System.ComponentModel.LicenseUsageMode,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CLRLicenseContext__ctor_mDD7E6CA9FE763FC4ECAC93AD03E00A55B8BC251D (CLRLicenseContext_t16B4876D030AD05B4AEA1B65FDC49BC8E4BF64DC * __this, int32_t ___usageMode0, Type_t * ___type1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
LicenseContext__ctor_mAB5FAA290C59283C695E6D1E55E479BC7435AB51(__this, /*hidden argument*/NULL);
|
|
int32_t L_0 = ___usageMode0;
|
|
__this->set_usageMode_0(L_0);
|
|
Type_t * L_1 = ___type1;
|
|
__this->set_type_1(L_1);
|
|
return;
|
|
}
|
|
}
|
|
// System.ComponentModel.LicenseUsageMode System.ComponentModel.LicenseManager_LicenseInteropHelper_CLRLicenseContext::get_UsageMode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CLRLicenseContext_get_UsageMode_mCD2243594CEB3EA0BE8256A9FB76AC0534A9CC5A (CLRLicenseContext_t16B4876D030AD05B4AEA1B65FDC49BC8E4BF64DC * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->get_usageMode_0();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.LicenseManager_LicenseInteropHelper_CLRLicenseContext::GetSavedLicenseKey(System.Type,System.Reflection.Assembly)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CLRLicenseContext_GetSavedLicenseKey_mEFCE56DE7AAA765B34DE325258F207BEC178B38D (CLRLicenseContext_t16B4876D030AD05B4AEA1B65FDC49BC8E4BF64DC * __this, Type_t * ___type0, Assembly_t * ___resourceAssembly1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (CLRLicenseContext_GetSavedLicenseKey_mEFCE56DE7AAA765B34DE325258F207BEC178B38D_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Type_t * L_0 = ___type0;
|
|
Type_t * L_1 = __this->get_type_1();
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_2 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, L_1, /*hidden argument*/NULL);
|
|
if (L_2)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
return (String_t*)NULL;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
String_t* L_3 = __this->get_key_2();
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.LicenseManager_LicenseInteropHelper_CLRLicenseContext::SetSavedLicenseKey(System.Type,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CLRLicenseContext_SetSavedLicenseKey_m18B78B15A9F65BA2C88852E34F9036040AF40C1A (CLRLicenseContext_t16B4876D030AD05B4AEA1B65FDC49BC8E4BF64DC * __this, Type_t * ___type0, String_t* ___key1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (CLRLicenseContext_SetSavedLicenseKey_m18B78B15A9F65BA2C88852E34F9036040AF40C1A_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Type_t * L_0 = ___type0;
|
|
Type_t * L_1 = __this->get_type_1();
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_2 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, L_1, /*hidden argument*/NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_3 = ___key1;
|
|
__this->set_key_2(L_3);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.LicenseProvider::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseProvider__ctor_mC9C232F22F593BFFD6E17AFBDEE34F0248300C83 (LicenseProvider_t586048163F4CCA6D8C6592E696379137A18B0596 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.LicenseProviderAttribute::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseProviderAttribute__ctor_m9B1C8D37F4C2C493855AA51C6A25F7656CE65F11 (LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
LicenseProviderAttribute__ctor_m6ECFF85A8CD68AB79F7BEA5B959E4EAB0086A8AB(__this, (String_t*)NULL, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.LicenseProviderAttribute::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseProviderAttribute__ctor_m6ECFF85A8CD68AB79F7BEA5B959E4EAB0086A8AB (LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D * __this, String_t* ___typeName0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
String_t* L_0 = ___typeName0;
|
|
__this->set_licenseProviderName_2(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.LicenseProviderAttribute::.ctor(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseProviderAttribute__ctor_m6F822D30F9063944B2AA1DDC7AD556DD6C70C1AE (LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D * __this, Type_t * ___type0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
Type_t * L_0 = ___type0;
|
|
__this->set_licenseProviderType_1(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Type System.ComponentModel.LicenseProviderAttribute::get_LicenseProvider()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * LicenseProviderAttribute_get_LicenseProvider_mEECC153EF3491BFE42A37DE3A564BDF277D974DB (LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseProviderAttribute_get_LicenseProvider_mEECC153EF3491BFE42A37DE3A564BDF277D974DB_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Type_t * L_0 = __this->get_licenseProviderType_1();
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = __this->get_licenseProviderName_2();
|
|
if (!L_2)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_3 = __this->get_licenseProviderName_2();
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_4 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_mCF0A3B28889C9FFB9987C8D30C23DF0912E7C00C, L_3, "System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e");
|
|
__this->set_licenseProviderType_1(L_4);
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
Type_t * L_5 = __this->get_licenseProviderType_1();
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.LicenseProviderAttribute::get_TypeId()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * LicenseProviderAttribute_get_TypeId_mDCF023DEDA43A8A8953A4A9275964623A74D1F23 (LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseProviderAttribute_get_TypeId_mDCF023DEDA43A8A8953A4A9275964623A74D1F23_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
{
|
|
String_t* L_0 = __this->get_licenseProviderName_2();
|
|
V_0 = L_0;
|
|
String_t* L_1 = V_0;
|
|
if (L_1)
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_2 = __this->get_licenseProviderType_1();
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_3 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_2, (Type_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_3)
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_4 = __this->get_licenseProviderType_1();
|
|
NullCheck(L_4);
|
|
String_t* L_5 = VirtFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Type::get_FullName() */, L_4);
|
|
V_0 = L_5;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
Type_t * L_6 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL);
|
|
NullCheck(L_6);
|
|
String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Type::get_FullName() */, L_6);
|
|
String_t* L_8 = V_0;
|
|
String_t* L_9 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_7, L_8, /*hidden argument*/NULL);
|
|
return L_9;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.LicenseProviderAttribute::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LicenseProviderAttribute_Equals_m2CA489DAE25E1A117B66C7869946A016E9F96DA2 (LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseProviderAttribute_Equals_m2CA489DAE25E1A117B66C7869946A016E9F96DA2_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Type_t * V_0 = NULL;
|
|
{
|
|
RuntimeObject * L_0 = ___value0;
|
|
if (!((LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D *)IsInstSealed((RuntimeObject*)L_0, LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_1 = ___value0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_2 = ___value0;
|
|
NullCheck(((LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D *)CastclassSealed((RuntimeObject*)L_2, LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D_il2cpp_TypeInfo_var)));
|
|
Type_t * L_3 = LicenseProviderAttribute_get_LicenseProvider_mEECC153EF3491BFE42A37DE3A564BDF277D974DB(((LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D *)CastclassSealed((RuntimeObject*)L_2, LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
|
|
V_0 = L_3;
|
|
Type_t * L_4 = V_0;
|
|
Type_t * L_5 = LicenseProviderAttribute_get_LicenseProvider_mEECC153EF3491BFE42A37DE3A564BDF277D974DB(__this, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_6 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_4, L_5, /*hidden argument*/NULL);
|
|
if (!L_6)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
Type_t * L_7 = V_0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_8 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_7, (Type_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_8)
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_9 = V_0;
|
|
Type_t * L_10 = LicenseProviderAttribute_get_LicenseProvider_mEECC153EF3491BFE42A37DE3A564BDF277D974DB(__this, /*hidden argument*/NULL);
|
|
NullCheck(L_9);
|
|
bool L_11 = VirtFuncInvoker1< bool, Type_t * >::Invoke(142 /* System.Boolean System.Type::Equals(System.Type) */, L_9, L_10);
|
|
if (!L_11)
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.LicenseProviderAttribute::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LicenseProviderAttribute_GetHashCode_mA2A045B48EEA4C9C94D5C929E475C7CD1E5537E1 (LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B(__this, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.LicenseProviderAttribute::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LicenseProviderAttribute__cctor_mD9671C7B3D292F1CCA72E8BA0A10030D943FACDD (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LicenseProviderAttribute__cctor_mD9671C7B3D292F1CCA72E8BA0A10030D943FACDD_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D * L_0 = (LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D *)il2cpp_codegen_object_new(LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D_il2cpp_TypeInfo_var);
|
|
LicenseProviderAttribute__ctor_m9B1C8D37F4C2C493855AA51C6A25F7656CE65F11(L_0, /*hidden argument*/NULL);
|
|
((LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D_StaticFields*)il2cpp_codegen_static_fields_for(LicenseProviderAttribute_t27AE126583B6023AFF6F0F80AB0C4CFCA2FAF17D_il2cpp_TypeInfo_var))->set_Default_0(L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.ListBindableAttribute::.ctor(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListBindableAttribute__ctor_m2719FC29AE9A73EF9DEC0C2B27A48012F927FBB9 (ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 * __this, bool ___listBindable0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
bool L_0 = ___listBindable0;
|
|
__this->set_listBindable_3(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.ListBindableAttribute::.ctor(System.ComponentModel.BindableSupport)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListBindableAttribute__ctor_m17CD36FF6BC88622805E24627001224081F492CD (ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 * __this, int32_t ___flags0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
int32_t L_0 = ___flags0;
|
|
__this->set_listBindable_3((bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0));
|
|
int32_t L_1 = ___flags0;
|
|
__this->set_isDefault_4((bool)((((int32_t)L_1) == ((int32_t)2))? 1 : 0));
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.ListBindableAttribute::get_ListBindable()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ListBindableAttribute_get_ListBindable_m47F216E6B441C3BFA16C6A5AEAAB9F5B7A1C5968 (ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->get_listBindable_3();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.ListBindableAttribute::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ListBindableAttribute_Equals_m5BCF218B037B7A2FA7466CFEAFC4DDA566FED470 (ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ListBindableAttribute_Equals_m5BCF218B037B7A2FA7466CFEAFC4DDA566FED470_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 * V_0 = NULL;
|
|
{
|
|
RuntimeObject * L_0 = ___obj0;
|
|
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 *)__this))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
RuntimeObject * L_1 = ___obj0;
|
|
V_0 = ((ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 *)IsInstSealed((RuntimeObject*)L_1, ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2_il2cpp_TypeInfo_var));
|
|
ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 * L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 * L_3 = V_0;
|
|
NullCheck(L_3);
|
|
bool L_4 = ListBindableAttribute_get_ListBindable_m47F216E6B441C3BFA16C6A5AEAAB9F5B7A1C5968_inline(L_3, /*hidden argument*/NULL);
|
|
bool L_5 = __this->get_listBindable_3();
|
|
return (bool)((((int32_t)L_4) == ((int32_t)L_5))? 1 : 0);
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.ListBindableAttribute::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ListBindableAttribute_GetHashCode_mF5A373839D3113378AE5F91ECB7DBA17383D342A (ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B(__this, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.ListBindableAttribute::IsDefaultAttribute()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ListBindableAttribute_IsDefaultAttribute_m87AB6D5B90193B322552632B77B632ACF7359418 (ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ListBindableAttribute_IsDefaultAttribute_m87AB6D5B90193B322552632B77B632ACF7359418_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2_il2cpp_TypeInfo_var);
|
|
ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 * L_0 = ((ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2_StaticFields*)il2cpp_codegen_static_fields_for(ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2_il2cpp_TypeInfo_var))->get_Default_2();
|
|
bool L_1 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, __this, L_0);
|
|
if (L_1)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
bool L_2 = __this->get_isDefault_4();
|
|
return L_2;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.ListBindableAttribute::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListBindableAttribute__cctor_m3CBFCBB3795EF1D6F8E6F079B62B0A124F2B5596 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ListBindableAttribute__cctor_m3CBFCBB3795EF1D6F8E6F079B62B0A124F2B5596_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 * L_0 = (ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 *)il2cpp_codegen_object_new(ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2_il2cpp_TypeInfo_var);
|
|
ListBindableAttribute__ctor_m2719FC29AE9A73EF9DEC0C2B27A48012F927FBB9(L_0, (bool)1, /*hidden argument*/NULL);
|
|
((ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2_StaticFields*)il2cpp_codegen_static_fields_for(ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2_il2cpp_TypeInfo_var))->set_Yes_0(L_0);
|
|
ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 * L_1 = (ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 *)il2cpp_codegen_object_new(ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2_il2cpp_TypeInfo_var);
|
|
ListBindableAttribute__ctor_m2719FC29AE9A73EF9DEC0C2B27A48012F927FBB9(L_1, (bool)0, /*hidden argument*/NULL);
|
|
((ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2_StaticFields*)il2cpp_codegen_static_fields_for(ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2_il2cpp_TypeInfo_var))->set_No_1(L_1);
|
|
ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 * L_2 = ((ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2_StaticFields*)il2cpp_codegen_static_fields_for(ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2_il2cpp_TypeInfo_var))->get_Yes_0();
|
|
((ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2_StaticFields*)il2cpp_codegen_static_fields_for(ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2_il2cpp_TypeInfo_var))->set_Default_2(L_2);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.ListChangedEventArgs::.ctor(System.ComponentModel.ListChangedType,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListChangedEventArgs__ctor_mDD7F871F692CF84679A28F9A21AB003B16128D6D (ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84 * __this, int32_t ___listChangedType0, int32_t ___newIndex1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___listChangedType0;
|
|
int32_t L_1 = ___newIndex1;
|
|
ListChangedEventArgs__ctor_m4233B600D91A937AE548C66737944FDA0EA9901D(__this, L_0, L_1, (-1), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.ListChangedEventArgs::.ctor(System.ComponentModel.ListChangedType,System.Int32,System.ComponentModel.PropertyDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListChangedEventArgs__ctor_mCEC54CC1307603278A57A0A9442DD03DE1DD643F (ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84 * __this, int32_t ___listChangedType0, int32_t ___newIndex1, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___propDesc2, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___listChangedType0;
|
|
int32_t L_1 = ___newIndex1;
|
|
ListChangedEventArgs__ctor_mDD7F871F692CF84679A28F9A21AB003B16128D6D(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_2 = ___propDesc2;
|
|
__this->set_propDesc_4(L_2);
|
|
int32_t L_3 = ___newIndex1;
|
|
__this->set_oldIndex_3(L_3);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.ListChangedEventArgs::.ctor(System.ComponentModel.ListChangedType,System.ComponentModel.PropertyDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListChangedEventArgs__ctor_m937F90BECBDCD6A4EE477FD9EEEBFDCAF30718E3 (ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84 * __this, int32_t ___listChangedType0, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___propDesc1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ListChangedEventArgs__ctor_m937F90BECBDCD6A4EE477FD9EEEBFDCAF30718E3_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var);
|
|
EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7(__this, /*hidden argument*/NULL);
|
|
int32_t L_0 = ___listChangedType0;
|
|
__this->set_listChangedType_1(L_0);
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_1 = ___propDesc1;
|
|
__this->set_propDesc_4(L_1);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.ListChangedEventArgs::.ctor(System.ComponentModel.ListChangedType,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListChangedEventArgs__ctor_m4233B600D91A937AE548C66737944FDA0EA9901D (ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84 * __this, int32_t ___listChangedType0, int32_t ___newIndex1, int32_t ___oldIndex2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ListChangedEventArgs__ctor_m4233B600D91A937AE548C66737944FDA0EA9901D_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var);
|
|
EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7(__this, /*hidden argument*/NULL);
|
|
int32_t L_0 = ___listChangedType0;
|
|
__this->set_listChangedType_1(L_0);
|
|
int32_t L_1 = ___newIndex1;
|
|
__this->set_newIndex_2(L_1);
|
|
int32_t L_2 = ___oldIndex2;
|
|
__this->set_oldIndex_3(L_2);
|
|
return;
|
|
}
|
|
}
|
|
// System.ComponentModel.ListChangedType System.ComponentModel.ListChangedEventArgs::get_ListChangedType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ListChangedEventArgs_get_ListChangedType_m983182537D293A83EB0A551E06C18E7EE2ED6486 (ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->get_listChangedType_1();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.ListChangedEventArgs::get_NewIndex()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ListChangedEventArgs_get_NewIndex_mC0A3FFE8C2885CF7C1EF4AE9F9E812A3ABF0645F (ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->get_newIndex_2();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.ListChangedEventArgs::get_OldIndex()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ListChangedEventArgs_get_OldIndex_m2C3862A46578ADB0450DC55F2C0EAA40A91D7C44 (ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->get_oldIndex_3();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.ComponentModel.PropertyDescriptor System.ComponentModel.ListChangedEventArgs::get_PropertyDescriptor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ListChangedEventArgs_get_PropertyDescriptor_mDF95F5609ECF91EF6203E7C5319989979A5AFDBC (ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_0 = __this->get_propDesc_4();
|
|
return L_0;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.ListChangedEventHandler::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListChangedEventHandler__ctor_mB27E00105C0393B2DF2D1ED6A3091E93D5615948 (ListChangedEventHandler_t8081F1428D22013519901C16884C5ACE86A72A88 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
|
|
{
|
|
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
|
|
__this->set_method_3(___method1);
|
|
__this->set_m_target_2(___object0);
|
|
}
|
|
// System.Void System.ComponentModel.ListChangedEventHandler::Invoke(System.Object,System.ComponentModel.ListChangedEventArgs)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListChangedEventHandler_Invoke_mF57EB251520962479D0054B7F13131A80108E8C7 (ListChangedEventHandler_t8081F1428D22013519901C16884C5ACE86A72A88 * __this, RuntimeObject * ___sender0, ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84 * ___e1, const RuntimeMethod* method)
|
|
{
|
|
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
|
|
Delegate_t** delegatesToInvoke;
|
|
il2cpp_array_size_t length;
|
|
if (delegateArrayToInvoke != NULL)
|
|
{
|
|
length = delegateArrayToInvoke->max_length;
|
|
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
|
|
}
|
|
else
|
|
{
|
|
length = 1;
|
|
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
|
|
}
|
|
|
|
for (il2cpp_array_size_t i = 0; i < length; i++)
|
|
{
|
|
Delegate_t* currentDelegate = delegatesToInvoke[i];
|
|
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
|
|
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
|
|
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
|
|
if (!il2cpp_codegen_method_is_virtual(targetMethod))
|
|
{
|
|
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
|
|
}
|
|
bool ___methodIsStatic = MethodIsStatic(targetMethod);
|
|
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
|
|
if (___methodIsStatic)
|
|
{
|
|
if (___parameterCount == 2)
|
|
{
|
|
// open
|
|
typedef void (*FunctionPointerType) (RuntimeObject *, ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84 *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod);
|
|
}
|
|
else
|
|
{
|
|
// closed
|
|
typedef void (*FunctionPointerType) (void*, RuntimeObject *, ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84 *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___e1, targetMethod);
|
|
}
|
|
}
|
|
else if (___parameterCount != 2)
|
|
{
|
|
// open
|
|
if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
|
|
{
|
|
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
GenericInterfaceActionInvoker1< ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84 * >::Invoke(targetMethod, ___sender0, ___e1);
|
|
else
|
|
GenericVirtActionInvoker1< ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84 * >::Invoke(targetMethod, ___sender0, ___e1);
|
|
}
|
|
else
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
InterfaceActionInvoker1< ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___sender0, ___e1);
|
|
else
|
|
VirtActionInvoker1< ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___sender0, ___e1);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___e1) - 1), targetMethod);
|
|
}
|
|
typedef void (*FunctionPointerType) (RuntimeObject *, ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84 *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// closed
|
|
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
|
|
{
|
|
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
GenericInterfaceActionInvoker2< RuntimeObject *, ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84 * >::Invoke(targetMethod, targetThis, ___sender0, ___e1);
|
|
else
|
|
GenericVirtActionInvoker2< RuntimeObject *, ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84 * >::Invoke(targetMethod, targetThis, ___sender0, ___e1);
|
|
}
|
|
else
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
InterfaceActionInvoker2< RuntimeObject *, ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___sender0, ___e1);
|
|
else
|
|
VirtActionInvoker2< RuntimeObject *, ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___sender0, ___e1);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84 *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___sender0) - 1), ___e1, targetMethod);
|
|
}
|
|
if (targetThis == NULL)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject *, ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84 *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod);
|
|
}
|
|
else
|
|
{
|
|
typedef void (*FunctionPointerType) (void*, RuntimeObject *, ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84 *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___e1, targetMethod);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// System.IAsyncResult System.ComponentModel.ListChangedEventHandler::BeginInvoke(System.Object,System.ComponentModel.ListChangedEventArgs,System.AsyncCallback,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ListChangedEventHandler_BeginInvoke_mEC0EA3359455DEEC0EA407FA7BDD4C31E49B3C19 (ListChangedEventHandler_t8081F1428D22013519901C16884C5ACE86A72A88 * __this, RuntimeObject * ___sender0, ListChangedEventArgs_t59D7FF8643A44CDDC35C47DEF87AAE0FCA2B8F84 * ___e1, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
|
|
{
|
|
void *__d_args[3] = {0};
|
|
__d_args[0] = ___sender0;
|
|
__d_args[1] = ___e1;
|
|
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
|
|
}
|
|
// System.Void System.ComponentModel.ListChangedEventHandler::EndInvoke(System.IAsyncResult)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListChangedEventHandler_EndInvoke_m59AF132C5AD9386D7DB0311E67CA716FA99611C7 (ListChangedEventHandler_t8081F1428D22013519901C16884C5ACE86A72A88 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.ListSortDescription::.ctor(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListSortDescription__ctor_mE129AD8D0FB1306C02ABF97360D89E7BB2228873 (ListSortDescription_t70B03E24814E0475DA906045690FBE5010F28C75 * __this, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___property0, int32_t ___direction1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_0 = ___property0;
|
|
__this->set_property_0(L_0);
|
|
int32_t L_1 = ___direction1;
|
|
__this->set_sortDirection_1(L_1);
|
|
return;
|
|
}
|
|
}
|
|
// System.ComponentModel.PropertyDescriptor System.ComponentModel.ListSortDescription::get_PropertyDescriptor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ListSortDescription_get_PropertyDescriptor_mDACCC10998B2145BD3655D0D0DA928D7023C8A9F (ListSortDescription_t70B03E24814E0475DA906045690FBE5010F28C75 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_0 = __this->get_property_0();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.ListSortDescription::set_PropertyDescriptor(System.ComponentModel.PropertyDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListSortDescription_set_PropertyDescriptor_mA07B4DF6E60113EE8F09F6BECCDD2B428494B436 (ListSortDescription_t70B03E24814E0475DA906045690FBE5010F28C75 * __this, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___value0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_0 = ___value0;
|
|
__this->set_property_0(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.ComponentModel.ListSortDirection System.ComponentModel.ListSortDescription::get_SortDirection()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ListSortDescription_get_SortDirection_mBC9E98882005EC97A1BE29F5736BD31B47E68F96 (ListSortDescription_t70B03E24814E0475DA906045690FBE5010F28C75 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->get_sortDirection_1();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.ListSortDescription::set_SortDirection(System.ComponentModel.ListSortDirection)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListSortDescription_set_SortDirection_m564664D6168E0557F2F180501C1CEE4C7EB71AA7 (ListSortDescription_t70B03E24814E0475DA906045690FBE5010F28C75 * __this, int32_t ___value0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___value0;
|
|
__this->set_sortDirection_1(L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.ListSortDescriptionCollection::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListSortDescriptionCollection__ctor_m054FA84FA836E18693586F54FA42411E649CF775 (ListSortDescriptionCollection_t861BA7E63FFEBDC5C46C048FEA7B60EC580964CB * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ListSortDescriptionCollection__ctor_m054FA84FA836E18693586F54FA42411E649CF775_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
|
|
ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6(L_0, /*hidden argument*/NULL);
|
|
__this->set_sorts_0(L_0);
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.ListSortDescriptionCollection::.ctor(System.ComponentModel.ListSortDescription[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListSortDescriptionCollection__ctor_m8FCD3F74937A403BF6DE3BFAAA3B5A33588F40EA (ListSortDescriptionCollection_t861BA7E63FFEBDC5C46C048FEA7B60EC580964CB * __this, ListSortDescriptionU5BU5D_t852C81EC628A962BC76EF59B86ADF79FA8C00A76* ___sorts0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ListSortDescriptionCollection__ctor_m8FCD3F74937A403BF6DE3BFAAA3B5A33588F40EA_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
|
|
ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6(L_0, /*hidden argument*/NULL);
|
|
__this->set_sorts_0(L_0);
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
ListSortDescriptionU5BU5D_t852C81EC628A962BC76EF59B86ADF79FA8C00A76* L_1 = ___sorts0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
V_0 = 0;
|
|
goto IL_002b;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_2 = __this->get_sorts_0();
|
|
ListSortDescriptionU5BU5D_t852C81EC628A962BC76EF59B86ADF79FA8C00A76* L_3 = ___sorts0;
|
|
int32_t L_4 = V_0;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
ListSortDescription_t70B03E24814E0475DA906045690FBE5010F28C75 * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
NullCheck(L_2);
|
|
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_2, L_6);
|
|
int32_t L_7 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1));
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
int32_t L_8 = V_0;
|
|
ListSortDescriptionU5BU5D_t852C81EC628A962BC76EF59B86ADF79FA8C00A76* L_9 = ___sorts0;
|
|
NullCheck(L_9);
|
|
if ((((int32_t)L_8) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.ComponentModel.ListSortDescription System.ComponentModel.ListSortDescriptionCollection::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ListSortDescription_t70B03E24814E0475DA906045690FBE5010F28C75 * ListSortDescriptionCollection_get_Item_m8E2FD41D5BF275189626745662B8F39BCCA4FB3C (ListSortDescriptionCollection_t861BA7E63FFEBDC5C46C048FEA7B60EC580964CB * __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ListSortDescriptionCollection_get_Item_m8E2FD41D5BF275189626745662B8F39BCCA4FB3C_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = __this->get_sorts_0();
|
|
int32_t L_1 = ___index0;
|
|
NullCheck(L_0);
|
|
RuntimeObject * L_2 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1);
|
|
return ((ListSortDescription_t70B03E24814E0475DA906045690FBE5010F28C75 *)CastclassClass((RuntimeObject*)L_2, ListSortDescription_t70B03E24814E0475DA906045690FBE5010F28C75_il2cpp_TypeInfo_var));
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.ListSortDescriptionCollection::set_Item(System.Int32,System.ComponentModel.ListSortDescription)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListSortDescriptionCollection_set_Item_m4DF56ECAD7A18A0636EBA380E955F87E9F18B87F (ListSortDescriptionCollection_t861BA7E63FFEBDC5C46C048FEA7B60EC580964CB * __this, int32_t ___index0, ListSortDescription_t70B03E24814E0475DA906045690FBE5010F28C75 * ___value1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ListSortDescriptionCollection_set_Item_m4DF56ECAD7A18A0636EBA380E955F87E9F18B87F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteral0710CDFE058770A2C63BCABE43EA10B4F09C9E7D, /*hidden argument*/NULL);
|
|
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
|
|
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, L_0, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ListSortDescriptionCollection_set_Item_m4DF56ECAD7A18A0636EBA380E955F87E9F18B87F_RuntimeMethod_var);
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.ListSortDescriptionCollection::System.Collections.IList.get_IsFixedSize()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ListSortDescriptionCollection_System_Collections_IList_get_IsFixedSize_mB014E51241D0623617A115CD0E261A8840844258 (ListSortDescriptionCollection_t861BA7E63FFEBDC5C46C048FEA7B60EC580964CB * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.ListSortDescriptionCollection::System.Collections.IList.get_IsReadOnly()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ListSortDescriptionCollection_System_Collections_IList_get_IsReadOnly_mC7AF7C69964A3C4F6CAD9FC69CFE508A103DDF86 (ListSortDescriptionCollection_t861BA7E63FFEBDC5C46C048FEA7B60EC580964CB * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.ListSortDescriptionCollection::System.Collections.IList.get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ListSortDescriptionCollection_System_Collections_IList_get_Item_mA80965A165D5508FD9A4C44AF7BB8129C279B606 (ListSortDescriptionCollection_t861BA7E63FFEBDC5C46C048FEA7B60EC580964CB * __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___index0;
|
|
ListSortDescription_t70B03E24814E0475DA906045690FBE5010F28C75 * L_1 = ListSortDescriptionCollection_get_Item_m8E2FD41D5BF275189626745662B8F39BCCA4FB3C(__this, L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.ListSortDescriptionCollection::System.Collections.IList.set_Item(System.Int32,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListSortDescriptionCollection_System_Collections_IList_set_Item_mF9394B6E2F7EE2F28AAB931F4A0B014317745468 (ListSortDescriptionCollection_t861BA7E63FFEBDC5C46C048FEA7B60EC580964CB * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ListSortDescriptionCollection_System_Collections_IList_set_Item_mF9394B6E2F7EE2F28AAB931F4A0B014317745468_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteral0710CDFE058770A2C63BCABE43EA10B4F09C9E7D, /*hidden argument*/NULL);
|
|
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
|
|
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, L_0, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ListSortDescriptionCollection_System_Collections_IList_set_Item_mF9394B6E2F7EE2F28AAB931F4A0B014317745468_RuntimeMethod_var);
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.ListSortDescriptionCollection::System.Collections.IList.Add(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ListSortDescriptionCollection_System_Collections_IList_Add_m3A38DB83F163633AB9D1F6BF3FAB06A24C42445F (ListSortDescriptionCollection_t861BA7E63FFEBDC5C46C048FEA7B60EC580964CB * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ListSortDescriptionCollection_System_Collections_IList_Add_m3A38DB83F163633AB9D1F6BF3FAB06A24C42445F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteral0710CDFE058770A2C63BCABE43EA10B4F09C9E7D, /*hidden argument*/NULL);
|
|
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
|
|
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, L_0, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ListSortDescriptionCollection_System_Collections_IList_Add_m3A38DB83F163633AB9D1F6BF3FAB06A24C42445F_RuntimeMethod_var);
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.ListSortDescriptionCollection::System.Collections.IList.Clear()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListSortDescriptionCollection_System_Collections_IList_Clear_mCECF86A6A9E3D09E5BE2E8ABDA332C3DE7EB8CB8 (ListSortDescriptionCollection_t861BA7E63FFEBDC5C46C048FEA7B60EC580964CB * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ListSortDescriptionCollection_System_Collections_IList_Clear_mCECF86A6A9E3D09E5BE2E8ABDA332C3DE7EB8CB8_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteral0710CDFE058770A2C63BCABE43EA10B4F09C9E7D, /*hidden argument*/NULL);
|
|
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
|
|
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, L_0, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ListSortDescriptionCollection_System_Collections_IList_Clear_mCECF86A6A9E3D09E5BE2E8ABDA332C3DE7EB8CB8_RuntimeMethod_var);
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.ListSortDescriptionCollection::Contains(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ListSortDescriptionCollection_Contains_mDEBBB44C266E23CD39051C9477F3FECBC706F6D6 (ListSortDescriptionCollection_t861BA7E63FFEBDC5C46C048FEA7B60EC580964CB * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ListSortDescriptionCollection_Contains_mDEBBB44C266E23CD39051C9477F3FECBC706F6D6_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = __this->get_sorts_0();
|
|
RuntimeObject * L_1 = ___value0;
|
|
NullCheck(L_0);
|
|
bool L_2 = InterfaceFuncInvoker1< bool, RuntimeObject * >::Invoke(3 /* System.Boolean System.Collections.IList::Contains(System.Object) */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, L_0, L_1);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.ListSortDescriptionCollection::IndexOf(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ListSortDescriptionCollection_IndexOf_m99E8A75F30A5E7A660A79B534CC0F4414EE62B73 (ListSortDescriptionCollection_t861BA7E63FFEBDC5C46C048FEA7B60EC580964CB * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ListSortDescriptionCollection_IndexOf_m99E8A75F30A5E7A660A79B534CC0F4414EE62B73_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = __this->get_sorts_0();
|
|
RuntimeObject * L_1 = ___value0;
|
|
NullCheck(L_0);
|
|
int32_t L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(7 /* System.Int32 System.Collections.IList::IndexOf(System.Object) */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, L_0, L_1);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.ListSortDescriptionCollection::System.Collections.IList.Insert(System.Int32,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListSortDescriptionCollection_System_Collections_IList_Insert_m7132AB7426E2F4446FA8606CA6E40BBE08D39CE7 (ListSortDescriptionCollection_t861BA7E63FFEBDC5C46C048FEA7B60EC580964CB * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ListSortDescriptionCollection_System_Collections_IList_Insert_m7132AB7426E2F4446FA8606CA6E40BBE08D39CE7_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteral0710CDFE058770A2C63BCABE43EA10B4F09C9E7D, /*hidden argument*/NULL);
|
|
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
|
|
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, L_0, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ListSortDescriptionCollection_System_Collections_IList_Insert_m7132AB7426E2F4446FA8606CA6E40BBE08D39CE7_RuntimeMethod_var);
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.ListSortDescriptionCollection::System.Collections.IList.Remove(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListSortDescriptionCollection_System_Collections_IList_Remove_m635C07E10C4A4F9006703807237CFF5168842128 (ListSortDescriptionCollection_t861BA7E63FFEBDC5C46C048FEA7B60EC580964CB * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ListSortDescriptionCollection_System_Collections_IList_Remove_m635C07E10C4A4F9006703807237CFF5168842128_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteral0710CDFE058770A2C63BCABE43EA10B4F09C9E7D, /*hidden argument*/NULL);
|
|
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
|
|
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, L_0, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ListSortDescriptionCollection_System_Collections_IList_Remove_m635C07E10C4A4F9006703807237CFF5168842128_RuntimeMethod_var);
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.ListSortDescriptionCollection::System.Collections.IList.RemoveAt(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListSortDescriptionCollection_System_Collections_IList_RemoveAt_mFAA5828F1061D2ADD5A7B8778F3B1EB9ECDC28EF (ListSortDescriptionCollection_t861BA7E63FFEBDC5C46C048FEA7B60EC580964CB * __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ListSortDescriptionCollection_System_Collections_IList_RemoveAt_mFAA5828F1061D2ADD5A7B8778F3B1EB9ECDC28EF_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteral0710CDFE058770A2C63BCABE43EA10B4F09C9E7D, /*hidden argument*/NULL);
|
|
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
|
|
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, L_0, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ListSortDescriptionCollection_System_Collections_IList_RemoveAt_mFAA5828F1061D2ADD5A7B8778F3B1EB9ECDC28EF_RuntimeMethod_var);
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.ListSortDescriptionCollection::get_Count()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ListSortDescriptionCollection_get_Count_mEEA5B4C3CC8DE153A0EB83CC061CB820C2F5A398 (ListSortDescriptionCollection_t861BA7E63FFEBDC5C46C048FEA7B60EC580964CB * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = __this->get_sorts_0();
|
|
NullCheck(L_0);
|
|
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.ListSortDescriptionCollection::System.Collections.ICollection.get_IsSynchronized()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ListSortDescriptionCollection_System_Collections_ICollection_get_IsSynchronized_m8A3CB0DB83B294ABF8CA2BAF22E268E5806436C9 (ListSortDescriptionCollection_t861BA7E63FFEBDC5C46C048FEA7B60EC580964CB * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.ListSortDescriptionCollection::System.Collections.ICollection.get_SyncRoot()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ListSortDescriptionCollection_System_Collections_ICollection_get_SyncRoot_m585332E0F88D95425D958671015AACDFC768C7B2 (ListSortDescriptionCollection_t861BA7E63FFEBDC5C46C048FEA7B60EC580964CB * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return __this;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.ListSortDescriptionCollection::CopyTo(System.Array,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListSortDescriptionCollection_CopyTo_m44F0C2EC659B7F913950C884A620ACEEF7BC855D (ListSortDescriptionCollection_t861BA7E63FFEBDC5C46C048FEA7B60EC580964CB * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = __this->get_sorts_0();
|
|
RuntimeArray * L_1 = ___array0;
|
|
int32_t L_2 = ___index1;
|
|
NullCheck(L_0);
|
|
VirtActionInvoker2< RuntimeArray *, int32_t >::Invoke(35 /* System.Void System.Collections.ArrayList::CopyTo(System.Array,System.Int32) */, L_0, L_1, L_2);
|
|
return;
|
|
}
|
|
}
|
|
// System.Collections.IEnumerator System.ComponentModel.ListSortDescriptionCollection::System.Collections.IEnumerable.GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ListSortDescriptionCollection_System_Collections_IEnumerable_GetEnumerator_m45E6320A7C850F7ABBB0E713091AEB237F1A8320 (ListSortDescriptionCollection_t861BA7E63FFEBDC5C46C048FEA7B60EC580964CB * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = __this->get_sorts_0();
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1 = VirtFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.LocalizableAttribute::.ctor(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalizableAttribute__ctor_mFAE21275AE19C981F760A0FBE50589E72E07AA2C (LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F * __this, bool ___isLocalizable0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
bool L_0 = ___isLocalizable0;
|
|
__this->set_isLocalizable_0(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.LocalizableAttribute::get_IsLocalizable()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LocalizableAttribute_get_IsLocalizable_m2160A758D5CD3DD22A533EDDA3CD6C6164047FDB (LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->get_isLocalizable_0();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.LocalizableAttribute::IsDefaultAttribute()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LocalizableAttribute_IsDefaultAttribute_m069BA41473A724A2536454EC0A88EC7B94D0EC80 (LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LocalizableAttribute_IsDefaultAttribute_m069BA41473A724A2536454EC0A88EC7B94D0EC80_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
bool L_0 = LocalizableAttribute_get_IsLocalizable_m2160A758D5CD3DD22A533EDDA3CD6C6164047FDB_inline(__this, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F_il2cpp_TypeInfo_var);
|
|
LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F * L_1 = ((LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F_StaticFields*)il2cpp_codegen_static_fields_for(LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F_il2cpp_TypeInfo_var))->get_Default_3();
|
|
NullCheck(L_1);
|
|
bool L_2 = LocalizableAttribute_get_IsLocalizable_m2160A758D5CD3DD22A533EDDA3CD6C6164047FDB_inline(L_1, /*hidden argument*/NULL);
|
|
return (bool)((((int32_t)L_0) == ((int32_t)L_2))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.LocalizableAttribute::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LocalizableAttribute_Equals_m88AE95F8FC963DCCF52981746093A880C460D9FB (LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LocalizableAttribute_Equals_m88AE95F8FC963DCCF52981746093A880C460D9FB_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F * V_0 = NULL;
|
|
{
|
|
RuntimeObject * L_0 = ___obj0;
|
|
V_0 = ((LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F *)IsInstSealed((RuntimeObject*)L_0, LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F_il2cpp_TypeInfo_var));
|
|
LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F * L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F * L_2 = V_0;
|
|
NullCheck(L_2);
|
|
bool L_3 = LocalizableAttribute_get_IsLocalizable_m2160A758D5CD3DD22A533EDDA3CD6C6164047FDB_inline(L_2, /*hidden argument*/NULL);
|
|
bool L_4 = __this->get_isLocalizable_0();
|
|
return (bool)((((int32_t)L_3) == ((int32_t)L_4))? 1 : 0);
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.LocalizableAttribute::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LocalizableAttribute_GetHashCode_m58AA062448D343EF4DA3AEAC704B1DC44A8289D1 (LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B(__this, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.LocalizableAttribute::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalizableAttribute__cctor_m61BD76F2BC71406AB5DF5EF927D43532B6408361 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LocalizableAttribute__cctor_m61BD76F2BC71406AB5DF5EF927D43532B6408361_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F * L_0 = (LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F *)il2cpp_codegen_object_new(LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F_il2cpp_TypeInfo_var);
|
|
LocalizableAttribute__ctor_mFAE21275AE19C981F760A0FBE50589E72E07AA2C(L_0, (bool)1, /*hidden argument*/NULL);
|
|
((LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F_StaticFields*)il2cpp_codegen_static_fields_for(LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F_il2cpp_TypeInfo_var))->set_Yes_1(L_0);
|
|
LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F * L_1 = (LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F *)il2cpp_codegen_object_new(LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F_il2cpp_TypeInfo_var);
|
|
LocalizableAttribute__ctor_mFAE21275AE19C981F760A0FBE50589E72E07AA2C(L_1, (bool)0, /*hidden argument*/NULL);
|
|
((LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F_StaticFields*)il2cpp_codegen_static_fields_for(LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F_il2cpp_TypeInfo_var))->set_No_2(L_1);
|
|
LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F * L_2 = ((LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F_StaticFields*)il2cpp_codegen_static_fields_for(LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F_il2cpp_TypeInfo_var))->get_No_2();
|
|
((LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F_StaticFields*)il2cpp_codegen_static_fields_for(LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F_il2cpp_TypeInfo_var))->set_Default_3(L_2);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.LookupBindingPropertiesAttribute::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LookupBindingPropertiesAttribute__ctor_mC0896EE859FD5BC72A5D4CF2F7ACD13F052EB07F (LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
__this->set_dataSource_0((String_t*)NULL);
|
|
__this->set_displayMember_1((String_t*)NULL);
|
|
__this->set_valueMember_2((String_t*)NULL);
|
|
__this->set_lookupMember_3((String_t*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.LookupBindingPropertiesAttribute::.ctor(System.String,System.String,System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LookupBindingPropertiesAttribute__ctor_m1D339B6F53A7CCD1C92395904C8CC8684863653B (LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B * __this, String_t* ___dataSource0, String_t* ___displayMember1, String_t* ___valueMember2, String_t* ___lookupMember3, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
String_t* L_0 = ___dataSource0;
|
|
__this->set_dataSource_0(L_0);
|
|
String_t* L_1 = ___displayMember1;
|
|
__this->set_displayMember_1(L_1);
|
|
String_t* L_2 = ___valueMember2;
|
|
__this->set_valueMember_2(L_2);
|
|
String_t* L_3 = ___lookupMember3;
|
|
__this->set_lookupMember_3(L_3);
|
|
return;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.LookupBindingPropertiesAttribute::get_DataSource()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* LookupBindingPropertiesAttribute_get_DataSource_mF21E618E0602FAB1E8976524DE0ACFDE66CFD589 (LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_dataSource_0();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.LookupBindingPropertiesAttribute::get_DisplayMember()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* LookupBindingPropertiesAttribute_get_DisplayMember_m56932660BE3BD5225F4C8832E699B038D5435B16 (LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_displayMember_1();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.LookupBindingPropertiesAttribute::get_ValueMember()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* LookupBindingPropertiesAttribute_get_ValueMember_m41A338240EDAD2E86F0621026050A462C74E5D8A (LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_valueMember_2();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.LookupBindingPropertiesAttribute::get_LookupMember()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* LookupBindingPropertiesAttribute_get_LookupMember_m7CAC51051655BDE40F75D5C0D8E1E2C081A6033B (LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_lookupMember_3();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.LookupBindingPropertiesAttribute::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LookupBindingPropertiesAttribute_Equals_mCF641B3E92EFF104509598AEABE1DDB3B3C29D46 (LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LookupBindingPropertiesAttribute_Equals_mCF641B3E92EFF104509598AEABE1DDB3B3C29D46_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B * V_0 = NULL;
|
|
{
|
|
RuntimeObject * L_0 = ___obj0;
|
|
V_0 = ((LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B *)IsInstSealed((RuntimeObject*)L_0, LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B_il2cpp_TypeInfo_var));
|
|
LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B * L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B * L_2 = V_0;
|
|
NullCheck(L_2);
|
|
String_t* L_3 = LookupBindingPropertiesAttribute_get_DataSource_mF21E618E0602FAB1E8976524DE0ACFDE66CFD589_inline(L_2, /*hidden argument*/NULL);
|
|
String_t* L_4 = __this->get_dataSource_0();
|
|
bool L_5 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_3, L_4, /*hidden argument*/NULL);
|
|
if (!L_5)
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B * L_6 = V_0;
|
|
NullCheck(L_6);
|
|
String_t* L_7 = L_6->get_displayMember_1();
|
|
String_t* L_8 = __this->get_displayMember_1();
|
|
bool L_9 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_7, L_8, /*hidden argument*/NULL);
|
|
if (!L_9)
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B * L_10 = V_0;
|
|
NullCheck(L_10);
|
|
String_t* L_11 = L_10->get_valueMember_2();
|
|
String_t* L_12 = __this->get_valueMember_2();
|
|
bool L_13 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_11, L_12, /*hidden argument*/NULL);
|
|
if (!L_13)
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B * L_14 = V_0;
|
|
NullCheck(L_14);
|
|
String_t* L_15 = L_14->get_lookupMember_3();
|
|
String_t* L_16 = __this->get_lookupMember_3();
|
|
bool L_17 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_15, L_16, /*hidden argument*/NULL);
|
|
return L_17;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.LookupBindingPropertiesAttribute::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LookupBindingPropertiesAttribute_GetHashCode_mB640C0D6875C096AE5E77D2BA989F7A0EE510FF7 (LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B(__this, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.LookupBindingPropertiesAttribute::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LookupBindingPropertiesAttribute__cctor_mB4BD6BFB9C81EF436C0065BB5002D3B5A01CB0F1 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (LookupBindingPropertiesAttribute__cctor_mB4BD6BFB9C81EF436C0065BB5002D3B5A01CB0F1_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B * L_0 = (LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B *)il2cpp_codegen_object_new(LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B_il2cpp_TypeInfo_var);
|
|
LookupBindingPropertiesAttribute__ctor_mC0896EE859FD5BC72A5D4CF2F7ACD13F052EB07F(L_0, /*hidden argument*/NULL);
|
|
((LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B_StaticFields*)il2cpp_codegen_static_fields_for(LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B_il2cpp_TypeInfo_var))->set_Default_4(L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.MarshalByValueComponent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MarshalByValueComponent__ctor_mA51293933AEA467A6B0BCD9BBD973C268D927B46 (MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MarshalByValueComponent::Finalize()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MarshalByValueComponent_Finalize_m9D602B8D4D8F8F8F122413E097094FD0CD4CED59 (MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B * __this, const RuntimeMethod* method)
|
|
{
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
|
|
IL_0000:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
VirtActionInvoker1< bool >::Invoke(12 /* System.Void System.ComponentModel.MarshalByValueComponent::Dispose(System.Boolean) */, __this, (bool)0);
|
|
IL2CPP_LEAVE(0x10, FINALLY_0009);
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__last_unhandled_exception = (Exception_t *)e.ex;
|
|
goto FINALLY_0009;
|
|
}
|
|
|
|
FINALLY_0009:
|
|
{ // begin finally (depth: 1)
|
|
Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380(__this, /*hidden argument*/NULL);
|
|
IL2CPP_END_FINALLY(9)
|
|
} // end finally (depth: 1)
|
|
IL2CPP_CLEANUP(9)
|
|
{
|
|
IL2CPP_JUMP_TBL(0x10, IL_0010)
|
|
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MarshalByValueComponent::add_Disposed(System.EventHandler)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MarshalByValueComponent_add_Disposed_mE153B11AE1F1F4E8E19C354556C31B1267D2D7C0 (MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B * __this, EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MarshalByValueComponent_add_Disposed_mE153B11AE1F1F4E8E19C354556C31B1267D2D7C0_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 * L_0 = MarshalByValueComponent_get_Events_mA41018766AC3C752652DDD522170E0F00A2FFFF9(__this, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B_il2cpp_TypeInfo_var);
|
|
RuntimeObject * L_1 = ((MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B_StaticFields*)il2cpp_codegen_static_fields_for(MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B_il2cpp_TypeInfo_var))->get_EventDisposed_0();
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_2 = ___value0;
|
|
NullCheck(L_0);
|
|
EventHandlerList_AddHandler_m7C93C7AF6FD41E4C41E444CCEC0E46C9F3F01A09(L_0, L_1, L_2, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MarshalByValueComponent::remove_Disposed(System.EventHandler)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MarshalByValueComponent_remove_Disposed_m4D6BA678CBC50EFC771A3E03AE11C0124F8A124A (MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B * __this, EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MarshalByValueComponent_remove_Disposed_m4D6BA678CBC50EFC771A3E03AE11C0124F8A124A_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 * L_0 = MarshalByValueComponent_get_Events_mA41018766AC3C752652DDD522170E0F00A2FFFF9(__this, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B_il2cpp_TypeInfo_var);
|
|
RuntimeObject * L_1 = ((MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B_StaticFields*)il2cpp_codegen_static_fields_for(MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B_il2cpp_TypeInfo_var))->get_EventDisposed_0();
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_2 = ___value0;
|
|
NullCheck(L_0);
|
|
EventHandlerList_RemoveHandler_mC125E76596116E967804D771CC7551ED5E700718(L_0, L_1, L_2, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.ComponentModel.EventHandlerList System.ComponentModel.MarshalByValueComponent::get_Events()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 * MarshalByValueComponent_get_Events_mA41018766AC3C752652DDD522170E0F00A2FFFF9 (MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MarshalByValueComponent_get_Events_mA41018766AC3C752652DDD522170E0F00A2FFFF9_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 * L_0 = __this->get_events_2();
|
|
if (L_0)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 * L_1 = (EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 *)il2cpp_codegen_object_new(EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4_il2cpp_TypeInfo_var);
|
|
EventHandlerList__ctor_mE953BDF2C360A0ABCD90892E5F48D26762358CC8(L_1, /*hidden argument*/NULL);
|
|
__this->set_events_2(L_1);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 * L_2 = __this->get_events_2();
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.ComponentModel.ISite System.ComponentModel.MarshalByValueComponent::get_Site()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MarshalByValueComponent_get_Site_mB244C6704FCB6C89038E54D9D90B156C06A0BA97 (MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->get_site_1();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MarshalByValueComponent::set_Site(System.ComponentModel.ISite)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MarshalByValueComponent_set_Site_m2136F9D86F80B8F0C36A0FD180FF7F17F6FAC4B3 (MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___value0;
|
|
__this->set_site_1(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MarshalByValueComponent::Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MarshalByValueComponent_Dispose_m4387E36F301775EDEA83BF2AB25E3EC5D037B6E3 (MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MarshalByValueComponent_Dispose_m4387E36F301775EDEA83BF2AB25E3EC5D037B6E3_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
VirtActionInvoker1< bool >::Invoke(12 /* System.Void System.ComponentModel.MarshalByValueComponent::Dispose(System.Boolean) */, __this, (bool)1);
|
|
IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var);
|
|
GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MarshalByValueComponent::Dispose(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MarshalByValueComponent_Dispose_mA9ACB1CEC7384D82584354080E87A75112017AB5 (MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B * __this, bool ___disposing0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MarshalByValueComponent_Dispose_mA9ACB1CEC7384D82584354080E87A75112017AB5_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B * V_0 = NULL;
|
|
bool V_1 = false;
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * V_2 = NULL;
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
{
|
|
bool L_0 = ___disposing0;
|
|
if (!L_0)
|
|
{
|
|
goto IL_006e;
|
|
}
|
|
}
|
|
{
|
|
V_0 = __this;
|
|
V_1 = (bool)0;
|
|
}
|
|
|
|
IL_0007:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
{
|
|
MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B * L_1 = V_0;
|
|
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_1, (bool*)(&V_1), /*hidden argument*/NULL);
|
|
RuntimeObject* L_2 = __this->get_site_1();
|
|
if (!L_2)
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
RuntimeObject* L_3 = __this->get_site_1();
|
|
NullCheck(L_3);
|
|
RuntimeObject* L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.ComponentModel.IContainer System.ComponentModel.ISite::get_Container() */, ISite_t6804B48BC23ABB5F4141903F878589BCEF6097A2_il2cpp_TypeInfo_var, L_3);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
RuntimeObject* L_5 = __this->get_site_1();
|
|
NullCheck(L_5);
|
|
RuntimeObject* L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.ComponentModel.IContainer System.ComponentModel.ISite::get_Container() */, ISite_t6804B48BC23ABB5F4141903F878589BCEF6097A2_il2cpp_TypeInfo_var, L_5);
|
|
NullCheck(L_6);
|
|
InterfaceActionInvoker1< RuntimeObject* >::Invoke(3 /* System.Void System.ComponentModel.IContainer::Remove(System.ComponentModel.IComponent) */, IContainer_tA0D1065AEB21197BA9E1F139F6501B8ADCB66077_il2cpp_TypeInfo_var, L_6, __this);
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 * L_7 = __this->get_events_2();
|
|
if (!L_7)
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
EventHandlerList_tFE9EF79E85419EBB2C206CF475E29A9960699BE4 * L_8 = __this->get_events_2();
|
|
IL2CPP_RUNTIME_CLASS_INIT(MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B_il2cpp_TypeInfo_var);
|
|
RuntimeObject * L_9 = ((MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B_StaticFields*)il2cpp_codegen_static_fields_for(MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B_il2cpp_TypeInfo_var))->get_EventDisposed_0();
|
|
NullCheck(L_8);
|
|
Delegate_t * L_10 = EventHandlerList_get_Item_mFB7DC8CD40DFDA76E9732CB48CE774DDEC373C42(L_8, L_9, /*hidden argument*/NULL);
|
|
V_2 = ((EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C *)CastclassSealed((RuntimeObject*)L_10, EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C_il2cpp_TypeInfo_var));
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_11 = V_2;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_12 = V_2;
|
|
IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var);
|
|
EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * L_13 = ((EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_StaticFields*)il2cpp_codegen_static_fields_for(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var))->get_Empty_0();
|
|
NullCheck(L_12);
|
|
EventHandler_Invoke_mD23D5EFEA562A05C5EACDD3E91EEDD2BF6C22800(L_12, __this, L_13, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
IL2CPP_LEAVE(0x6E, FINALLY_0064);
|
|
}
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__last_unhandled_exception = (Exception_t *)e.ex;
|
|
goto FINALLY_0064;
|
|
}
|
|
|
|
FINALLY_0064:
|
|
{ // begin finally (depth: 1)
|
|
{
|
|
bool L_14 = V_1;
|
|
if (!L_14)
|
|
{
|
|
goto IL_006d;
|
|
}
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B * L_15 = V_0;
|
|
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_15, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
IL2CPP_END_FINALLY(100)
|
|
}
|
|
} // end finally (depth: 1)
|
|
IL2CPP_CLEANUP(100)
|
|
{
|
|
IL2CPP_JUMP_TBL(0x6E, IL_006e)
|
|
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
|
|
}
|
|
|
|
IL_006e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.ComponentModel.IContainer System.ComponentModel.MarshalByValueComponent::get_Container()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MarshalByValueComponent_get_Container_m68A2BF43881A669729CD1126C53EFCBC09A6B07B (MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MarshalByValueComponent_get_Container_m68A2BF43881A669729CD1126C53EFCBC09A6B07B_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = __this->get_site_1();
|
|
V_0 = L_0;
|
|
RuntimeObject* L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
RuntimeObject* L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.ComponentModel.IContainer System.ComponentModel.ISite::get_Container() */, ISite_t6804B48BC23ABB5F4141903F878589BCEF6097A2_il2cpp_TypeInfo_var, L_2);
|
|
return L_3;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
return (RuntimeObject*)NULL;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.MarshalByValueComponent::GetService(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MarshalByValueComponent_GetService_mFB66F66A61E603988424CF9FD89C4F7568A2611B (MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B * __this, Type_t * ___service0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MarshalByValueComponent_GetService_mFB66F66A61E603988424CF9FD89C4F7568A2611B_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = __this->get_site_1();
|
|
if (!L_0)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_1 = __this->get_site_1();
|
|
Type_t * L_2 = ___service0;
|
|
NullCheck(L_1);
|
|
RuntimeObject * L_3 = InterfaceFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(0 /* System.Object System.IServiceProvider::GetService(System.Type) */, IServiceProvider_t4EDB9848587638C3988434AA46E63D9EB85005EF_il2cpp_TypeInfo_var, L_1, L_2);
|
|
return L_3;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
return NULL;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MarshalByValueComponent::get_DesignMode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MarshalByValueComponent_get_DesignMode_m58C6BB7ADA57F2E56622A783D2CAE7229264DD56 (MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MarshalByValueComponent_get_DesignMode_m58C6BB7ADA57F2E56622A783D2CAE7229264DD56_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = __this->get_site_1();
|
|
V_0 = L_0;
|
|
RuntimeObject* L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
bool L_3 = InterfaceFuncInvoker0< bool >::Invoke(2 /* System.Boolean System.ComponentModel.ISite::get_DesignMode() */, ISite_t6804B48BC23ABB5F4141903F878589BCEF6097A2_il2cpp_TypeInfo_var, L_2);
|
|
return L_3;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.MarshalByValueComponent::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MarshalByValueComponent_ToString_m622A67EA96EFAE5D898CFC7CFB26CE4861395C97 (MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MarshalByValueComponent_ToString_m622A67EA96EFAE5D898CFC7CFB26CE4861395C97_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = __this->get_site_1();
|
|
V_0 = L_0;
|
|
RuntimeObject* L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
String_t* L_3 = InterfaceFuncInvoker0< String_t* >::Invoke(3 /* System.String System.ComponentModel.ISite::get_Name() */, ISite_t6804B48BC23ABB5F4141903F878589BCEF6097A2_il2cpp_TypeInfo_var, L_2);
|
|
Type_t * L_4 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5 = VirtFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Type::get_FullName() */, L_4);
|
|
String_t* L_6 = String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64(L_3, _stringLiteral42CBDB3C55980503B68E044C73B768E2C1557D44, L_5, _stringLiteral4FF447B8EF42CA51FA6FB287BED8D40F49BE58F1, /*hidden argument*/NULL);
|
|
return L_6;
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
Type_t * L_7 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL);
|
|
NullCheck(L_7);
|
|
String_t* L_8 = VirtFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Type::get_FullName() */, L_7);
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MarshalByValueComponent::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MarshalByValueComponent__cctor_mD07CA38525FF69AA599B31C887E434505323E0DC (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MarshalByValueComponent__cctor_mD07CA38525FF69AA599B31C887E434505323E0DC_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject * L_0 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_0, /*hidden argument*/NULL);
|
|
((MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B_StaticFields*)il2cpp_codegen_static_fields_for(MarshalByValueComponent_tADC0E481D4D19F965AB659F9038A1D7D47FA636B_il2cpp_TypeInfo_var))->set_EventDisposed_0(L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.MaskedTextProvider::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider__ctor_m9B7E4EE8AE66D238471A2BBC5C80D64A53C21F64 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___mask0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___mask0;
|
|
MaskedTextProvider__ctor_mC3DF68C53AB12952AA699D6C4F61C04F32A38175(__this, L_0, (CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F *)NULL, (bool)1, ((int32_t)95), 0, (bool)0, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MaskedTextProvider::.ctor(System.String,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider__ctor_m302AE0716F5A340F7F4958C854A64142C8AEBFDC (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___mask0, bool ___restrictToAscii1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___mask0;
|
|
bool L_1 = ___restrictToAscii1;
|
|
MaskedTextProvider__ctor_mC3DF68C53AB12952AA699D6C4F61C04F32A38175(__this, L_0, (CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F *)NULL, (bool)1, ((int32_t)95), 0, L_1, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MaskedTextProvider::.ctor(System.String,System.Globalization.CultureInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider__ctor_m8875CB0A4CE659A7A40D8801B0F63FAF824C61C4 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___mask0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___mask0;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = ___culture1;
|
|
MaskedTextProvider__ctor_mC3DF68C53AB12952AA699D6C4F61C04F32A38175(__this, L_0, L_1, (bool)1, ((int32_t)95), 0, (bool)0, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MaskedTextProvider::.ctor(System.String,System.Globalization.CultureInfo,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider__ctor_m078C4AD0DF85DF83ADB89587B3ACAB573FDBF981 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___mask0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, bool ___restrictToAscii2, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___mask0;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = ___culture1;
|
|
bool L_2 = ___restrictToAscii2;
|
|
MaskedTextProvider__ctor_mC3DF68C53AB12952AA699D6C4F61C04F32A38175(__this, L_0, L_1, (bool)1, ((int32_t)95), 0, L_2, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MaskedTextProvider::.ctor(System.String,System.Char,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider__ctor_m3B26982CCFC5C3797A95B6435B07192F74EDF6D8 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___mask0, Il2CppChar ___passwordChar1, bool ___allowPromptAsInput2, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___mask0;
|
|
bool L_1 = ___allowPromptAsInput2;
|
|
Il2CppChar L_2 = ___passwordChar1;
|
|
MaskedTextProvider__ctor_mC3DF68C53AB12952AA699D6C4F61C04F32A38175(__this, L_0, (CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F *)NULL, L_1, ((int32_t)95), L_2, (bool)0, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MaskedTextProvider::.ctor(System.String,System.Globalization.CultureInfo,System.Char,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider__ctor_m72CC27370BCAFC2DB2DFAF16752DB373EFE653CA (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___mask0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, Il2CppChar ___passwordChar2, bool ___allowPromptAsInput3, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___mask0;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = ___culture1;
|
|
bool L_2 = ___allowPromptAsInput3;
|
|
Il2CppChar L_3 = ___passwordChar2;
|
|
MaskedTextProvider__ctor_mC3DF68C53AB12952AA699D6C4F61C04F32A38175(__this, L_0, L_1, L_2, ((int32_t)95), L_3, (bool)0, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MaskedTextProvider::.ctor(System.String,System.Globalization.CultureInfo,System.Boolean,System.Char,System.Char,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider__ctor_mC3DF68C53AB12952AA699D6C4F61C04F32A38175 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___mask0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, bool ___allowPromptAsInput2, Il2CppChar ___promptChar3, Il2CppChar ___passwordChar4, bool ___restrictToAscii5, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider__ctor_mC3DF68C53AB12952AA699D6C4F61C04F32A38175_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31* V_2 = NULL;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * V_3 = NULL;
|
|
{
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
String_t* L_0 = ___mask0;
|
|
bool L_1 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_0, /*hidden argument*/NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteralEB207F1338668174ECFA1BEF59CCC40A7753E5CF, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_3 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_3, L_2, _stringLiteral9D4CCA1595C30E43D23F14AEDF815846F837956A, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, MaskedTextProvider__ctor_mC3DF68C53AB12952AA699D6C4F61C04F32A38175_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
String_t* L_4 = ___mask0;
|
|
V_0 = L_4;
|
|
V_1 = 0;
|
|
goto IL_004b;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
String_t* L_5 = V_0;
|
|
int32_t L_6 = V_1;
|
|
NullCheck(L_5);
|
|
Il2CppChar L_7 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_5, L_6, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
bool L_8 = MaskedTextProvider_IsPrintableChar_m1DBB3F4195B64CD712FF8D108CC61513358031EC(L_7, /*hidden argument*/NULL);
|
|
if (L_8)
|
|
{
|
|
goto IL_0047;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_9 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteralB367C2E538CA44013496422D7C97790B8ED18FD7, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_10 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_10, L_9, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, MaskedTextProvider__ctor_mC3DF68C53AB12952AA699D6C4F61C04F32A38175_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
int32_t L_11 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1));
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
int32_t L_12 = V_1;
|
|
String_t* L_13 = V_0;
|
|
NullCheck(L_13);
|
|
int32_t L_14 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_13, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_12) < ((int32_t)L_14)))
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_15 = ___culture1;
|
|
if (L_15)
|
|
{
|
|
goto IL_005e;
|
|
}
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_16 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL);
|
|
___culture1 = L_16;
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_17 = __this->get_address_of_flagState_18();
|
|
il2cpp_codegen_initobj(L_17, sizeof(BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 ));
|
|
String_t* L_18 = ___mask0;
|
|
__this->set_mask_25(L_18);
|
|
Il2CppChar L_19 = ___promptChar3;
|
|
__this->set_promptChar_27(L_19);
|
|
Il2CppChar L_20 = ___passwordChar4;
|
|
__this->set_passwordChar_26(L_20);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_21 = ___culture1;
|
|
NullCheck(L_21);
|
|
bool L_22 = VirtFuncInvoker0< bool >::Invoke(13 /* System.Boolean System.Globalization.CultureInfo::get_IsNeutralCulture() */, L_21);
|
|
if (!L_22)
|
|
{
|
|
goto IL_00ce;
|
|
}
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
|
|
CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31* L_23 = CultureInfo_GetCultures_mF06FF1D19C1F6626A89ECAEEC152194FEE7EDEC6(2, /*hidden argument*/NULL);
|
|
V_2 = L_23;
|
|
V_1 = 0;
|
|
goto IL_00b3;
|
|
}
|
|
|
|
IL_0094:
|
|
{
|
|
CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31* L_24 = V_2;
|
|
int32_t L_25 = V_1;
|
|
NullCheck(L_24);
|
|
int32_t L_26 = L_25;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_27 = (L_24)->GetAt(static_cast<il2cpp_array_size_t>(L_26));
|
|
V_3 = L_27;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_28 = ___culture1;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_29 = V_3;
|
|
NullCheck(L_29);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_30 = VirtFuncInvoker0< CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * >::Invoke(9 /* System.Globalization.CultureInfo System.Globalization.CultureInfo::get_Parent() */, L_29);
|
|
NullCheck(L_28);
|
|
bool L_31 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_28, L_30);
|
|
if (!L_31)
|
|
{
|
|
goto IL_00af;
|
|
}
|
|
}
|
|
{
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_32 = V_3;
|
|
__this->set_culture_19(L_32);
|
|
goto IL_00b9;
|
|
}
|
|
|
|
IL_00af:
|
|
{
|
|
int32_t L_33 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1));
|
|
}
|
|
|
|
IL_00b3:
|
|
{
|
|
int32_t L_34 = V_1;
|
|
CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31* L_35 = V_2;
|
|
NullCheck(L_35);
|
|
if ((((int32_t)L_34) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_35)->max_length)))))))
|
|
{
|
|
goto IL_0094;
|
|
}
|
|
}
|
|
|
|
IL_00b9:
|
|
{
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_36 = __this->get_culture_19();
|
|
if (L_36)
|
|
{
|
|
goto IL_00d5;
|
|
}
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_37 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
|
|
__this->set_culture_19(L_37);
|
|
goto IL_00d5;
|
|
}
|
|
|
|
IL_00ce:
|
|
{
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_38 = ___culture1;
|
|
__this->set_culture_19(L_38);
|
|
}
|
|
|
|
IL_00d5:
|
|
{
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_39 = __this->get_culture_19();
|
|
NullCheck(L_39);
|
|
bool L_40 = CultureInfo_get_IsReadOnly_m527F0337C516B57391AD20A70BF18FF7B0AC4849_inline(L_39, /*hidden argument*/NULL);
|
|
if (L_40)
|
|
{
|
|
goto IL_00f3;
|
|
}
|
|
}
|
|
{
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_41 = __this->get_culture_19();
|
|
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_42 = CultureInfo_ReadOnly_m794584C344F127E7918300FC386B852A93BB98F8(L_41, /*hidden argument*/NULL);
|
|
__this->set_culture_19(L_42);
|
|
}
|
|
|
|
IL_00f3:
|
|
{
|
|
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_43 = __this->get_address_of_flagState_18();
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
int32_t L_44 = ((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->get_ALLOW_PROMPT_AS_INPUT_11();
|
|
bool L_45 = ___allowPromptAsInput2;
|
|
BitVector32_set_Item_mA42604EC8406BCA63DEB3434E3F9D8D16742400C((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_43, L_44, L_45, /*hidden argument*/NULL);
|
|
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_46 = __this->get_address_of_flagState_18();
|
|
int32_t L_47 = ((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->get_ASCII_ONLY_10();
|
|
bool L_48 = ___restrictToAscii5;
|
|
BitVector32_set_Item_mA42604EC8406BCA63DEB3434E3F9D8D16742400C((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_46, L_47, L_48, /*hidden argument*/NULL);
|
|
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_49 = __this->get_address_of_flagState_18();
|
|
int32_t L_50 = ((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->get_INCLUDE_PROMPT_12();
|
|
BitVector32_set_Item_mA42604EC8406BCA63DEB3434E3F9D8D16742400C((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_49, L_50, (bool)0, /*hidden argument*/NULL);
|
|
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_51 = __this->get_address_of_flagState_18();
|
|
int32_t L_52 = ((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->get_INCLUDE_LITERALS_13();
|
|
BitVector32_set_Item_mA42604EC8406BCA63DEB3434E3F9D8D16742400C((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_51, L_52, (bool)1, /*hidden argument*/NULL);
|
|
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_53 = __this->get_address_of_flagState_18();
|
|
int32_t L_54 = ((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->get_RESET_ON_PROMPT_14();
|
|
BitVector32_set_Item_mA42604EC8406BCA63DEB3434E3F9D8D16742400C((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_53, L_54, (bool)1, /*hidden argument*/NULL);
|
|
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_55 = __this->get_address_of_flagState_18();
|
|
int32_t L_56 = ((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->get_SKIP_SPACE_16();
|
|
BitVector32_set_Item_mA42604EC8406BCA63DEB3434E3F9D8D16742400C((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_55, L_56, (bool)1, /*hidden argument*/NULL);
|
|
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_57 = __this->get_address_of_flagState_18();
|
|
int32_t L_58 = ((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->get_RESET_ON_LITERALS_15();
|
|
BitVector32_set_Item_mA42604EC8406BCA63DEB3434E3F9D8D16742400C((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_57, L_58, (bool)1, /*hidden argument*/NULL);
|
|
MaskedTextProvider_Initialize_mFA46F8C5B80302A9E759236BDEC5FEA126ACB858(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MaskedTextProvider::Initialize()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider_Initialize_mFA46F8C5B80302A9E759236BDEC5FEA126ACB858 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_Initialize_mFA46F8C5B80302A9E759236BDEC5FEA126ACB858_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
bool V_1 = false;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
Il2CppChar V_4 = 0x0;
|
|
String_t* V_5 = NULL;
|
|
int32_t V_6 = 0;
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * V_7 = NULL;
|
|
String_t* V_8 = NULL;
|
|
int32_t V_9 = 0;
|
|
Il2CppChar V_10 = 0x0;
|
|
{
|
|
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
|
|
StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_0, /*hidden argument*/NULL);
|
|
__this->set_testString_20(L_0);
|
|
List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 * L_1 = (List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 *)il2cpp_codegen_object_new(List_1_t534EACBABA93D935E71506BB9B9529485F1E0966_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m35242122456E5BCFA71F1F4A2924B393DF228020(L_1, /*hidden argument*/List_1__ctor_m35242122456E5BCFA71F1F4A2924B393DF228020_RuntimeMethod_var);
|
|
__this->set_stringDescriptor_28(L_1);
|
|
V_0 = 0;
|
|
V_1 = (bool)0;
|
|
V_2 = 0;
|
|
V_3 = 8;
|
|
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
|
|
V_5 = L_2;
|
|
V_6 = 0;
|
|
goto IL_0230;
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
String_t* L_3 = __this->get_mask_25();
|
|
int32_t L_4 = V_6;
|
|
NullCheck(L_3);
|
|
Il2CppChar L_5 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_3, L_4, /*hidden argument*/NULL);
|
|
V_4 = L_5;
|
|
bool L_6 = V_1;
|
|
if (L_6)
|
|
{
|
|
goto IL_01bc;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_7 = V_4;
|
|
if ((!(((uint32_t)L_7) <= ((uint32_t)((int32_t)67)))))
|
|
{
|
|
goto IL_00bb;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_8 = V_4;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)((int32_t)35))))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_019e;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0150;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_01b8;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0184;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_9 = V_4;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)((int32_t)44))))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0108;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_01b8;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_00ef;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_013a;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0184;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_10 = V_4;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)((int32_t)57))))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_019e;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0121;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_01b8;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0166;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_01b8;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_016d;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_019e;
|
|
}
|
|
case 7:
|
|
{
|
|
goto IL_01b8;
|
|
}
|
|
case 8:
|
|
{
|
|
goto IL_0184;
|
|
}
|
|
case 9:
|
|
{
|
|
goto IL_01b8;
|
|
}
|
|
case 10:
|
|
{
|
|
goto IL_019e;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_01b8;
|
|
}
|
|
|
|
IL_00bb:
|
|
{
|
|
Il2CppChar L_11 = V_4;
|
|
if ((!(((uint32_t)L_11) <= ((uint32_t)((int32_t)92)))))
|
|
{
|
|
goto IL_00d8;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_12 = V_4;
|
|
if ((((int32_t)L_12) == ((int32_t)((int32_t)76))))
|
|
{
|
|
goto IL_0184;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_13 = V_4;
|
|
if ((((int32_t)L_13) == ((int32_t)((int32_t)92))))
|
|
{
|
|
goto IL_017b;
|
|
}
|
|
}
|
|
{
|
|
goto IL_01b8;
|
|
}
|
|
|
|
IL_00d8:
|
|
{
|
|
Il2CppChar L_14 = V_4;
|
|
if ((((int32_t)L_14) == ((int32_t)((int32_t)97))))
|
|
{
|
|
goto IL_019e;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_15 = V_4;
|
|
if ((((int32_t)L_15) == ((int32_t)((int32_t)124))))
|
|
{
|
|
goto IL_0174;
|
|
}
|
|
}
|
|
{
|
|
goto IL_01b8;
|
|
}
|
|
|
|
IL_00ef:
|
|
{
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_16 = __this->get_culture_19();
|
|
NullCheck(L_16);
|
|
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_17 = VirtFuncInvoker0< NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * >::Invoke(14 /* System.Globalization.NumberFormatInfo System.Globalization.CultureInfo::get_NumberFormat() */, L_16);
|
|
NullCheck(L_17);
|
|
String_t* L_18 = NumberFormatInfo_get_NumberDecimalSeparator_m1A9F946D267B5C2FC5982D34AF97D9AEB9C24A6E_inline(L_17, /*hidden argument*/NULL);
|
|
V_5 = L_18;
|
|
V_3 = 4;
|
|
goto IL_01be;
|
|
}
|
|
|
|
IL_0108:
|
|
{
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_19 = __this->get_culture_19();
|
|
NullCheck(L_19);
|
|
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_20 = VirtFuncInvoker0< NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * >::Invoke(14 /* System.Globalization.NumberFormatInfo System.Globalization.CultureInfo::get_NumberFormat() */, L_19);
|
|
NullCheck(L_20);
|
|
String_t* L_21 = NumberFormatInfo_get_NumberGroupSeparator_mD995708E10C4CC55A19E7126E7A6C256A2DD1A35_inline(L_20, /*hidden argument*/NULL);
|
|
V_5 = L_21;
|
|
V_3 = 4;
|
|
goto IL_01be;
|
|
}
|
|
|
|
IL_0121:
|
|
{
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_22 = __this->get_culture_19();
|
|
NullCheck(L_22);
|
|
DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_23 = VirtFuncInvoker0< DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * >::Invoke(16 /* System.Globalization.DateTimeFormatInfo System.Globalization.CultureInfo::get_DateTimeFormat() */, L_22);
|
|
NullCheck(L_23);
|
|
String_t* L_24 = DateTimeFormatInfo_get_TimeSeparator_m9D230E9D88CE3E2EBA24365775D2B4B2D5621C58_inline(L_23, /*hidden argument*/NULL);
|
|
V_5 = L_24;
|
|
V_3 = 4;
|
|
goto IL_01be;
|
|
}
|
|
|
|
IL_013a:
|
|
{
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_25 = __this->get_culture_19();
|
|
NullCheck(L_25);
|
|
DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * L_26 = VirtFuncInvoker0< DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * >::Invoke(16 /* System.Globalization.DateTimeFormatInfo System.Globalization.CultureInfo::get_DateTimeFormat() */, L_25);
|
|
NullCheck(L_26);
|
|
String_t* L_27 = DateTimeFormatInfo_get_DateSeparator_m68C0C4E4320F22BAA7B6E6EFF7DD7349541D509C_inline(L_26, /*hidden argument*/NULL);
|
|
V_5 = L_27;
|
|
V_3 = 4;
|
|
goto IL_01be;
|
|
}
|
|
|
|
IL_0150:
|
|
{
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_28 = __this->get_culture_19();
|
|
NullCheck(L_28);
|
|
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_29 = VirtFuncInvoker0< NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * >::Invoke(14 /* System.Globalization.NumberFormatInfo System.Globalization.CultureInfo::get_NumberFormat() */, L_28);
|
|
NullCheck(L_29);
|
|
String_t* L_30 = NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16_inline(L_29, /*hidden argument*/NULL);
|
|
V_5 = L_30;
|
|
V_3 = 4;
|
|
goto IL_01be;
|
|
}
|
|
|
|
IL_0166:
|
|
{
|
|
V_0 = 1;
|
|
goto IL_022a;
|
|
}
|
|
|
|
IL_016d:
|
|
{
|
|
V_0 = 2;
|
|
goto IL_022a;
|
|
}
|
|
|
|
IL_0174:
|
|
{
|
|
V_0 = 0;
|
|
goto IL_022a;
|
|
}
|
|
|
|
IL_017b:
|
|
{
|
|
V_1 = (bool)1;
|
|
V_3 = 8;
|
|
goto IL_022a;
|
|
}
|
|
|
|
IL_0184:
|
|
{
|
|
int32_t L_31 = __this->get_requiredEditChars_23();
|
|
__this->set_requiredEditChars_23(((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1)));
|
|
Il2CppChar L_32 = __this->get_promptChar_27();
|
|
V_4 = L_32;
|
|
V_3 = 2;
|
|
goto IL_01be;
|
|
}
|
|
|
|
IL_019e:
|
|
{
|
|
int32_t L_33 = __this->get_optionalEditChars_24();
|
|
__this->set_optionalEditChars_24(((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)));
|
|
Il2CppChar L_34 = __this->get_promptChar_27();
|
|
V_4 = L_34;
|
|
V_3 = 1;
|
|
goto IL_01be;
|
|
}
|
|
|
|
IL_01b8:
|
|
{
|
|
V_3 = 8;
|
|
goto IL_01be;
|
|
}
|
|
|
|
IL_01bc:
|
|
{
|
|
V_1 = (bool)0;
|
|
}
|
|
|
|
IL_01be:
|
|
{
|
|
int32_t L_35 = V_6;
|
|
int32_t L_36 = V_3;
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_37 = (CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D *)il2cpp_codegen_object_new(CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D_il2cpp_TypeInfo_var);
|
|
CharDescriptor__ctor_m19AB18A65157129B4CFB273E1BC5FCF7D8C6E93B(L_37, L_35, L_36, /*hidden argument*/NULL);
|
|
V_7 = L_37;
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_38 = V_7;
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
bool L_39 = MaskedTextProvider_IsEditPosition_m8614884878C3CE2E788A9E90FF6B2BFA296730DE(L_38, /*hidden argument*/NULL);
|
|
if (!L_39)
|
|
{
|
|
goto IL_01d9;
|
|
}
|
|
}
|
|
{
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_40 = V_7;
|
|
int32_t L_41 = V_0;
|
|
NullCheck(L_40);
|
|
L_40->set_CaseConversion_1(L_41);
|
|
}
|
|
|
|
IL_01d9:
|
|
{
|
|
int32_t L_42 = V_3;
|
|
if ((((int32_t)L_42) == ((int32_t)4)))
|
|
{
|
|
goto IL_01e6;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_43 = Char_ToString_mA42A88FEBA41B72D48BB24373E3101B7A91B6FD8((Il2CppChar*)(&V_4), /*hidden argument*/NULL);
|
|
V_5 = L_43;
|
|
}
|
|
|
|
IL_01e6:
|
|
{
|
|
String_t* L_44 = V_5;
|
|
V_8 = L_44;
|
|
V_9 = 0;
|
|
goto IL_021f;
|
|
}
|
|
|
|
IL_01ef:
|
|
{
|
|
String_t* L_45 = V_8;
|
|
int32_t L_46 = V_9;
|
|
NullCheck(L_45);
|
|
Il2CppChar L_47 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_45, L_46, /*hidden argument*/NULL);
|
|
V_10 = L_47;
|
|
StringBuilder_t * L_48 = __this->get_testString_20();
|
|
Il2CppChar L_49 = V_10;
|
|
NullCheck(L_48);
|
|
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_48, L_49, /*hidden argument*/NULL);
|
|
List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 * L_50 = __this->get_stringDescriptor_28();
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_51 = V_7;
|
|
NullCheck(L_50);
|
|
List_1_Add_mE5E3B94F4609E4583BDAF08320027CDDBE7CBF79(L_50, L_51, /*hidden argument*/List_1_Add_mE5E3B94F4609E4583BDAF08320027CDDBE7CBF79_RuntimeMethod_var);
|
|
int32_t L_52 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_52, (int32_t)1));
|
|
int32_t L_53 = V_9;
|
|
V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_53, (int32_t)1));
|
|
}
|
|
|
|
IL_021f:
|
|
{
|
|
int32_t L_54 = V_9;
|
|
String_t* L_55 = V_8;
|
|
NullCheck(L_55);
|
|
int32_t L_56 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_55, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_54) < ((int32_t)L_56)))
|
|
{
|
|
goto IL_01ef;
|
|
}
|
|
}
|
|
|
|
IL_022a:
|
|
{
|
|
int32_t L_57 = V_6;
|
|
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_57, (int32_t)1));
|
|
}
|
|
|
|
IL_0230:
|
|
{
|
|
int32_t L_58 = V_6;
|
|
String_t* L_59 = __this->get_mask_25();
|
|
NullCheck(L_59);
|
|
int32_t L_60 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_59, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_58) < ((int32_t)L_60)))
|
|
{
|
|
goto IL_002d;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_61 = __this->get_testString_20();
|
|
StringBuilder_t * L_62 = __this->get_testString_20();
|
|
NullCheck(L_62);
|
|
int32_t L_63 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_62, /*hidden argument*/NULL);
|
|
NullCheck(L_61);
|
|
StringBuilder_set_Capacity_mCE0BA9AFD80253DEDA6CD5CDF73903711B5341D6(L_61, L_63, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::get_AllowPromptAsInput()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_get_AllowPromptAsInput_mF973B54A49DDA82ED811F80E17A34E4BEA223371 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_get_AllowPromptAsInput_mF973B54A49DDA82ED811F80E17A34E4BEA223371_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_0 = __this->get_address_of_flagState_18();
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
int32_t L_1 = ((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->get_ALLOW_PROMPT_AS_INPUT_11();
|
|
bool L_2 = BitVector32_get_Item_m00C3142256C406B075C4E364C03AC3A89E37A0CB((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_0, L_1, /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::get_AssignedEditPositionCount()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MaskedTextProvider_get_AssignedEditPositionCount_m69C2BAB12769ABC52F69EE5E3DC4A88CB36AADDA (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->get_assignedCharCount_21();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::get_AvailableEditPositionCount()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MaskedTextProvider_get_AvailableEditPositionCount_m5630048305E2DA6595FA09C4A5E5904004D606F4 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = MaskedTextProvider_get_EditPositionCount_m1F33DA7D57FBEF3405DE960CD6AC7C924D831721(__this, /*hidden argument*/NULL);
|
|
int32_t L_1 = __this->get_assignedCharCount_21();
|
|
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1));
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.MaskedTextProvider::Clone()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MaskedTextProvider_Clone_m771B5778492B23D22215A0083BDAEFD41A0F2634 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_Clone_m771B5778492B23D22215A0083BDAEFD41A0F2634_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * V_0 = NULL;
|
|
Type_t * V_1 = NULL;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * V_4 = NULL;
|
|
{
|
|
Type_t * L_0 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL);
|
|
V_1 = L_0;
|
|
Type_t * L_1 = V_1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
Type_t * L_2 = ((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->get_maskTextProviderType_17();
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_3 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_1, L_2, /*hidden argument*/NULL);
|
|
if (!L_3)
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_4 = MaskedTextProvider_get_Mask_m9074C064ACA7A4D2493E30218946B86BAFA028E5_inline(__this, /*hidden argument*/NULL);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_5 = MaskedTextProvider_get_Culture_mA9C9D928B88422DD51F7977FD7C6AAF45642E244_inline(__this, /*hidden argument*/NULL);
|
|
bool L_6 = MaskedTextProvider_get_AllowPromptAsInput_mF973B54A49DDA82ED811F80E17A34E4BEA223371(__this, /*hidden argument*/NULL);
|
|
Il2CppChar L_7 = MaskedTextProvider_get_PromptChar_m636160F1EE3A969F32E034B7FCD544D289DAA01A_inline(__this, /*hidden argument*/NULL);
|
|
Il2CppChar L_8 = MaskedTextProvider_get_PasswordChar_m0120F429F1FFA47566F840B17E557DFD6FDDD646_inline(__this, /*hidden argument*/NULL);
|
|
bool L_9 = MaskedTextProvider_get_AsciiOnly_m21E1B443153C205B73EA324268FF2F453CB3B399(__this, /*hidden argument*/NULL);
|
|
MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * L_10 = (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 *)il2cpp_codegen_object_new(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
MaskedTextProvider__ctor_mC3DF68C53AB12952AA699D6C4F61C04F32A38175(L_10, L_4, L_5, L_6, L_7, L_8, L_9, /*hidden argument*/NULL);
|
|
V_0 = L_10;
|
|
goto IL_009e;
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = L_11;
|
|
String_t* L_13 = MaskedTextProvider_get_Mask_m9074C064ACA7A4D2493E30218946B86BAFA028E5_inline(__this, /*hidden argument*/NULL);
|
|
NullCheck(L_12);
|
|
ArrayElementTypeCheck (L_12, L_13);
|
|
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_13);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = L_12;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_15 = MaskedTextProvider_get_Culture_mA9C9D928B88422DD51F7977FD7C6AAF45642E244_inline(__this, /*hidden argument*/NULL);
|
|
NullCheck(L_14);
|
|
ArrayElementTypeCheck (L_14, L_15);
|
|
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_15);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = L_14;
|
|
bool L_17 = MaskedTextProvider_get_AllowPromptAsInput_mF973B54A49DDA82ED811F80E17A34E4BEA223371(__this, /*hidden argument*/NULL);
|
|
bool L_18 = L_17;
|
|
RuntimeObject * L_19 = Box(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var, &L_18);
|
|
NullCheck(L_16);
|
|
ArrayElementTypeCheck (L_16, L_19);
|
|
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_19);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = L_16;
|
|
Il2CppChar L_21 = MaskedTextProvider_get_PromptChar_m636160F1EE3A969F32E034B7FCD544D289DAA01A_inline(__this, /*hidden argument*/NULL);
|
|
Il2CppChar L_22 = L_21;
|
|
RuntimeObject * L_23 = Box(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var, &L_22);
|
|
NullCheck(L_20);
|
|
ArrayElementTypeCheck (L_20, L_23);
|
|
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_23);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_24 = L_20;
|
|
Il2CppChar L_25 = MaskedTextProvider_get_PasswordChar_m0120F429F1FFA47566F840B17E557DFD6FDDD646_inline(__this, /*hidden argument*/NULL);
|
|
Il2CppChar L_26 = L_25;
|
|
RuntimeObject * L_27 = Box(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var, &L_26);
|
|
NullCheck(L_24);
|
|
ArrayElementTypeCheck (L_24, L_27);
|
|
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)L_27);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_28 = L_24;
|
|
bool L_29 = MaskedTextProvider_get_AsciiOnly_m21E1B443153C205B73EA324268FF2F453CB3B399(__this, /*hidden argument*/NULL);
|
|
bool L_30 = L_29;
|
|
RuntimeObject * L_31 = Box(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var, &L_30);
|
|
NullCheck(L_28);
|
|
ArrayElementTypeCheck (L_28, L_31);
|
|
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(5), (RuntimeObject *)L_31);
|
|
V_2 = L_28;
|
|
Type_t * L_32 = V_1;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_33 = V_2;
|
|
RuntimeObject * L_34 = SecurityUtils_SecureCreateInstance_m291D8D6709E79129FDE3E1EA01D37F1D40E73EA4(L_32, L_33, /*hidden argument*/NULL);
|
|
V_0 = ((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 *)IsInstClass((RuntimeObject*)L_34, MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var));
|
|
}
|
|
|
|
IL_009e:
|
|
{
|
|
MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * L_35 = V_0;
|
|
NullCheck(L_35);
|
|
MaskedTextProvider_set_ResetOnPrompt_m78FF27069210D9E5E1E18546AAB874F62C09DC50(L_35, (bool)0, /*hidden argument*/NULL);
|
|
MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * L_36 = V_0;
|
|
NullCheck(L_36);
|
|
MaskedTextProvider_set_ResetOnSpace_mB173AB1A0E702AB372552BDB373C3CB2B9A19530(L_36, (bool)0, /*hidden argument*/NULL);
|
|
MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * L_37 = V_0;
|
|
NullCheck(L_37);
|
|
MaskedTextProvider_set_SkipLiterals_m02619ADF4557203B3BA14CC13144AF65DC13D91A(L_37, (bool)0, /*hidden argument*/NULL);
|
|
V_3 = 0;
|
|
goto IL_00ef;
|
|
}
|
|
|
|
IL_00b7:
|
|
{
|
|
List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 * L_38 = __this->get_stringDescriptor_28();
|
|
int32_t L_39 = V_3;
|
|
NullCheck(L_38);
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_40 = List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_inline(L_38, L_39, /*hidden argument*/List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_RuntimeMethod_var);
|
|
V_4 = L_40;
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_41 = V_4;
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
bool L_42 = MaskedTextProvider_IsEditPosition_m8614884878C3CE2E788A9E90FF6B2BFA296730DE(L_41, /*hidden argument*/NULL);
|
|
if (!L_42)
|
|
{
|
|
goto IL_00eb;
|
|
}
|
|
}
|
|
{
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_43 = V_4;
|
|
NullCheck(L_43);
|
|
bool L_44 = L_43->get_IsAssigned_3();
|
|
if (!L_44)
|
|
{
|
|
goto IL_00eb;
|
|
}
|
|
}
|
|
{
|
|
MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * L_45 = V_0;
|
|
StringBuilder_t * L_46 = __this->get_testString_20();
|
|
int32_t L_47 = V_3;
|
|
NullCheck(L_46);
|
|
Il2CppChar L_48 = StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6(L_46, L_47, /*hidden argument*/NULL);
|
|
int32_t L_49 = V_3;
|
|
NullCheck(L_45);
|
|
MaskedTextProvider_Replace_m6956AFF52D6BD77A812FAEE12B0BB64EAFA0234C(L_45, L_48, L_49, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_00eb:
|
|
{
|
|
int32_t L_50 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_50, (int32_t)1));
|
|
}
|
|
|
|
IL_00ef:
|
|
{
|
|
int32_t L_51 = V_3;
|
|
StringBuilder_t * L_52 = __this->get_testString_20();
|
|
NullCheck(L_52);
|
|
int32_t L_53 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_52, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_51) < ((int32_t)L_53)))
|
|
{
|
|
goto IL_00b7;
|
|
}
|
|
}
|
|
{
|
|
MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * L_54 = V_0;
|
|
bool L_55 = MaskedTextProvider_get_ResetOnPrompt_m7DAEE4DE22E656C711D453F84240D96C9BF8EC5D(__this, /*hidden argument*/NULL);
|
|
NullCheck(L_54);
|
|
MaskedTextProvider_set_ResetOnPrompt_m78FF27069210D9E5E1E18546AAB874F62C09DC50(L_54, L_55, /*hidden argument*/NULL);
|
|
MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * L_56 = V_0;
|
|
bool L_57 = MaskedTextProvider_get_ResetOnSpace_m40890F87C8C68801526F427555BD40B74B5A19CE(__this, /*hidden argument*/NULL);
|
|
NullCheck(L_56);
|
|
MaskedTextProvider_set_ResetOnSpace_mB173AB1A0E702AB372552BDB373C3CB2B9A19530(L_56, L_57, /*hidden argument*/NULL);
|
|
MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * L_58 = V_0;
|
|
bool L_59 = MaskedTextProvider_get_SkipLiterals_m410CDF3FF094DDE966BA6F3665F696F53FD60312(__this, /*hidden argument*/NULL);
|
|
NullCheck(L_58);
|
|
MaskedTextProvider_set_SkipLiterals_m02619ADF4557203B3BA14CC13144AF65DC13D91A(L_58, L_59, /*hidden argument*/NULL);
|
|
MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * L_60 = V_0;
|
|
bool L_61 = MaskedTextProvider_get_IncludeLiterals_m37C703CB7096946E740EFF2627E44EE4B81BDBBB(__this, /*hidden argument*/NULL);
|
|
NullCheck(L_60);
|
|
MaskedTextProvider_set_IncludeLiterals_m88D834651ADFBA6B6153C8D172E045A464F8A752(L_60, L_61, /*hidden argument*/NULL);
|
|
MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * L_62 = V_0;
|
|
bool L_63 = MaskedTextProvider_get_IncludePrompt_mCFBC56EB7B5CB5517B0ECAD8D0683B2AFC73F8C8(__this, /*hidden argument*/NULL);
|
|
NullCheck(L_62);
|
|
MaskedTextProvider_set_IncludePrompt_mA93583841E0E1EA4F382801967F83B731735BEE8(L_62, L_63, /*hidden argument*/NULL);
|
|
MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * L_64 = V_0;
|
|
return L_64;
|
|
}
|
|
}
|
|
// System.Globalization.CultureInfo System.ComponentModel.MaskedTextProvider::get_Culture()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * MaskedTextProvider_get_Culture_mA9C9D928B88422DD51F7977FD7C6AAF45642E244 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = __this->get_culture_19();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Char System.ComponentModel.MaskedTextProvider::get_DefaultPasswordChar()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar MaskedTextProvider_get_DefaultPasswordChar_m9703E3E1266EEB70A99B6A69DFF05DB97FADEAED (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return ((int32_t)42);
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::get_EditPositionCount()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MaskedTextProvider_get_EditPositionCount_m1F33DA7D57FBEF3405DE960CD6AC7C924D831721 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->get_optionalEditChars_24();
|
|
int32_t L_1 = __this->get_requiredEditChars_23();
|
|
return ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
|
|
}
|
|
}
|
|
// System.Collections.IEnumerator System.ComponentModel.MaskedTextProvider::get_EditPositions()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MaskedTextProvider_get_EditPositions_mF9E494BBA7EAC6AF1CBEFC85D61157AE143E10A8 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_get_EditPositions_mF9E494BBA7EAC6AF1CBEFC85D61157AE143E10A8_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
Enumerator_tB1ACA39EC6FB8CAF2F033D767916CAEED114E37C V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
{
|
|
List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * L_0 = (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 *)il2cpp_codegen_object_new(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226_il2cpp_TypeInfo_var);
|
|
List_1__ctor_mA7F9F92F641CEECFD9D8CFDC667568A05FFD27B4(L_0, /*hidden argument*/List_1__ctor_mA7F9F92F641CEECFD9D8CFDC667568A05FFD27B4_RuntimeMethod_var);
|
|
V_0 = L_0;
|
|
V_1 = 0;
|
|
List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 * L_1 = __this->get_stringDescriptor_28();
|
|
NullCheck(L_1);
|
|
Enumerator_tB1ACA39EC6FB8CAF2F033D767916CAEED114E37C L_2 = List_1_GetEnumerator_m2481F60E9BE18671D4F1B3244859DFA7641BFD53(L_1, /*hidden argument*/List_1_GetEnumerator_m2481F60E9BE18671D4F1B3244859DFA7641BFD53_RuntimeMethod_var);
|
|
V_2 = L_2;
|
|
}
|
|
|
|
IL_0014:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_3 = Enumerator_get_Current_m93C6B874E2C040D376CD6D99EE7F776D66954F69_inline((Enumerator_tB1ACA39EC6FB8CAF2F033D767916CAEED114E37C *)(&V_2), /*hidden argument*/Enumerator_get_Current_m93C6B874E2C040D376CD6D99EE7F776D66954F69_RuntimeMethod_var);
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
bool L_4 = MaskedTextProvider_IsEditPosition_m8614884878C3CE2E788A9E90FF6B2BFA296730DE(L_3, /*hidden argument*/NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * L_5 = V_0;
|
|
int32_t L_6 = V_1;
|
|
NullCheck(L_5);
|
|
List_1_Add_m50C0D1F69B2EF31137658E2F052EBBAC7BF82771(L_5, L_6, /*hidden argument*/List_1_Add_m50C0D1F69B2EF31137658E2F052EBBAC7BF82771_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
int32_t L_7 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1));
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
bool L_8 = Enumerator_MoveNext_mDE073B3E712ABCE337D1F88E0AFA8345AEAB46E7((Enumerator_tB1ACA39EC6FB8CAF2F033D767916CAEED114E37C *)(&V_2), /*hidden argument*/Enumerator_MoveNext_mDE073B3E712ABCE337D1F88E0AFA8345AEAB46E7_RuntimeMethod_var);
|
|
if (L_8)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
IL2CPP_LEAVE(0x48, FINALLY_003a);
|
|
}
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__last_unhandled_exception = (Exception_t *)e.ex;
|
|
goto FINALLY_003a;
|
|
}
|
|
|
|
FINALLY_003a:
|
|
{ // begin finally (depth: 1)
|
|
Enumerator_Dispose_m1329B7C0B94F946772328E972AB7B625547A0B16((Enumerator_tB1ACA39EC6FB8CAF2F033D767916CAEED114E37C *)(&V_2), /*hidden argument*/Enumerator_Dispose_m1329B7C0B94F946772328E972AB7B625547A0B16_RuntimeMethod_var);
|
|
IL2CPP_END_FINALLY(58)
|
|
} // end finally (depth: 1)
|
|
IL2CPP_CLEANUP(58)
|
|
{
|
|
IL2CPP_JUMP_TBL(0x48, IL_0048)
|
|
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * L_9 = V_0;
|
|
NullCheck(L_9);
|
|
RuntimeObject* L_10 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var, L_9);
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::get_IncludeLiterals()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_get_IncludeLiterals_m37C703CB7096946E740EFF2627E44EE4B81BDBBB (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_get_IncludeLiterals_m37C703CB7096946E740EFF2627E44EE4B81BDBBB_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_0 = __this->get_address_of_flagState_18();
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
int32_t L_1 = ((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->get_INCLUDE_LITERALS_13();
|
|
bool L_2 = BitVector32_get_Item_m00C3142256C406B075C4E364C03AC3A89E37A0CB((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_0, L_1, /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MaskedTextProvider::set_IncludeLiterals(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider_set_IncludeLiterals_m88D834651ADFBA6B6153C8D172E045A464F8A752 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, bool ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_set_IncludeLiterals_m88D834651ADFBA6B6153C8D172E045A464F8A752_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_0 = __this->get_address_of_flagState_18();
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
int32_t L_1 = ((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->get_INCLUDE_LITERALS_13();
|
|
bool L_2 = ___value0;
|
|
BitVector32_set_Item_mA42604EC8406BCA63DEB3434E3F9D8D16742400C((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_0, L_1, L_2, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::get_IncludePrompt()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_get_IncludePrompt_mCFBC56EB7B5CB5517B0ECAD8D0683B2AFC73F8C8 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_get_IncludePrompt_mCFBC56EB7B5CB5517B0ECAD8D0683B2AFC73F8C8_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_0 = __this->get_address_of_flagState_18();
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
int32_t L_1 = ((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->get_INCLUDE_PROMPT_12();
|
|
bool L_2 = BitVector32_get_Item_m00C3142256C406B075C4E364C03AC3A89E37A0CB((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_0, L_1, /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MaskedTextProvider::set_IncludePrompt(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider_set_IncludePrompt_mA93583841E0E1EA4F382801967F83B731735BEE8 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, bool ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_set_IncludePrompt_mA93583841E0E1EA4F382801967F83B731735BEE8_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_0 = __this->get_address_of_flagState_18();
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
int32_t L_1 = ((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->get_INCLUDE_PROMPT_12();
|
|
bool L_2 = ___value0;
|
|
BitVector32_set_Item_mA42604EC8406BCA63DEB3434E3F9D8D16742400C((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_0, L_1, L_2, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::get_AsciiOnly()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_get_AsciiOnly_m21E1B443153C205B73EA324268FF2F453CB3B399 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_get_AsciiOnly_m21E1B443153C205B73EA324268FF2F453CB3B399_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_0 = __this->get_address_of_flagState_18();
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
int32_t L_1 = ((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->get_ASCII_ONLY_10();
|
|
bool L_2 = BitVector32_get_Item_m00C3142256C406B075C4E364C03AC3A89E37A0CB((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_0, L_1, /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::get_IsPassword()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_get_IsPassword_mA79456F55E5BEFBD593A27C511A2FF5BBD0FDDAA (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppChar L_0 = __this->get_passwordChar_26();
|
|
return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MaskedTextProvider::set_IsPassword(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider_set_IsPassword_m5BE0D07C30938B31BC293B5C8F11FB0DB9B64F33 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, bool ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_set_IsPassword_m5BE0D07C30938B31BC293B5C8F11FB0DB9B64F33_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * G_B3_0 = NULL;
|
|
MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * G_B2_0 = NULL;
|
|
int32_t G_B4_0 = 0;
|
|
MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * G_B4_1 = NULL;
|
|
{
|
|
bool L_0 = MaskedTextProvider_get_IsPassword_mA79456F55E5BEFBD593A27C511A2FF5BBD0FDDAA(__this, /*hidden argument*/NULL);
|
|
bool L_1 = ___value0;
|
|
if ((((int32_t)L_0) == ((int32_t)L_1)))
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
bool L_2 = ___value0;
|
|
G_B2_0 = __this;
|
|
if (L_2)
|
|
{
|
|
G_B3_0 = __this;
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
G_B4_0 = 0;
|
|
G_B4_1 = G_B2_0;
|
|
goto IL_0015;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
Il2CppChar L_3 = MaskedTextProvider_get_DefaultPasswordChar_m9703E3E1266EEB70A99B6A69DFF05DB97FADEAED(/*hidden argument*/NULL);
|
|
G_B4_0 = ((int32_t)(L_3));
|
|
G_B4_1 = G_B3_0;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
NullCheck(G_B4_1);
|
|
G_B4_1->set_passwordChar_26(G_B4_0);
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::get_InvalidIndex()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MaskedTextProvider_get_InvalidIndex_m763EC9BB0377976032C14BA00AF1A4A3337DDF7E (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (-1);
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::get_LastAssignedPosition()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MaskedTextProvider_get_LastAssignedPosition_m50CA253FC2DA86D3EC9C1E5A7F68AA9C5BF25C74 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
StringBuilder_t * L_0 = __this->get_testString_20();
|
|
NullCheck(L_0);
|
|
int32_t L_1 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_0, /*hidden argument*/NULL);
|
|
int32_t L_2 = MaskedTextProvider_FindAssignedEditPositionFrom_mBAF2E6FB903959360D5FFEF1FEE756E4960D768A(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1)), (bool)0, /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::get_Length()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MaskedTextProvider_get_Length_m6432F6299C37A2D6371AC9DA8AFE679206772D2C (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
StringBuilder_t * L_0 = __this->get_testString_20();
|
|
NullCheck(L_0);
|
|
int32_t L_1 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.MaskedTextProvider::get_Mask()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MaskedTextProvider_get_Mask_m9074C064ACA7A4D2493E30218946B86BAFA028E5 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_mask_25();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::get_MaskCompleted()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_get_MaskCompleted_mD58AE0B0921C9986AAFC8A700D94C5486D032A85 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->get_requiredCharCount_22();
|
|
int32_t L_1 = __this->get_requiredEditChars_23();
|
|
return (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::get_MaskFull()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_get_MaskFull_m92463299B68CC380B5BBBB4D5E8B655CE7483F04 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->get_assignedCharCount_21();
|
|
int32_t L_1 = MaskedTextProvider_get_EditPositionCount_m1F33DA7D57FBEF3405DE960CD6AC7C924D831721(__this, /*hidden argument*/NULL);
|
|
return (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Char System.ComponentModel.MaskedTextProvider::get_PasswordChar()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar MaskedTextProvider_get_PasswordChar_m0120F429F1FFA47566F840B17E557DFD6FDDD646 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppChar L_0 = __this->get_passwordChar_26();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MaskedTextProvider::set_PasswordChar(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider_set_PasswordChar_mC5567EBFD36099DE535C5AA079D51FEB28607DCB (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, Il2CppChar ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_set_PasswordChar_mC5567EBFD36099DE535C5AA079D51FEB28607DCB_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Il2CppChar L_0 = ___value0;
|
|
Il2CppChar L_1 = __this->get_promptChar_27();
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)L_1))))
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteral5CDE4416D7E2D28F1EFBAA532FB41875A243A6F7, /*hidden argument*/NULL);
|
|
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
|
|
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, L_2, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, MaskedTextProvider_set_PasswordChar_mC5567EBFD36099DE535C5AA079D51FEB28607DCB_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
Il2CppChar L_4 = ___value0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
bool L_5 = MaskedTextProvider_IsValidPasswordChar_mB81DAF880124B6191F488B7F9A6D0747B8174FB5(L_4, /*hidden argument*/NULL);
|
|
if (L_5)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_6 = ___value0;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_7 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteralBCE51B945638A1A120C6DF320712FCFC3DF9311D, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_8 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_8, L_7, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, MaskedTextProvider_set_PasswordChar_mC5567EBFD36099DE535C5AA079D51FEB28607DCB_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
Il2CppChar L_9 = ___value0;
|
|
Il2CppChar L_10 = __this->get_passwordChar_26();
|
|
if ((((int32_t)L_9) == ((int32_t)L_10)))
|
|
{
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_11 = ___value0;
|
|
__this->set_passwordChar_26(L_11);
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Char System.ComponentModel.MaskedTextProvider::get_PromptChar()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar MaskedTextProvider_get_PromptChar_m636160F1EE3A969F32E034B7FCD544D289DAA01A (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppChar L_0 = __this->get_promptChar_27();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MaskedTextProvider::set_PromptChar(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider_set_PromptChar_m890C34680D07AAB3AA03DC25B41FE877BCC9EBF9 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, Il2CppChar ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_set_PromptChar_m890C34680D07AAB3AA03DC25B41FE877BCC9EBF9_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * V_1 = NULL;
|
|
{
|
|
Il2CppChar L_0 = ___value0;
|
|
Il2CppChar L_1 = __this->get_passwordChar_26();
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)L_1))))
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteral5CDE4416D7E2D28F1EFBAA532FB41875A243A6F7, /*hidden argument*/NULL);
|
|
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
|
|
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, L_2, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, MaskedTextProvider_set_PromptChar_m890C34680D07AAB3AA03DC25B41FE877BCC9EBF9_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
Il2CppChar L_4 = ___value0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
bool L_5 = MaskedTextProvider_IsPrintableChar_m1DBB3F4195B64CD712FF8D108CC61513358031EC(L_4, /*hidden argument*/NULL);
|
|
if (L_5)
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_6 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteralBCE51B945638A1A120C6DF320712FCFC3DF9311D, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_7, L_6, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, MaskedTextProvider_set_PromptChar_m890C34680D07AAB3AA03DC25B41FE877BCC9EBF9_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
Il2CppChar L_8 = ___value0;
|
|
Il2CppChar L_9 = __this->get_promptChar_27();
|
|
if ((((int32_t)L_8) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0087;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_10 = ___value0;
|
|
__this->set_promptChar_27(L_10);
|
|
V_0 = 0;
|
|
goto IL_0079;
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 * L_11 = __this->get_stringDescriptor_28();
|
|
int32_t L_12 = V_0;
|
|
NullCheck(L_11);
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_13 = List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_inline(L_11, L_12, /*hidden argument*/List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_RuntimeMethod_var);
|
|
V_1 = L_13;
|
|
int32_t L_14 = V_0;
|
|
bool L_15 = MaskedTextProvider_IsEditPosition_mB28533BEB0EC65EF5690343556B61D93BFF7B04D(__this, L_14, /*hidden argument*/NULL);
|
|
if (!L_15)
|
|
{
|
|
goto IL_0075;
|
|
}
|
|
}
|
|
{
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_16 = V_1;
|
|
NullCheck(L_16);
|
|
bool L_17 = L_16->get_IsAssigned_3();
|
|
if (L_17)
|
|
{
|
|
goto IL_0075;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_18 = __this->get_testString_20();
|
|
int32_t L_19 = V_0;
|
|
Il2CppChar L_20 = __this->get_promptChar_27();
|
|
NullCheck(L_18);
|
|
StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA(L_18, L_19, L_20, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0075:
|
|
{
|
|
int32_t L_21 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1));
|
|
}
|
|
|
|
IL_0079:
|
|
{
|
|
int32_t L_22 = V_0;
|
|
StringBuilder_t * L_23 = __this->get_testString_20();
|
|
NullCheck(L_23);
|
|
int32_t L_24 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_23, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_22) < ((int32_t)L_24)))
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
|
|
IL_0087:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::get_ResetOnPrompt()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_get_ResetOnPrompt_m7DAEE4DE22E656C711D453F84240D96C9BF8EC5D (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_get_ResetOnPrompt_m7DAEE4DE22E656C711D453F84240D96C9BF8EC5D_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_0 = __this->get_address_of_flagState_18();
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
int32_t L_1 = ((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->get_RESET_ON_PROMPT_14();
|
|
bool L_2 = BitVector32_get_Item_m00C3142256C406B075C4E364C03AC3A89E37A0CB((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_0, L_1, /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MaskedTextProvider::set_ResetOnPrompt(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider_set_ResetOnPrompt_m78FF27069210D9E5E1E18546AAB874F62C09DC50 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, bool ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_set_ResetOnPrompt_m78FF27069210D9E5E1E18546AAB874F62C09DC50_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_0 = __this->get_address_of_flagState_18();
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
int32_t L_1 = ((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->get_RESET_ON_PROMPT_14();
|
|
bool L_2 = ___value0;
|
|
BitVector32_set_Item_mA42604EC8406BCA63DEB3434E3F9D8D16742400C((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_0, L_1, L_2, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::get_ResetOnSpace()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_get_ResetOnSpace_m40890F87C8C68801526F427555BD40B74B5A19CE (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_get_ResetOnSpace_m40890F87C8C68801526F427555BD40B74B5A19CE_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_0 = __this->get_address_of_flagState_18();
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
int32_t L_1 = ((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->get_SKIP_SPACE_16();
|
|
bool L_2 = BitVector32_get_Item_m00C3142256C406B075C4E364C03AC3A89E37A0CB((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_0, L_1, /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MaskedTextProvider::set_ResetOnSpace(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider_set_ResetOnSpace_mB173AB1A0E702AB372552BDB373C3CB2B9A19530 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, bool ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_set_ResetOnSpace_mB173AB1A0E702AB372552BDB373C3CB2B9A19530_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_0 = __this->get_address_of_flagState_18();
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
int32_t L_1 = ((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->get_SKIP_SPACE_16();
|
|
bool L_2 = ___value0;
|
|
BitVector32_set_Item_mA42604EC8406BCA63DEB3434E3F9D8D16742400C((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_0, L_1, L_2, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::get_SkipLiterals()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_get_SkipLiterals_m410CDF3FF094DDE966BA6F3665F696F53FD60312 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_get_SkipLiterals_m410CDF3FF094DDE966BA6F3665F696F53FD60312_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_0 = __this->get_address_of_flagState_18();
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
int32_t L_1 = ((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->get_RESET_ON_LITERALS_15();
|
|
bool L_2 = BitVector32_get_Item_m00C3142256C406B075C4E364C03AC3A89E37A0CB((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_0, L_1, /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MaskedTextProvider::set_SkipLiterals(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider_set_SkipLiterals_m02619ADF4557203B3BA14CC13144AF65DC13D91A (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, bool ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_set_SkipLiterals_m02619ADF4557203B3BA14CC13144AF65DC13D91A_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 * L_0 = __this->get_address_of_flagState_18();
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
int32_t L_1 = ((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->get_RESET_ON_LITERALS_15();
|
|
bool L_2 = ___value0;
|
|
BitVector32_set_Item_mA42604EC8406BCA63DEB3434E3F9D8D16742400C((BitVector32_tDE1C7920F117A283D9595A597572E8910691A0F1 *)L_0, L_1, L_2, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Char System.ComponentModel.MaskedTextProvider::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar MaskedTextProvider_get_Item_m1F3216E154A48C11ADC0610BDA72707797F5400A (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_get_Item_m1F3216E154A48C11ADC0610BDA72707797F5400A_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = ___index0;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___index0;
|
|
StringBuilder_t * L_2 = __this->get_testString_20();
|
|
NullCheck(L_2);
|
|
int32_t L_3 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_2, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_1) < ((int32_t)L_3)))
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_4 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL);
|
|
String_t* L_5 = Int32_ToString_m1D0AF82BDAB5D4710527DD3FEFA6F01246D128A5((int32_t*)(&___index0), L_4, /*hidden argument*/NULL);
|
|
IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * L_6 = (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF *)il2cpp_codegen_object_new(IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var);
|
|
IndexOutOfRangeException__ctor_mCCE2EFF47A0ACB4B2636F63140F94FCEA71A9BCA(L_6, L_5, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, MaskedTextProvider_get_Item_m1F3216E154A48C11ADC0610BDA72707797F5400A_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
StringBuilder_t * L_7 = __this->get_testString_20();
|
|
int32_t L_8 = ___index0;
|
|
NullCheck(L_7);
|
|
Il2CppChar L_9 = StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6(L_7, L_8, /*hidden argument*/NULL);
|
|
return L_9;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::Add(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_Add_m9A5D39043B42155AAB92BA47AB2A4D569B3E78ED (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, Il2CppChar ___input0, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
Il2CppChar L_0 = ___input0;
|
|
bool L_1 = MaskedTextProvider_Add_mA5A872EEEFBB1480D64DECB6C778FC88EA6585F1(__this, L_0, (int32_t*)(&V_0), (int32_t*)(&V_1), /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::Add(System.Char,System.Int32&,System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_Add_mA5A872EEEFBB1480D64DECB6C778FC88EA6585F1 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, Il2CppChar ___input0, int32_t* ___testPosition1, int32_t* ___resultHint2, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = MaskedTextProvider_get_LastAssignedPosition_m50CA253FC2DA86D3EC9C1E5A7F68AA9C5BF25C74(__this, /*hidden argument*/NULL);
|
|
V_0 = L_0;
|
|
int32_t L_1 = V_0;
|
|
StringBuilder_t * L_2 = __this->get_testString_20();
|
|
NullCheck(L_2);
|
|
int32_t L_3 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_2, /*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)1))))))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_4 = ___testPosition1;
|
|
StringBuilder_t * L_5 = __this->get_testString_20();
|
|
NullCheck(L_5);
|
|
int32_t L_6 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_5, /*hidden argument*/NULL);
|
|
*((int32_t*)L_4) = (int32_t)L_6;
|
|
int32_t* L_7 = ___resultHint2;
|
|
*((int32_t*)L_7) = (int32_t)((int32_t)-53);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
int32_t* L_8 = ___testPosition1;
|
|
int32_t L_9 = V_0;
|
|
*((int32_t*)L_8) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
|
|
int32_t* L_10 = ___testPosition1;
|
|
int32_t* L_11 = ___testPosition1;
|
|
int32_t L_12 = *((int32_t*)L_11);
|
|
int32_t L_13 = MaskedTextProvider_FindEditPositionFrom_m72A2B5BA9FE5D20F9A0B149FC86D08B0AD54F672(__this, L_12, (bool)1, /*hidden argument*/NULL);
|
|
*((int32_t*)L_10) = (int32_t)L_13;
|
|
int32_t* L_14 = ___testPosition1;
|
|
int32_t L_15 = *((int32_t*)L_14);
|
|
if ((!(((uint32_t)L_15) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_16 = ___resultHint2;
|
|
*((int32_t*)L_16) = (int32_t)((int32_t)-53);
|
|
int32_t* L_17 = ___testPosition1;
|
|
StringBuilder_t * L_18 = __this->get_testString_20();
|
|
NullCheck(L_18);
|
|
int32_t L_19 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_18, /*hidden argument*/NULL);
|
|
*((int32_t*)L_17) = (int32_t)L_19;
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
Il2CppChar L_20 = ___input0;
|
|
int32_t* L_21 = ___testPosition1;
|
|
int32_t L_22 = *((int32_t*)L_21);
|
|
int32_t* L_23 = ___resultHint2;
|
|
bool L_24 = MaskedTextProvider_TestSetChar_m0B37B59249703B1BDDE39E1AD93BC48A7DA8BB3A(__this, L_20, L_22, (int32_t*)L_23, /*hidden argument*/NULL);
|
|
if (L_24)
|
|
{
|
|
goto IL_0060;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0060:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::Add(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_Add_m7499EF0F9D1793D7A65BD0DE0C7CD1597F5AF55D (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___input0, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
String_t* L_0 = ___input0;
|
|
bool L_1 = MaskedTextProvider_Add_m8F1C287569589396D343CED8C08C58EA36051C0D(__this, L_0, (int32_t*)(&V_0), (int32_t*)(&V_1), /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::Add(System.String,System.Int32&,System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_Add_m8F1C287569589396D343CED8C08C58EA36051C0D (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___input0, int32_t* ___testPosition1, int32_t* ___resultHint2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_Add_m8F1C287569589396D343CED8C08C58EA36051C0D_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___input0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral140F86AAE51AB9E1CDA9B4254FE98A74EB54C1A1, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, MaskedTextProvider_Add_m8F1C287569589396D343CED8C08C58EA36051C0D_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t* L_2 = ___testPosition1;
|
|
int32_t L_3 = MaskedTextProvider_get_LastAssignedPosition_m50CA253FC2DA86D3EC9C1E5A7F68AA9C5BF25C74(__this, /*hidden argument*/NULL);
|
|
*((int32_t*)L_2) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1));
|
|
String_t* L_4 = ___input0;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_4, /*hidden argument*/NULL);
|
|
if (L_5)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_6 = ___resultHint2;
|
|
*((int32_t*)L_6) = (int32_t)2;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
String_t* L_7 = ___input0;
|
|
int32_t* L_8 = ___testPosition1;
|
|
int32_t L_9 = *((int32_t*)L_8);
|
|
int32_t* L_10 = ___testPosition1;
|
|
int32_t* L_11 = ___resultHint2;
|
|
bool L_12 = MaskedTextProvider_TestSetString_m9293EED6116879ACEB15E37AC6CB402BAD21CB9B(__this, L_7, L_9, (int32_t*)L_10, (int32_t*)L_11, /*hidden argument*/NULL);
|
|
return L_12;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MaskedTextProvider::Clear()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider_Clear_m50D2C6A92F7D19B38C0D159A440C35CFC35228F1 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
MaskedTextProvider_Clear_mEAB28B3F9A3C6B60FE898862558024E6C7B35DB3(__this, (int32_t*)(&V_0), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MaskedTextProvider::Clear(System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider_Clear_mEAB28B3F9A3C6B60FE898862558024E6C7B35DB3 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t* ___resultHint0, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->get_assignedCharCount_21();
|
|
if (L_0)
|
|
{
|
|
goto IL_000c;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_1 = ___resultHint0;
|
|
*((int32_t*)L_1) = (int32_t)2;
|
|
return;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
int32_t* L_2 = ___resultHint0;
|
|
*((int32_t*)L_2) = (int32_t)4;
|
|
V_0 = 0;
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
int32_t L_3 = V_0;
|
|
MaskedTextProvider_ResetChar_m98F29F5594B201C92E45A7F7DB8B373A791D7974(__this, L_3, /*hidden argument*/NULL);
|
|
int32_t L_4 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1));
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_5 = V_0;
|
|
StringBuilder_t * L_6 = __this->get_testString_20();
|
|
NullCheck(L_6);
|
|
int32_t L_7 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_6, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_5) < ((int32_t)L_7)))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::FindAssignedEditPositionFrom(System.Int32,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MaskedTextProvider_FindAssignedEditPositionFrom_mBAF2E6FB903959360D5FFEF1FEE756E4960D768A (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___position0, bool ___direction1, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = __this->get_assignedCharCount_21();
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
bool L_1 = ___direction1;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___position0;
|
|
V_0 = L_2;
|
|
StringBuilder_t * L_3 = __this->get_testString_20();
|
|
NullCheck(L_3);
|
|
int32_t L_4 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_3, /*hidden argument*/NULL);
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1));
|
|
goto IL_0023;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
V_0 = 0;
|
|
int32_t L_5 = ___position0;
|
|
V_1 = L_5;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_6 = V_0;
|
|
int32_t L_7 = V_1;
|
|
bool L_8 = ___direction1;
|
|
int32_t L_9 = MaskedTextProvider_FindAssignedEditPositionInRange_m99FEE6803040007A2AC914E2B66D41901B211CE8(__this, L_6, L_7, L_8, /*hidden argument*/NULL);
|
|
return L_9;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::FindAssignedEditPositionInRange(System.Int32,System.Int32,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MaskedTextProvider_FindAssignedEditPositionInRange_m99FEE6803040007A2AC914E2B66D41901B211CE8 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___startPosition0, int32_t ___endPosition1, bool ___direction2, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->get_assignedCharCount_21();
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_1 = ___startPosition0;
|
|
int32_t L_2 = ___endPosition1;
|
|
bool L_3 = ___direction2;
|
|
int32_t L_4 = MaskedTextProvider_FindEditPositionInRange_mA60304FD868B13FB2C61A180EB3CE75C74BBBA9B(__this, L_1, L_2, L_3, (uint8_t)2, /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::FindEditPositionFrom(System.Int32,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MaskedTextProvider_FindEditPositionFrom_m72A2B5BA9FE5D20F9A0B149FC86D08B0AD54F672 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___position0, bool ___direction1, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
bool L_0 = ___direction1;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___position0;
|
|
V_0 = L_1;
|
|
StringBuilder_t * L_2 = __this->get_testString_20();
|
|
NullCheck(L_2);
|
|
int32_t L_3 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_2, /*hidden argument*/NULL);
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)1));
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
V_0 = 0;
|
|
int32_t L_4 = ___position0;
|
|
V_1 = L_4;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
int32_t L_5 = V_0;
|
|
int32_t L_6 = V_1;
|
|
bool L_7 = ___direction1;
|
|
int32_t L_8 = MaskedTextProvider_FindEditPositionInRange_mFAB18DBA8B26EAAD2C895FFC9FC842399BFB8F73(__this, L_5, L_6, L_7, /*hidden argument*/NULL);
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::FindEditPositionInRange(System.Int32,System.Int32,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MaskedTextProvider_FindEditPositionInRange_mFAB18DBA8B26EAAD2C895FFC9FC842399BFB8F73 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___startPosition0, int32_t ___endPosition1, bool ___direction2, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
V_0 = 3;
|
|
int32_t L_0 = ___startPosition0;
|
|
int32_t L_1 = ___endPosition1;
|
|
bool L_2 = ___direction2;
|
|
int32_t L_3 = V_0;
|
|
int32_t L_4 = MaskedTextProvider_FindPositionInRange_m1DF8097A69310EE8E18809DF4A0A8F92D0494FDF(__this, L_0, L_1, L_2, L_3, /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::FindEditPositionInRange(System.Int32,System.Int32,System.Boolean,System.Byte)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MaskedTextProvider_FindEditPositionInRange_mA60304FD868B13FB2C61A180EB3CE75C74BBBA9B (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___startPosition0, int32_t ___endPosition1, bool ___direction2, uint8_t ___assignedStatus3, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_FindEditPositionInRange_mA60304FD868B13FB2C61A180EB3CE75C74BBBA9B_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * V_1 = NULL;
|
|
|
|
IL_0000:
|
|
{
|
|
int32_t L_0 = ___startPosition0;
|
|
int32_t L_1 = ___endPosition1;
|
|
bool L_2 = ___direction2;
|
|
int32_t L_3 = MaskedTextProvider_FindEditPositionInRange_mFAB18DBA8B26EAAD2C895FFC9FC842399BFB8F73(__this, L_0, L_1, L_2, /*hidden argument*/NULL);
|
|
V_0 = L_3;
|
|
int32_t L_4 = V_0;
|
|
if ((((int32_t)L_4) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0050;
|
|
}
|
|
}
|
|
{
|
|
List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 * L_5 = __this->get_stringDescriptor_28();
|
|
int32_t L_6 = V_0;
|
|
NullCheck(L_5);
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_7 = List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_inline(L_5, L_6, /*hidden argument*/List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_RuntimeMethod_var);
|
|
V_1 = L_7;
|
|
uint8_t L_8 = ___assignedStatus3;
|
|
if ((((int32_t)L_8) == ((int32_t)1)))
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_9 = ___assignedStatus3;
|
|
if ((((int32_t)L_9) == ((int32_t)2)))
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_10 = V_1;
|
|
NullCheck(L_10);
|
|
bool L_11 = L_10->get_IsAssigned_3();
|
|
if (L_11)
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_12 = V_0;
|
|
return L_12;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_13 = V_1;
|
|
NullCheck(L_13);
|
|
bool L_14 = L_13->get_IsAssigned_3();
|
|
if (!L_14)
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_15 = V_0;
|
|
return L_15;
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
int32_t L_16 = V_0;
|
|
return L_16;
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
bool L_17 = ___direction2;
|
|
if (!L_17)
|
|
{
|
|
goto IL_0047;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_18 = ___startPosition0;
|
|
___startPosition0 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1));
|
|
goto IL_004c;
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
int32_t L_19 = ___endPosition1;
|
|
___endPosition1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
int32_t L_20 = ___startPosition0;
|
|
int32_t L_21 = ___endPosition1;
|
|
if ((((int32_t)L_20) <= ((int32_t)L_21)))
|
|
{
|
|
goto IL_0000;
|
|
}
|
|
}
|
|
|
|
IL_0050:
|
|
{
|
|
return (-1);
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::FindNonEditPositionFrom(System.Int32,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MaskedTextProvider_FindNonEditPositionFrom_mF49A07987B6C91D905EDD7239EE291AF22D5FDD0 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___position0, bool ___direction1, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
bool L_0 = ___direction1;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___position0;
|
|
V_0 = L_1;
|
|
StringBuilder_t * L_2 = __this->get_testString_20();
|
|
NullCheck(L_2);
|
|
int32_t L_3 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_2, /*hidden argument*/NULL);
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)1));
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
V_0 = 0;
|
|
int32_t L_4 = ___position0;
|
|
V_1 = L_4;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
int32_t L_5 = V_0;
|
|
int32_t L_6 = V_1;
|
|
bool L_7 = ___direction1;
|
|
int32_t L_8 = MaskedTextProvider_FindNonEditPositionInRange_m259C05DC5F6DC27C32B74B9C77E69E0CA203B235(__this, L_5, L_6, L_7, /*hidden argument*/NULL);
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::FindNonEditPositionInRange(System.Int32,System.Int32,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MaskedTextProvider_FindNonEditPositionInRange_m259C05DC5F6DC27C32B74B9C77E69E0CA203B235 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___startPosition0, int32_t ___endPosition1, bool ___direction2, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
V_0 = ((int32_t)12);
|
|
int32_t L_0 = ___startPosition0;
|
|
int32_t L_1 = ___endPosition1;
|
|
bool L_2 = ___direction2;
|
|
int32_t L_3 = V_0;
|
|
int32_t L_4 = MaskedTextProvider_FindPositionInRange_m1DF8097A69310EE8E18809DF4A0A8F92D0494FDF(__this, L_0, L_1, L_2, L_3, /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::FindPositionInRange(System.Int32,System.Int32,System.Boolean,System.ComponentModel.MaskedTextProvider_CharType)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MaskedTextProvider_FindPositionInRange_m1DF8097A69310EE8E18809DF4A0A8F92D0494FDF (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___startPosition0, int32_t ___endPosition1, bool ___direction2, int32_t ___charTypeFlags3, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_FindPositionInRange_m1DF8097A69310EE8E18809DF4A0A8F92D0494FDF_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * V_1 = NULL;
|
|
int32_t G_B9_0 = 0;
|
|
{
|
|
int32_t L_0 = ___startPosition0;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
___startPosition0 = 0;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
int32_t L_1 = ___endPosition1;
|
|
StringBuilder_t * L_2 = __this->get_testString_20();
|
|
NullCheck(L_2);
|
|
int32_t L_3 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_2, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_1) < ((int32_t)L_3)))
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_4 = __this->get_testString_20();
|
|
NullCheck(L_4);
|
|
int32_t L_5 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_4, /*hidden argument*/NULL);
|
|
___endPosition1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)1));
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
int32_t L_6 = ___startPosition0;
|
|
int32_t L_7 = ___endPosition1;
|
|
if ((((int32_t)L_6) <= ((int32_t)L_7)))
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
bool L_8 = ___direction2;
|
|
if (L_8)
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_9 = ___endPosition1;
|
|
int32_t L_10 = L_9;
|
|
___endPosition1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1));
|
|
G_B9_0 = L_10;
|
|
goto IL_003b;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
int32_t L_11 = ___startPosition0;
|
|
int32_t L_12 = L_11;
|
|
___startPosition0 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
|
|
G_B9_0 = L_12;
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
V_0 = G_B9_0;
|
|
List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 * L_13 = __this->get_stringDescriptor_28();
|
|
int32_t L_14 = V_0;
|
|
NullCheck(L_13);
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_15 = List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_inline(L_13, L_14, /*hidden argument*/List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_RuntimeMethod_var);
|
|
V_1 = L_15;
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_16 = V_1;
|
|
NullCheck(L_16);
|
|
int32_t L_17 = L_16->get_CharType_2();
|
|
int32_t L_18 = ___charTypeFlags3;
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_19 = V_1;
|
|
NullCheck(L_19);
|
|
int32_t L_20 = L_19->get_CharType_2();
|
|
if ((!(((uint32_t)((int32_t)((int32_t)L_17&(int32_t)L_18))) == ((uint32_t)L_20))))
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_21 = V_0;
|
|
return L_21;
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
int32_t L_22 = ___startPosition0;
|
|
int32_t L_23 = ___endPosition1;
|
|
if ((((int32_t)L_22) <= ((int32_t)L_23)))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::FindUnassignedEditPositionFrom(System.Int32,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MaskedTextProvider_FindUnassignedEditPositionFrom_m4C22AA416A94E0E7E0DA60E234145B2769889302 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___position0, bool ___direction1, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
bool L_0 = ___direction1;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___position0;
|
|
V_0 = L_1;
|
|
StringBuilder_t * L_2 = __this->get_testString_20();
|
|
NullCheck(L_2);
|
|
int32_t L_3 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_2, /*hidden argument*/NULL);
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)1));
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
V_0 = 0;
|
|
int32_t L_4 = ___position0;
|
|
V_1 = L_4;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
int32_t L_5 = V_0;
|
|
int32_t L_6 = V_1;
|
|
bool L_7 = ___direction1;
|
|
int32_t L_8 = MaskedTextProvider_FindEditPositionInRange_mA60304FD868B13FB2C61A180EB3CE75C74BBBA9B(__this, L_5, L_6, L_7, (uint8_t)1, /*hidden argument*/NULL);
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.MaskedTextProvider::FindUnassignedEditPositionInRange(System.Int32,System.Int32,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MaskedTextProvider_FindUnassignedEditPositionInRange_mF33E0E8947AD60E18E4BCC0FF3A4058884E3DC0F (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___startPosition0, int32_t ___endPosition1, bool ___direction2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_FindUnassignedEditPositionInRange_mF33E0E8947AD60E18E4BCC0FF3A4058884E3DC0F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
|
|
IL_0000:
|
|
{
|
|
int32_t L_0 = ___startPosition0;
|
|
int32_t L_1 = ___endPosition1;
|
|
bool L_2 = ___direction2;
|
|
int32_t L_3 = MaskedTextProvider_FindEditPositionInRange_mA60304FD868B13FB2C61A180EB3CE75C74BBBA9B(__this, L_0, L_1, L_2, (uint8_t)0, /*hidden argument*/NULL);
|
|
V_0 = L_3;
|
|
int32_t L_4 = V_0;
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 * L_5 = __this->get_stringDescriptor_28();
|
|
int32_t L_6 = V_0;
|
|
NullCheck(L_5);
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_7 = List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_inline(L_5, L_6, /*hidden argument*/List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_RuntimeMethod_var);
|
|
NullCheck(L_7);
|
|
bool L_8 = L_7->get_IsAssigned_3();
|
|
if (L_8)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_9 = V_0;
|
|
return L_9;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
bool L_10 = ___direction2;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_11 = ___startPosition0;
|
|
___startPosition0 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1));
|
|
goto IL_0000;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
int32_t L_12 = ___endPosition1;
|
|
___endPosition1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)1));
|
|
goto IL_0000;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::GetOperationResultFromHint(System.ComponentModel.MaskedTextResultHint)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_GetOperationResultFromHint_m69D284FDB584120F64C234BC11D81B1CBE386281 (int32_t ___hint0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___hint0;
|
|
return (bool)((((int32_t)L_0) > ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::InsertAt(System.Char,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_InsertAt_m7E264FD3F645F3EC010C31B9E542EC13D1A871D9 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, Il2CppChar ___input0, int32_t ___position1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___position1;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___position1;
|
|
StringBuilder_t * L_2 = __this->get_testString_20();
|
|
NullCheck(L_2);
|
|
int32_t L_3 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_2, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_1) < ((int32_t)L_3)))
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
String_t* L_4 = Char_ToString_mA42A88FEBA41B72D48BB24373E3101B7A91B6FD8((Il2CppChar*)(&___input0), /*hidden argument*/NULL);
|
|
int32_t L_5 = ___position1;
|
|
bool L_6 = MaskedTextProvider_InsertAt_m386AF5541261B63071927927841CE695988EEDEF(__this, L_4, L_5, /*hidden argument*/NULL);
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::InsertAt(System.Char,System.Int32,System.Int32&,System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_InsertAt_m584F275BE22589E19C03B180F81BF88E2781F162 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, Il2CppChar ___input0, int32_t ___position1, int32_t* ___testPosition2, int32_t* ___resultHint3, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = Char_ToString_mA42A88FEBA41B72D48BB24373E3101B7A91B6FD8((Il2CppChar*)(&___input0), /*hidden argument*/NULL);
|
|
int32_t L_1 = ___position1;
|
|
int32_t* L_2 = ___testPosition2;
|
|
int32_t* L_3 = ___resultHint3;
|
|
bool L_4 = MaskedTextProvider_InsertAt_m0E69353EE243CEDA39A1AA468BAE7B594481F471(__this, L_0, L_1, (int32_t*)L_2, (int32_t*)L_3, /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::InsertAt(System.String,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_InsertAt_m386AF5541261B63071927927841CE695988EEDEF (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___input0, int32_t ___position1, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
String_t* L_0 = ___input0;
|
|
int32_t L_1 = ___position1;
|
|
bool L_2 = MaskedTextProvider_InsertAt_m0E69353EE243CEDA39A1AA468BAE7B594481F471(__this, L_0, L_1, (int32_t*)(&V_0), (int32_t*)(&V_1), /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::InsertAt(System.String,System.Int32,System.Int32&,System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_InsertAt_m0E69353EE243CEDA39A1AA468BAE7B594481F471 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___input0, int32_t ___position1, int32_t* ___testPosition2, int32_t* ___resultHint3, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_InsertAt_m0E69353EE243CEDA39A1AA468BAE7B594481F471_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___input0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral140F86AAE51AB9E1CDA9B4254FE98A74EB54C1A1, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, MaskedTextProvider_InsertAt_m0E69353EE243CEDA39A1AA468BAE7B594481F471_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t L_2 = ___position1;
|
|
if ((((int32_t)L_2) < ((int32_t)0)))
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = ___position1;
|
|
StringBuilder_t * L_4 = __this->get_testString_20();
|
|
NullCheck(L_4);
|
|
int32_t L_5 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_4, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_3) < ((int32_t)L_5)))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
int32_t* L_6 = ___testPosition2;
|
|
int32_t L_7 = ___position1;
|
|
*((int32_t*)L_6) = (int32_t)L_7;
|
|
int32_t* L_8 = ___resultHint3;
|
|
*((int32_t*)L_8) = (int32_t)((int32_t)-55);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
String_t* L_9 = ___input0;
|
|
int32_t L_10 = ___position1;
|
|
int32_t* L_11 = ___testPosition2;
|
|
int32_t* L_12 = ___resultHint3;
|
|
bool L_13 = MaskedTextProvider_InsertAtInt_mE839ED14D8FF954E6FD42A420C3B2710E1F9A2B8(__this, L_9, L_10, (int32_t*)L_11, (int32_t*)L_12, (bool)0, /*hidden argument*/NULL);
|
|
return L_13;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::InsertAtInt(System.String,System.Int32,System.Int32&,System.ComponentModel.MaskedTextResultHint&,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_InsertAtInt_mE839ED14D8FF954E6FD42A420C3B2710E1F9A2B8 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___input0, int32_t ___position1, int32_t* ___testPosition2, int32_t* ___resultHint3, bool ___testOnly4, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_InsertAtInt_mE839ED14D8FF954E6FD42A420C3B2710E1F9A2B8_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
bool V_1 = false;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
{
|
|
String_t* L_0 = ___input0;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_0, /*hidden argument*/NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_2 = ___testPosition2;
|
|
int32_t L_3 = ___position1;
|
|
*((int32_t*)L_2) = (int32_t)L_3;
|
|
int32_t* L_4 = ___resultHint3;
|
|
*((int32_t*)L_4) = (int32_t)2;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
String_t* L_5 = ___input0;
|
|
int32_t L_6 = ___position1;
|
|
int32_t* L_7 = ___testPosition2;
|
|
int32_t* L_8 = ___resultHint3;
|
|
bool L_9 = MaskedTextProvider_TestString_mFEF74E01CEAA8F7593520754B78CA41411E2C2DA(__this, L_5, L_6, (int32_t*)L_7, (int32_t*)L_8, /*hidden argument*/NULL);
|
|
if (L_9)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
int32_t L_10 = ___position1;
|
|
int32_t L_11 = MaskedTextProvider_FindEditPositionFrom_m72A2B5BA9FE5D20F9A0B149FC86D08B0AD54F672(__this, L_10, (bool)1, /*hidden argument*/NULL);
|
|
V_0 = L_11;
|
|
int32_t L_12 = V_0;
|
|
int32_t* L_13 = ___testPosition2;
|
|
int32_t L_14 = *((int32_t*)L_13);
|
|
int32_t L_15 = MaskedTextProvider_FindAssignedEditPositionInRange_m99FEE6803040007A2AC914E2B66D41901B211CE8(__this, L_12, L_14, (bool)1, /*hidden argument*/NULL);
|
|
V_1 = (bool)((((int32_t)((((int32_t)L_15) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
int32_t L_16 = MaskedTextProvider_get_LastAssignedPosition_m50CA253FC2DA86D3EC9C1E5A7F68AA9C5BF25C74(__this, /*hidden argument*/NULL);
|
|
V_2 = L_16;
|
|
bool L_17 = V_1;
|
|
if (!L_17)
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_18 = ___testPosition2;
|
|
int32_t L_19 = *((int32_t*)L_18);
|
|
StringBuilder_t * L_20 = __this->get_testString_20();
|
|
NullCheck(L_20);
|
|
int32_t L_21 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_20, /*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_19) == ((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)1))))))
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_22 = ___resultHint3;
|
|
*((int32_t*)L_22) = (int32_t)((int32_t)-53);
|
|
int32_t* L_23 = ___testPosition2;
|
|
StringBuilder_t * L_24 = __this->get_testString_20();
|
|
NullCheck(L_24);
|
|
int32_t L_25 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_24, /*hidden argument*/NULL);
|
|
*((int32_t*)L_23) = (int32_t)L_25;
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
int32_t* L_26 = ___testPosition2;
|
|
int32_t L_27 = *((int32_t*)L_26);
|
|
int32_t L_28 = MaskedTextProvider_FindEditPositionFrom_m72A2B5BA9FE5D20F9A0B149FC86D08B0AD54F672(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)), (bool)1, /*hidden argument*/NULL);
|
|
V_3 = L_28;
|
|
bool L_29 = V_1;
|
|
if (!L_29)
|
|
{
|
|
goto IL_00ef;
|
|
}
|
|
}
|
|
{
|
|
V_4 = 0;
|
|
}
|
|
|
|
IL_007b:
|
|
{
|
|
int32_t L_30 = V_3;
|
|
if ((!(((uint32_t)L_30) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0093;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_31 = ___resultHint3;
|
|
*((int32_t*)L_31) = (int32_t)((int32_t)-53);
|
|
int32_t* L_32 = ___testPosition2;
|
|
StringBuilder_t * L_33 = __this->get_testString_20();
|
|
NullCheck(L_33);
|
|
int32_t L_34 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_33, /*hidden argument*/NULL);
|
|
*((int32_t*)L_32) = (int32_t)L_34;
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0093:
|
|
{
|
|
List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 * L_35 = __this->get_stringDescriptor_28();
|
|
int32_t L_36 = V_0;
|
|
NullCheck(L_35);
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_37 = List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_inline(L_35, L_36, /*hidden argument*/List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_RuntimeMethod_var);
|
|
NullCheck(L_37);
|
|
bool L_38 = L_37->get_IsAssigned_3();
|
|
if (!L_38)
|
|
{
|
|
goto IL_00c7;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_39 = __this->get_testString_20();
|
|
int32_t L_40 = V_0;
|
|
NullCheck(L_39);
|
|
Il2CppChar L_41 = StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6(L_39, L_40, /*hidden argument*/NULL);
|
|
int32_t L_42 = V_3;
|
|
bool L_43 = MaskedTextProvider_TestChar_mAC74996A38215989049A56253C5D0267D8C9CED1(__this, L_41, L_42, (int32_t*)(&V_4), /*hidden argument*/NULL);
|
|
if (L_43)
|
|
{
|
|
goto IL_00c7;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_44 = ___resultHint3;
|
|
int32_t L_45 = V_4;
|
|
*((int32_t*)L_44) = (int32_t)L_45;
|
|
int32_t* L_46 = ___testPosition2;
|
|
int32_t L_47 = V_3;
|
|
*((int32_t*)L_46) = (int32_t)L_47;
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00c7:
|
|
{
|
|
int32_t L_48 = V_0;
|
|
int32_t L_49 = V_2;
|
|
if ((((int32_t)L_48) == ((int32_t)L_49)))
|
|
{
|
|
goto IL_00e3;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_50 = V_0;
|
|
int32_t L_51 = MaskedTextProvider_FindEditPositionFrom_m72A2B5BA9FE5D20F9A0B149FC86D08B0AD54F672(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_50, (int32_t)1)), (bool)1, /*hidden argument*/NULL);
|
|
V_0 = L_51;
|
|
int32_t L_52 = V_3;
|
|
int32_t L_53 = MaskedTextProvider_FindEditPositionFrom_m72A2B5BA9FE5D20F9A0B149FC86D08B0AD54F672(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_52, (int32_t)1)), (bool)1, /*hidden argument*/NULL);
|
|
V_3 = L_53;
|
|
goto IL_007b;
|
|
}
|
|
|
|
IL_00e3:
|
|
{
|
|
int32_t L_54 = V_4;
|
|
int32_t* L_55 = ___resultHint3;
|
|
int32_t L_56 = *((int32_t*)L_55);
|
|
if ((((int32_t)L_54) <= ((int32_t)L_56)))
|
|
{
|
|
goto IL_00ef;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_57 = ___resultHint3;
|
|
int32_t L_58 = V_4;
|
|
*((int32_t*)L_57) = (int32_t)L_58;
|
|
}
|
|
|
|
IL_00ef:
|
|
{
|
|
bool L_59 = ___testOnly4;
|
|
if (!L_59)
|
|
{
|
|
goto IL_00f5;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_00f5:
|
|
{
|
|
bool L_60 = V_1;
|
|
if (!L_60)
|
|
{
|
|
goto IL_0143;
|
|
}
|
|
}
|
|
{
|
|
goto IL_013f;
|
|
}
|
|
|
|
IL_00fa:
|
|
{
|
|
List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 * L_61 = __this->get_stringDescriptor_28();
|
|
int32_t L_62 = V_0;
|
|
NullCheck(L_61);
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_63 = List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_inline(L_61, L_62, /*hidden argument*/List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_RuntimeMethod_var);
|
|
NullCheck(L_63);
|
|
bool L_64 = L_63->get_IsAssigned_3();
|
|
if (!L_64)
|
|
{
|
|
goto IL_0122;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_65 = __this->get_testString_20();
|
|
int32_t L_66 = V_0;
|
|
NullCheck(L_65);
|
|
Il2CppChar L_67 = StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6(L_65, L_66, /*hidden argument*/NULL);
|
|
int32_t L_68 = V_3;
|
|
MaskedTextProvider_SetChar_m73B70F3714708050D8A2D543741150DC4AD0A16D(__this, L_67, L_68, /*hidden argument*/NULL);
|
|
goto IL_0129;
|
|
}
|
|
|
|
IL_0122:
|
|
{
|
|
int32_t L_69 = V_3;
|
|
MaskedTextProvider_ResetChar_m98F29F5594B201C92E45A7F7DB8B373A791D7974(__this, L_69, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0129:
|
|
{
|
|
int32_t L_70 = V_3;
|
|
int32_t L_71 = MaskedTextProvider_FindEditPositionFrom_m72A2B5BA9FE5D20F9A0B149FC86D08B0AD54F672(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_70, (int32_t)1)), (bool)0, /*hidden argument*/NULL);
|
|
V_3 = L_71;
|
|
int32_t L_72 = V_0;
|
|
int32_t L_73 = MaskedTextProvider_FindEditPositionFrom_m72A2B5BA9FE5D20F9A0B149FC86D08B0AD54F672(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_72, (int32_t)1)), (bool)0, /*hidden argument*/NULL);
|
|
V_0 = L_73;
|
|
}
|
|
|
|
IL_013f:
|
|
{
|
|
int32_t L_74 = V_0;
|
|
int32_t L_75 = ___position1;
|
|
if ((((int32_t)L_74) >= ((int32_t)L_75)))
|
|
{
|
|
goto IL_00fa;
|
|
}
|
|
}
|
|
|
|
IL_0143:
|
|
{
|
|
String_t* L_76 = ___input0;
|
|
int32_t L_77 = ___position1;
|
|
MaskedTextProvider_SetString_mAFF76911CC11F891E10D241C57C0775D1394EA8C(__this, L_76, L_77, /*hidden argument*/NULL);
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::IsAscii(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_IsAscii_mEE98835FEB29B30F9399FB4A5BBBF849FDF9F0BA (Il2CppChar ___c0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppChar L_0 = ___c0;
|
|
if ((((int32_t)L_0) < ((int32_t)((int32_t)33))))
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_1 = ___c0;
|
|
return (bool)((((int32_t)((((int32_t)L_1) > ((int32_t)((int32_t)126)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::IsAciiAlphanumeric(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_IsAciiAlphanumeric_m3CE95C49948C10F29F91947E3121456A959E0423 (Il2CppChar ___c0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppChar L_0 = ___c0;
|
|
if ((((int32_t)L_0) < ((int32_t)((int32_t)48))))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_1 = ___c0;
|
|
if ((((int32_t)L_1) <= ((int32_t)((int32_t)57))))
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
Il2CppChar L_2 = ___c0;
|
|
if ((((int32_t)L_2) < ((int32_t)((int32_t)65))))
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_3 = ___c0;
|
|
if ((((int32_t)L_3) <= ((int32_t)((int32_t)90))))
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
Il2CppChar L_4 = ___c0;
|
|
if ((((int32_t)L_4) < ((int32_t)((int32_t)97))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_5 = ___c0;
|
|
return (bool)((((int32_t)((((int32_t)L_5) > ((int32_t)((int32_t)122)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::IsAlphanumeric(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_IsAlphanumeric_m43616E92043E75DDF9E6D83962B05EA6801134CA (Il2CppChar ___c0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_IsAlphanumeric_m43616E92043E75DDF9E6D83962B05EA6801134CA_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Il2CppChar L_0 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_1 = Char_IsLetter_mCC7F387F16C2DE7C85B6A1A0C5BC75D92A813DFE(L_0, /*hidden argument*/NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_2 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_3 = Char_IsDigit_m29508E0B60DAE54350BDC3DED0D42895DBA4087E(L_2, /*hidden argument*/NULL);
|
|
return L_3;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::IsAsciiLetter(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_IsAsciiLetter_mFF7FA71C40F867B46B8A276990ED6760E379C909 (Il2CppChar ___c0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppChar L_0 = ___c0;
|
|
if ((((int32_t)L_0) < ((int32_t)((int32_t)65))))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_1 = ___c0;
|
|
if ((((int32_t)L_1) <= ((int32_t)((int32_t)90))))
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
Il2CppChar L_2 = ___c0;
|
|
if ((((int32_t)L_2) < ((int32_t)((int32_t)97))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_3 = ___c0;
|
|
return (bool)((((int32_t)((((int32_t)L_3) > ((int32_t)((int32_t)122)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::IsAvailablePosition(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_IsAvailablePosition_m1B5B56F2F530B3D311342111DA7CD60467C14255 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___position0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_IsAvailablePosition_m1B5B56F2F530B3D311342111DA7CD60467C14255_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * V_0 = NULL;
|
|
{
|
|
int32_t L_0 = ___position0;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___position0;
|
|
StringBuilder_t * L_2 = __this->get_testString_20();
|
|
NullCheck(L_2);
|
|
int32_t L_3 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_2, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_1) < ((int32_t)L_3)))
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 * L_4 = __this->get_stringDescriptor_28();
|
|
int32_t L_5 = ___position0;
|
|
NullCheck(L_4);
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_6 = List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_inline(L_4, L_5, /*hidden argument*/List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_RuntimeMethod_var);
|
|
V_0 = L_6;
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_7 = V_0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
bool L_8 = MaskedTextProvider_IsEditPosition_m8614884878C3CE2E788A9E90FF6B2BFA296730DE(L_7, /*hidden argument*/NULL);
|
|
if (!L_8)
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_9 = V_0;
|
|
NullCheck(L_9);
|
|
bool L_10 = L_9->get_IsAssigned_3();
|
|
return (bool)((((int32_t)L_10) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::IsEditPosition(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_IsEditPosition_mB28533BEB0EC65EF5690343556B61D93BFF7B04D (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___position0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_IsEditPosition_mB28533BEB0EC65EF5690343556B61D93BFF7B04D_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = ___position0;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___position0;
|
|
StringBuilder_t * L_2 = __this->get_testString_20();
|
|
NullCheck(L_2);
|
|
int32_t L_3 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_2, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_1) < ((int32_t)L_3)))
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 * L_4 = __this->get_stringDescriptor_28();
|
|
int32_t L_5 = ___position0;
|
|
NullCheck(L_4);
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_6 = List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_inline(L_4, L_5, /*hidden argument*/List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_RuntimeMethod_var);
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
bool L_7 = MaskedTextProvider_IsEditPosition_m8614884878C3CE2E788A9E90FF6B2BFA296730DE(L_6, /*hidden argument*/NULL);
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::IsEditPosition(System.ComponentModel.MaskedTextProvider_CharDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_IsEditPosition_m8614884878C3CE2E788A9E90FF6B2BFA296730DE (CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * ___charDescriptor0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_0 = ___charDescriptor0;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = L_0->get_CharType_2();
|
|
if ((((int32_t)L_1) == ((int32_t)2)))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_2 = ___charDescriptor0;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = L_2->get_CharType_2();
|
|
return (bool)((((int32_t)L_3) == ((int32_t)1))? 1 : 0);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::IsLiteralPosition(System.ComponentModel.MaskedTextProvider_CharDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_IsLiteralPosition_m1B0D1B7B71CFC518C041DE789076534D1F08ED82 (CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * ___charDescriptor0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_0 = ___charDescriptor0;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = L_0->get_CharType_2();
|
|
if ((((int32_t)L_1) == ((int32_t)8)))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_2 = ___charDescriptor0;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = L_2->get_CharType_2();
|
|
return (bool)((((int32_t)L_3) == ((int32_t)4))? 1 : 0);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::IsPrintableChar(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_IsPrintableChar_m1DBB3F4195B64CD712FF8D108CC61513358031EC (Il2CppChar ___c0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_IsPrintableChar_m1DBB3F4195B64CD712FF8D108CC61513358031EC_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Il2CppChar L_0 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_1 = Char_IsLetterOrDigit_mD7307B3157DFA4EC20D58F68ACB6A9793D3A8292(L_0, /*hidden argument*/NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_2 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_3 = Char_IsPunctuation_m2F82DCD9CE2CBED034F8CF39E247BBB065935D51(L_2, /*hidden argument*/NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_4 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_5 = Char_IsSymbol_m5F2F2AD31BDB3A9D090B5C12E2A356E3FF600A4F(L_4, /*hidden argument*/NULL);
|
|
if (L_5)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_6 = ___c0;
|
|
return (bool)((((int32_t)L_6) == ((int32_t)((int32_t)32)))? 1 : 0);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::IsValidInputChar(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_IsValidInputChar_m29D269997A442703EF154BDE00B7118026886938 (Il2CppChar ___c0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_IsValidInputChar_m29D269997A442703EF154BDE00B7118026886938_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Il2CppChar L_0 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
bool L_1 = MaskedTextProvider_IsPrintableChar_m1DBB3F4195B64CD712FF8D108CC61513358031EC(L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::IsValidMaskChar(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_IsValidMaskChar_m71BFCE23254FF5B99D5690EE08B43AFD35C35FBC (Il2CppChar ___c0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_IsValidMaskChar_m71BFCE23254FF5B99D5690EE08B43AFD35C35FBC_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Il2CppChar L_0 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
bool L_1 = MaskedTextProvider_IsPrintableChar_m1DBB3F4195B64CD712FF8D108CC61513358031EC(L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::IsValidPasswordChar(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_IsValidPasswordChar_mB81DAF880124B6191F488B7F9A6D0747B8174FB5 (Il2CppChar ___c0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_IsValidPasswordChar_mB81DAF880124B6191F488B7F9A6D0747B8174FB5_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Il2CppChar L_0 = ___c0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
bool L_1 = MaskedTextProvider_IsPrintableChar_m1DBB3F4195B64CD712FF8D108CC61513358031EC(L_0, /*hidden argument*/NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_2 = ___c0;
|
|
return (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::Remove()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_Remove_mF99B6F5775FAADA9E64A540918BFEA5695C4F5D3 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
bool L_0 = MaskedTextProvider_Remove_mF299A8A20BDB386CE8FEBBE41A6D947A05372944(__this, (int32_t*)(&V_0), (int32_t*)(&V_1), /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::Remove(System.Int32&,System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_Remove_mF299A8A20BDB386CE8FEBBE41A6D947A05372944 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t* ___testPosition0, int32_t* ___resultHint1, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = MaskedTextProvider_get_LastAssignedPosition_m50CA253FC2DA86D3EC9C1E5A7F68AA9C5BF25C74(__this, /*hidden argument*/NULL);
|
|
V_0 = L_0;
|
|
int32_t L_1 = V_0;
|
|
if ((!(((uint32_t)L_1) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_2 = ___testPosition0;
|
|
*((int32_t*)L_2) = (int32_t)0;
|
|
int32_t* L_3 = ___resultHint1;
|
|
*((int32_t*)L_3) = (int32_t)2;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
MaskedTextProvider_ResetChar_m98F29F5594B201C92E45A7F7DB8B373A791D7974(__this, L_4, /*hidden argument*/NULL);
|
|
int32_t* L_5 = ___testPosition0;
|
|
int32_t L_6 = V_0;
|
|
*((int32_t*)L_5) = (int32_t)L_6;
|
|
int32_t* L_7 = ___resultHint1;
|
|
*((int32_t*)L_7) = (int32_t)4;
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::RemoveAt(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_RemoveAt_mF9F77EBF5CC4086EDA8F316F6534D08BC609F5A5 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___position0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___position0;
|
|
int32_t L_1 = ___position0;
|
|
bool L_2 = MaskedTextProvider_RemoveAt_m160C59667BB09024DDCA4A1A77CDBC3F802E91C8(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::RemoveAt(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_RemoveAt_m160C59667BB09024DDCA4A1A77CDBC3F802E91C8 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___startPosition0, int32_t ___endPosition1, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = ___startPosition0;
|
|
int32_t L_1 = ___endPosition1;
|
|
bool L_2 = MaskedTextProvider_RemoveAt_m9BB446CA1E9495316019AE62420F3C75BF37C30A(__this, L_0, L_1, (int32_t*)(&V_0), (int32_t*)(&V_1), /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::RemoveAt(System.Int32,System.Int32,System.Int32&,System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_RemoveAt_m9BB446CA1E9495316019AE62420F3C75BF37C30A (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___startPosition0, int32_t ___endPosition1, int32_t* ___testPosition2, int32_t* ___resultHint3, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___endPosition1;
|
|
StringBuilder_t * L_1 = __this->get_testString_20();
|
|
NullCheck(L_1);
|
|
int32_t L_2 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_1, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_0) < ((int32_t)L_2)))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_3 = ___testPosition2;
|
|
int32_t L_4 = ___endPosition1;
|
|
*((int32_t*)L_3) = (int32_t)L_4;
|
|
int32_t* L_5 = ___resultHint3;
|
|
*((int32_t*)L_5) = (int32_t)((int32_t)-55);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
int32_t L_6 = ___startPosition0;
|
|
if ((((int32_t)L_6) < ((int32_t)0)))
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7 = ___startPosition0;
|
|
int32_t L_8 = ___endPosition1;
|
|
if ((((int32_t)L_7) <= ((int32_t)L_8)))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
int32_t* L_9 = ___testPosition2;
|
|
int32_t L_10 = ___startPosition0;
|
|
*((int32_t*)L_9) = (int32_t)L_10;
|
|
int32_t* L_11 = ___resultHint3;
|
|
*((int32_t*)L_11) = (int32_t)((int32_t)-55);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
int32_t L_12 = ___startPosition0;
|
|
int32_t L_13 = ___endPosition1;
|
|
int32_t* L_14 = ___testPosition2;
|
|
int32_t* L_15 = ___resultHint3;
|
|
bool L_16 = MaskedTextProvider_RemoveAtInt_mEB337BF8D99A98C7B0C1DD6B36AD1ECC3537BADC(__this, L_12, L_13, (int32_t*)L_14, (int32_t*)L_15, (bool)0, /*hidden argument*/NULL);
|
|
return L_16;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::RemoveAtInt(System.Int32,System.Int32,System.Int32&,System.ComponentModel.MaskedTextResultHint&,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_RemoveAtInt_mEB337BF8D99A98C7B0C1DD6B36AD1ECC3537BADC (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___startPosition0, int32_t ___endPosition1, int32_t* ___testPosition2, int32_t* ___resultHint3, bool ___testOnly4, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_RemoveAtInt_mEB337BF8D99A98C7B0C1DD6B36AD1ECC3537BADC_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
Il2CppChar V_5 = 0x0;
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * V_6 = NULL;
|
|
Il2CppChar V_7 = 0x0;
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * V_8 = NULL;
|
|
int32_t G_B5_0 = 0;
|
|
int32_t G_B4_0 = 0;
|
|
{
|
|
int32_t L_0 = MaskedTextProvider_get_LastAssignedPosition_m50CA253FC2DA86D3EC9C1E5A7F68AA9C5BF25C74(__this, /*hidden argument*/NULL);
|
|
V_0 = L_0;
|
|
int32_t L_1 = ___startPosition0;
|
|
int32_t L_2 = ___endPosition1;
|
|
int32_t L_3 = MaskedTextProvider_FindEditPositionInRange_mFAB18DBA8B26EAAD2C895FFC9FC842399BFB8F73(__this, L_1, L_2, (bool)1, /*hidden argument*/NULL);
|
|
V_1 = L_3;
|
|
int32_t* L_4 = ___resultHint3;
|
|
*((int32_t*)L_4) = (int32_t)2;
|
|
int32_t L_5 = V_1;
|
|
if ((((int32_t)L_5) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = V_1;
|
|
int32_t L_7 = V_0;
|
|
if ((((int32_t)L_6) <= ((int32_t)L_7)))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
int32_t* L_8 = ___testPosition2;
|
|
int32_t L_9 = ___startPosition0;
|
|
*((int32_t*)L_8) = (int32_t)L_9;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
int32_t* L_10 = ___testPosition2;
|
|
int32_t L_11 = ___startPosition0;
|
|
*((int32_t*)L_10) = (int32_t)L_11;
|
|
int32_t L_12 = ___endPosition1;
|
|
int32_t L_13 = V_0;
|
|
int32_t L_14 = ___startPosition0;
|
|
int32_t L_15 = ___endPosition1;
|
|
int32_t L_16 = MaskedTextProvider_FindAssignedEditPositionInRange_m99FEE6803040007A2AC914E2B66D41901B211CE8(__this, L_14, L_15, (bool)1, /*hidden argument*/NULL);
|
|
G_B4_0 = ((((int32_t)L_12) < ((int32_t)L_13))? 1 : 0);
|
|
if ((((int32_t)L_16) == ((int32_t)(-1))))
|
|
{
|
|
G_B5_0 = ((((int32_t)L_12) < ((int32_t)L_13))? 1 : 0);
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_17 = ___resultHint3;
|
|
*((int32_t*)L_17) = (int32_t)4;
|
|
G_B5_0 = G_B4_0;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
if (!G_B5_0)
|
|
{
|
|
goto IL_012d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_18 = ___endPosition1;
|
|
int32_t L_19 = MaskedTextProvider_FindEditPositionFrom_m72A2B5BA9FE5D20F9A0B149FC86D08B0AD54F672(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)), (bool)1, /*hidden argument*/NULL);
|
|
V_2 = L_19;
|
|
int32_t L_20 = V_2;
|
|
V_3 = L_20;
|
|
int32_t L_21 = V_1;
|
|
___startPosition0 = L_21;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
StringBuilder_t * L_22 = __this->get_testString_20();
|
|
int32_t L_23 = V_2;
|
|
NullCheck(L_22);
|
|
Il2CppChar L_24 = StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6(L_22, L_23, /*hidden argument*/NULL);
|
|
V_5 = L_24;
|
|
List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 * L_25 = __this->get_stringDescriptor_28();
|
|
int32_t L_26 = V_2;
|
|
NullCheck(L_25);
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_27 = List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_inline(L_25, L_26, /*hidden argument*/List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_RuntimeMethod_var);
|
|
V_6 = L_27;
|
|
Il2CppChar L_28 = V_5;
|
|
Il2CppChar L_29 = MaskedTextProvider_get_PromptChar_m636160F1EE3A969F32E034B7FCD544D289DAA01A_inline(__this, /*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_28) == ((uint32_t)L_29))))
|
|
{
|
|
goto IL_007d;
|
|
}
|
|
}
|
|
{
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_30 = V_6;
|
|
NullCheck(L_30);
|
|
bool L_31 = L_30->get_IsAssigned_3();
|
|
if (!L_31)
|
|
{
|
|
goto IL_0094;
|
|
}
|
|
}
|
|
|
|
IL_007d:
|
|
{
|
|
Il2CppChar L_32 = V_5;
|
|
int32_t L_33 = V_1;
|
|
bool L_34 = MaskedTextProvider_TestChar_mAC74996A38215989049A56253C5D0267D8C9CED1(__this, L_32, L_33, (int32_t*)(&V_4), /*hidden argument*/NULL);
|
|
if (L_34)
|
|
{
|
|
goto IL_0094;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_35 = ___resultHint3;
|
|
int32_t L_36 = V_4;
|
|
*((int32_t*)L_35) = (int32_t)L_36;
|
|
int32_t* L_37 = ___testPosition2;
|
|
int32_t L_38 = V_1;
|
|
*((int32_t*)L_37) = (int32_t)L_38;
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0094:
|
|
{
|
|
int32_t L_39 = V_2;
|
|
int32_t L_40 = V_0;
|
|
if ((((int32_t)L_39) == ((int32_t)L_40)))
|
|
{
|
|
goto IL_00b0;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_41 = V_2;
|
|
int32_t L_42 = MaskedTextProvider_FindEditPositionFrom_m72A2B5BA9FE5D20F9A0B149FC86D08B0AD54F672(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1)), (bool)1, /*hidden argument*/NULL);
|
|
V_2 = L_42;
|
|
int32_t L_43 = V_1;
|
|
int32_t L_44 = MaskedTextProvider_FindEditPositionFrom_m72A2B5BA9FE5D20F9A0B149FC86D08B0AD54F672(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1)), (bool)1, /*hidden argument*/NULL);
|
|
V_1 = L_44;
|
|
goto IL_004e;
|
|
}
|
|
|
|
IL_00b0:
|
|
{
|
|
int32_t* L_45 = ___resultHint3;
|
|
int32_t L_46 = *((int32_t*)L_45);
|
|
if ((((int32_t)3) <= ((int32_t)L_46)))
|
|
{
|
|
goto IL_00ba;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_47 = ___resultHint3;
|
|
*((int32_t*)L_47) = (int32_t)3;
|
|
}
|
|
|
|
IL_00ba:
|
|
{
|
|
bool L_48 = ___testOnly4;
|
|
if (!L_48)
|
|
{
|
|
goto IL_00c0;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_00c0:
|
|
{
|
|
int32_t L_49 = V_3;
|
|
V_2 = L_49;
|
|
int32_t L_50 = ___startPosition0;
|
|
V_1 = L_50;
|
|
}
|
|
|
|
IL_00c4:
|
|
{
|
|
StringBuilder_t * L_51 = __this->get_testString_20();
|
|
int32_t L_52 = V_2;
|
|
NullCheck(L_51);
|
|
Il2CppChar L_53 = StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6(L_51, L_52, /*hidden argument*/NULL);
|
|
V_7 = L_53;
|
|
List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 * L_54 = __this->get_stringDescriptor_28();
|
|
int32_t L_55 = V_2;
|
|
NullCheck(L_54);
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_56 = List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_inline(L_54, L_55, /*hidden argument*/List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_RuntimeMethod_var);
|
|
V_8 = L_56;
|
|
Il2CppChar L_57 = V_7;
|
|
Il2CppChar L_58 = MaskedTextProvider_get_PromptChar_m636160F1EE3A969F32E034B7FCD544D289DAA01A_inline(__this, /*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_57) == ((uint32_t)L_58))))
|
|
{
|
|
goto IL_00fc;
|
|
}
|
|
}
|
|
{
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_59 = V_8;
|
|
NullCheck(L_59);
|
|
bool L_60 = L_59->get_IsAssigned_3();
|
|
if (L_60)
|
|
{
|
|
goto IL_00fc;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_61 = V_1;
|
|
MaskedTextProvider_ResetChar_m98F29F5594B201C92E45A7F7DB8B373A791D7974(__this, L_61, /*hidden argument*/NULL);
|
|
goto IL_010c;
|
|
}
|
|
|
|
IL_00fc:
|
|
{
|
|
Il2CppChar L_62 = V_7;
|
|
int32_t L_63 = V_1;
|
|
MaskedTextProvider_SetChar_m73B70F3714708050D8A2D543741150DC4AD0A16D(__this, L_62, L_63, /*hidden argument*/NULL);
|
|
int32_t L_64 = V_2;
|
|
MaskedTextProvider_ResetChar_m98F29F5594B201C92E45A7F7DB8B373A791D7974(__this, L_64, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_010c:
|
|
{
|
|
int32_t L_65 = V_2;
|
|
int32_t L_66 = V_0;
|
|
if ((((int32_t)L_65) == ((int32_t)L_66)))
|
|
{
|
|
goto IL_0128;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_67 = V_2;
|
|
int32_t L_68 = MaskedTextProvider_FindEditPositionFrom_m72A2B5BA9FE5D20F9A0B149FC86D08B0AD54F672(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_67, (int32_t)1)), (bool)1, /*hidden argument*/NULL);
|
|
V_2 = L_68;
|
|
int32_t L_69 = V_1;
|
|
int32_t L_70 = MaskedTextProvider_FindEditPositionFrom_m72A2B5BA9FE5D20F9A0B149FC86D08B0AD54F672(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_69, (int32_t)1)), (bool)1, /*hidden argument*/NULL);
|
|
V_1 = L_70;
|
|
goto IL_00c4;
|
|
}
|
|
|
|
IL_0128:
|
|
{
|
|
int32_t L_71 = V_1;
|
|
___startPosition0 = ((int32_t)il2cpp_codegen_add((int32_t)L_71, (int32_t)1));
|
|
}
|
|
|
|
IL_012d:
|
|
{
|
|
int32_t L_72 = ___startPosition0;
|
|
int32_t L_73 = ___endPosition1;
|
|
if ((((int32_t)L_72) > ((int32_t)L_73)))
|
|
{
|
|
goto IL_0139;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_74 = ___startPosition0;
|
|
int32_t L_75 = ___endPosition1;
|
|
MaskedTextProvider_ResetString_mF3E4814666BE1F17CD83EC04662D430BEBD1AB2C(__this, L_74, L_75, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0139:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::Replace(System.Char,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_Replace_m6956AFF52D6BD77A812FAEE12B0BB64EAFA0234C (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, Il2CppChar ___input0, int32_t ___position1, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
Il2CppChar L_0 = ___input0;
|
|
int32_t L_1 = ___position1;
|
|
bool L_2 = MaskedTextProvider_Replace_m43E2CA96E512724063E515E749115EF5979ADC05(__this, L_0, L_1, (int32_t*)(&V_0), (int32_t*)(&V_1), /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::Replace(System.Char,System.Int32,System.Int32&,System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_Replace_m43E2CA96E512724063E515E749115EF5979ADC05 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, Il2CppChar ___input0, int32_t ___position1, int32_t* ___testPosition2, int32_t* ___resultHint3, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___position1;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___position1;
|
|
StringBuilder_t * L_2 = __this->get_testString_20();
|
|
NullCheck(L_2);
|
|
int32_t L_3 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_2, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_1) < ((int32_t)L_3)))
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
int32_t* L_4 = ___testPosition2;
|
|
int32_t L_5 = ___position1;
|
|
*((int32_t*)L_4) = (int32_t)L_5;
|
|
int32_t* L_6 = ___resultHint3;
|
|
*((int32_t*)L_6) = (int32_t)((int32_t)-55);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
int32_t* L_7 = ___testPosition2;
|
|
int32_t L_8 = ___position1;
|
|
*((int32_t*)L_7) = (int32_t)L_8;
|
|
Il2CppChar L_9 = ___input0;
|
|
int32_t* L_10 = ___testPosition2;
|
|
int32_t L_11 = *((int32_t*)L_10);
|
|
bool L_12 = MaskedTextProvider_TestEscapeChar_mC839F205DD58646AB41D153330BE9FF7565D3C22(__this, L_9, L_11, /*hidden argument*/NULL);
|
|
if (L_12)
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_13 = ___testPosition2;
|
|
int32_t* L_14 = ___testPosition2;
|
|
int32_t L_15 = *((int32_t*)L_14);
|
|
int32_t L_16 = MaskedTextProvider_FindEditPositionFrom_m72A2B5BA9FE5D20F9A0B149FC86D08B0AD54F672(__this, L_15, (bool)1, /*hidden argument*/NULL);
|
|
*((int32_t*)L_13) = (int32_t)L_16;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
int32_t* L_17 = ___testPosition2;
|
|
int32_t L_18 = *((int32_t*)L_17);
|
|
if ((!(((uint32_t)L_18) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_19 = ___resultHint3;
|
|
*((int32_t*)L_19) = (int32_t)((int32_t)-53);
|
|
int32_t* L_20 = ___testPosition2;
|
|
int32_t L_21 = ___position1;
|
|
*((int32_t*)L_20) = (int32_t)L_21;
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
Il2CppChar L_22 = ___input0;
|
|
int32_t* L_23 = ___testPosition2;
|
|
int32_t L_24 = *((int32_t*)L_23);
|
|
int32_t* L_25 = ___resultHint3;
|
|
bool L_26 = MaskedTextProvider_TestSetChar_m0B37B59249703B1BDDE39E1AD93BC48A7DA8BB3A(__this, L_22, L_24, (int32_t*)L_25, /*hidden argument*/NULL);
|
|
if (L_26)
|
|
{
|
|
goto IL_0053;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::Replace(System.Char,System.Int32,System.Int32,System.Int32&,System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_Replace_mC7A58452868CC8594D4757140CF03E46744D8B2A (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, Il2CppChar ___input0, int32_t ___startPosition1, int32_t ___endPosition2, int32_t* ___testPosition3, int32_t* ___resultHint4, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___endPosition2;
|
|
StringBuilder_t * L_1 = __this->get_testString_20();
|
|
NullCheck(L_1);
|
|
int32_t L_2 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_1, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_0) < ((int32_t)L_2)))
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_3 = ___testPosition3;
|
|
int32_t L_4 = ___endPosition2;
|
|
*((int32_t*)L_3) = (int32_t)L_4;
|
|
int32_t* L_5 = ___resultHint4;
|
|
*((int32_t*)L_5) = (int32_t)((int32_t)-55);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
int32_t L_6 = ___startPosition1;
|
|
if ((((int32_t)L_6) < ((int32_t)0)))
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7 = ___startPosition1;
|
|
int32_t L_8 = ___endPosition2;
|
|
if ((((int32_t)L_7) <= ((int32_t)L_8)))
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
int32_t* L_9 = ___testPosition3;
|
|
int32_t L_10 = ___startPosition1;
|
|
*((int32_t*)L_9) = (int32_t)L_10;
|
|
int32_t* L_11 = ___resultHint4;
|
|
*((int32_t*)L_11) = (int32_t)((int32_t)-55);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
int32_t L_12 = ___startPosition1;
|
|
int32_t L_13 = ___endPosition2;
|
|
if ((!(((uint32_t)L_12) == ((uint32_t)L_13))))
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_14 = ___testPosition3;
|
|
int32_t L_15 = ___startPosition1;
|
|
*((int32_t*)L_14) = (int32_t)L_15;
|
|
Il2CppChar L_16 = ___input0;
|
|
int32_t L_17 = ___startPosition1;
|
|
int32_t* L_18 = ___resultHint4;
|
|
bool L_19 = MaskedTextProvider_TestSetChar_m0B37B59249703B1BDDE39E1AD93BC48A7DA8BB3A(__this, L_16, L_17, (int32_t*)L_18, /*hidden argument*/NULL);
|
|
return L_19;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
String_t* L_20 = Char_ToString_mA42A88FEBA41B72D48BB24373E3101B7A91B6FD8((Il2CppChar*)(&___input0), /*hidden argument*/NULL);
|
|
int32_t L_21 = ___startPosition1;
|
|
int32_t L_22 = ___endPosition2;
|
|
int32_t* L_23 = ___testPosition3;
|
|
int32_t* L_24 = ___resultHint4;
|
|
bool L_25 = MaskedTextProvider_Replace_m6A5B4A8279F613EDDD7151CD2743BEB2B46BBEF4(__this, L_20, L_21, L_22, (int32_t*)L_23, (int32_t*)L_24, /*hidden argument*/NULL);
|
|
return L_25;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::Replace(System.String,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_Replace_mA97D044E72C73F25F9CFA1E69710E60051BCBA3F (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___input0, int32_t ___position1, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
String_t* L_0 = ___input0;
|
|
int32_t L_1 = ___position1;
|
|
bool L_2 = MaskedTextProvider_Replace_m757A9B532D1ACFF87D34985568C352927A32CEEC(__this, L_0, L_1, (int32_t*)(&V_0), (int32_t*)(&V_1), /*hidden argument*/NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::Replace(System.String,System.Int32,System.Int32&,System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_Replace_m757A9B532D1ACFF87D34985568C352927A32CEEC (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___input0, int32_t ___position1, int32_t* ___testPosition2, int32_t* ___resultHint3, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_Replace_m757A9B532D1ACFF87D34985568C352927A32CEEC_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___input0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral140F86AAE51AB9E1CDA9B4254FE98A74EB54C1A1, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, MaskedTextProvider_Replace_m757A9B532D1ACFF87D34985568C352927A32CEEC_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t L_2 = ___position1;
|
|
if ((((int32_t)L_2) < ((int32_t)0)))
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = ___position1;
|
|
StringBuilder_t * L_4 = __this->get_testString_20();
|
|
NullCheck(L_4);
|
|
int32_t L_5 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_4, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_3) < ((int32_t)L_5)))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
int32_t* L_6 = ___testPosition2;
|
|
int32_t L_7 = ___position1;
|
|
*((int32_t*)L_6) = (int32_t)L_7;
|
|
int32_t* L_8 = ___resultHint3;
|
|
*((int32_t*)L_8) = (int32_t)((int32_t)-55);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
String_t* L_9 = ___input0;
|
|
NullCheck(L_9);
|
|
int32_t L_10 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_9, /*hidden argument*/NULL);
|
|
if (L_10)
|
|
{
|
|
goto IL_003e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_11 = ___position1;
|
|
int32_t L_12 = ___position1;
|
|
int32_t* L_13 = ___testPosition2;
|
|
int32_t* L_14 = ___resultHint3;
|
|
bool L_15 = MaskedTextProvider_RemoveAt_m9BB446CA1E9495316019AE62420F3C75BF37C30A(__this, L_11, L_12, (int32_t*)L_13, (int32_t*)L_14, /*hidden argument*/NULL);
|
|
return L_15;
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
String_t* L_16 = ___input0;
|
|
int32_t L_17 = ___position1;
|
|
int32_t* L_18 = ___testPosition2;
|
|
int32_t* L_19 = ___resultHint3;
|
|
bool L_20 = MaskedTextProvider_TestSetString_m9293EED6116879ACEB15E37AC6CB402BAD21CB9B(__this, L_16, L_17, (int32_t*)L_18, (int32_t*)L_19, /*hidden argument*/NULL);
|
|
if (L_20)
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::Replace(System.String,System.Int32,System.Int32,System.Int32&,System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_Replace_m6A5B4A8279F613EDDD7151CD2743BEB2B46BBEF4 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___input0, int32_t ___startPosition1, int32_t ___endPosition2, int32_t* ___testPosition3, int32_t* ___resultHint4, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_Replace_m6A5B4A8279F613EDDD7151CD2743BEB2B46BBEF4_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
{
|
|
String_t* L_0 = ___input0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral140F86AAE51AB9E1CDA9B4254FE98A74EB54C1A1, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, MaskedTextProvider_Replace_m6A5B4A8279F613EDDD7151CD2743BEB2B46BBEF4_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t L_2 = ___endPosition2;
|
|
StringBuilder_t * L_3 = __this->get_testString_20();
|
|
NullCheck(L_3);
|
|
int32_t L_4 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_3, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_2) < ((int32_t)L_4)))
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_5 = ___testPosition3;
|
|
int32_t L_6 = ___endPosition2;
|
|
*((int32_t*)L_5) = (int32_t)L_6;
|
|
int32_t* L_7 = ___resultHint4;
|
|
*((int32_t*)L_7) = (int32_t)((int32_t)-55);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
int32_t L_8 = ___startPosition1;
|
|
if ((((int32_t)L_8) < ((int32_t)0)))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_9 = ___startPosition1;
|
|
int32_t L_10 = ___endPosition2;
|
|
if ((((int32_t)L_9) <= ((int32_t)L_10)))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
int32_t* L_11 = ___testPosition3;
|
|
int32_t L_12 = ___startPosition1;
|
|
*((int32_t*)L_11) = (int32_t)L_12;
|
|
int32_t* L_13 = ___resultHint4;
|
|
*((int32_t*)L_13) = (int32_t)((int32_t)-55);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
String_t* L_14 = ___input0;
|
|
NullCheck(L_14);
|
|
int32_t L_15 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_14, /*hidden argument*/NULL);
|
|
if (L_15)
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = ___startPosition1;
|
|
int32_t L_17 = ___endPosition2;
|
|
int32_t* L_18 = ___testPosition3;
|
|
int32_t* L_19 = ___resultHint4;
|
|
bool L_20 = MaskedTextProvider_RemoveAt_m9BB446CA1E9495316019AE62420F3C75BF37C30A(__this, L_16, L_17, (int32_t*)L_18, (int32_t*)L_19, /*hidden argument*/NULL);
|
|
return L_20;
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
String_t* L_21 = ___input0;
|
|
int32_t L_22 = ___startPosition1;
|
|
int32_t* L_23 = ___testPosition3;
|
|
int32_t* L_24 = ___resultHint4;
|
|
bool L_25 = MaskedTextProvider_TestString_mFEF74E01CEAA8F7593520754B78CA41411E2C2DA(__this, L_21, L_22, (int32_t*)L_23, (int32_t*)L_24, /*hidden argument*/NULL);
|
|
if (L_25)
|
|
{
|
|
goto IL_005f;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
int32_t L_26 = __this->get_assignedCharCount_21();
|
|
if ((((int32_t)L_26) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0162;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_27 = ___testPosition3;
|
|
int32_t L_28 = *((int32_t*)L_27);
|
|
int32_t L_29 = ___endPosition2;
|
|
if ((((int32_t)L_28) >= ((int32_t)L_29)))
|
|
{
|
|
goto IL_00a7;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_30 = ___testPosition3;
|
|
int32_t L_31 = *((int32_t*)L_30);
|
|
int32_t L_32 = ___endPosition2;
|
|
bool L_33 = MaskedTextProvider_RemoveAtInt_mEB337BF8D99A98C7B0C1DD6B36AD1ECC3537BADC(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1)), L_32, (int32_t*)(&V_0), (int32_t*)(&V_1), (bool)0, /*hidden argument*/NULL);
|
|
if (L_33)
|
|
{
|
|
goto IL_008e;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_34 = ___testPosition3;
|
|
int32_t L_35 = V_0;
|
|
*((int32_t*)L_34) = (int32_t)L_35;
|
|
int32_t* L_36 = ___resultHint4;
|
|
int32_t L_37 = V_1;
|
|
*((int32_t*)L_36) = (int32_t)L_37;
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_008e:
|
|
{
|
|
int32_t L_38 = V_1;
|
|
if ((!(((uint32_t)L_38) == ((uint32_t)4))))
|
|
{
|
|
goto IL_0162;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_39 = ___resultHint4;
|
|
int32_t L_40 = *((int32_t*)L_39);
|
|
int32_t L_41 = V_1;
|
|
if ((((int32_t)L_40) == ((int32_t)L_41)))
|
|
{
|
|
goto IL_0162;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_42 = ___resultHint4;
|
|
*((int32_t*)L_42) = (int32_t)3;
|
|
goto IL_0162;
|
|
}
|
|
|
|
IL_00a7:
|
|
{
|
|
int32_t* L_43 = ___testPosition3;
|
|
int32_t L_44 = *((int32_t*)L_43);
|
|
int32_t L_45 = ___endPosition2;
|
|
if ((((int32_t)L_44) <= ((int32_t)L_45)))
|
|
{
|
|
goto IL_0162;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_46 = MaskedTextProvider_get_LastAssignedPosition_m50CA253FC2DA86D3EC9C1E5A7F68AA9C5BF25C74(__this, /*hidden argument*/NULL);
|
|
V_2 = L_46;
|
|
int32_t* L_47 = ___testPosition3;
|
|
int32_t L_48 = *((int32_t*)L_47);
|
|
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_48, (int32_t)1));
|
|
int32_t L_49 = ___endPosition2;
|
|
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_49, (int32_t)1));
|
|
}
|
|
|
|
IL_00c2:
|
|
{
|
|
int32_t L_50 = V_4;
|
|
int32_t L_51 = MaskedTextProvider_FindEditPositionFrom_m72A2B5BA9FE5D20F9A0B149FC86D08B0AD54F672(__this, L_50, (bool)1, /*hidden argument*/NULL);
|
|
V_4 = L_51;
|
|
int32_t L_52 = V_3;
|
|
int32_t L_53 = MaskedTextProvider_FindEditPositionFrom_m72A2B5BA9FE5D20F9A0B149FC86D08B0AD54F672(__this, L_52, (bool)1, /*hidden argument*/NULL);
|
|
V_3 = L_53;
|
|
int32_t L_54 = V_3;
|
|
if ((!(((uint32_t)L_54) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_00ef;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_55 = ___testPosition3;
|
|
StringBuilder_t * L_56 = __this->get_testString_20();
|
|
NullCheck(L_56);
|
|
int32_t L_57 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_56, /*hidden argument*/NULL);
|
|
*((int32_t*)L_55) = (int32_t)L_57;
|
|
int32_t* L_58 = ___resultHint4;
|
|
*((int32_t*)L_58) = (int32_t)((int32_t)-53);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00ef:
|
|
{
|
|
StringBuilder_t * L_59 = __this->get_testString_20();
|
|
int32_t L_60 = V_4;
|
|
NullCheck(L_59);
|
|
Il2CppChar L_61 = StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6(L_59, L_60, /*hidden argument*/NULL);
|
|
int32_t L_62 = V_3;
|
|
bool L_63 = MaskedTextProvider_TestChar_mAC74996A38215989049A56253C5D0267D8C9CED1(__this, L_61, L_62, (int32_t*)(&V_1), /*hidden argument*/NULL);
|
|
if (L_63)
|
|
{
|
|
goto IL_0111;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_64 = ___testPosition3;
|
|
int32_t L_65 = V_3;
|
|
*((int32_t*)L_64) = (int32_t)L_65;
|
|
int32_t* L_66 = ___resultHint4;
|
|
int32_t L_67 = V_1;
|
|
*((int32_t*)L_66) = (int32_t)L_67;
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0111:
|
|
{
|
|
int32_t L_68 = V_1;
|
|
if ((!(((uint32_t)L_68) == ((uint32_t)4))))
|
|
{
|
|
goto IL_011f;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_69 = ___resultHint4;
|
|
int32_t L_70 = *((int32_t*)L_69);
|
|
int32_t L_71 = V_1;
|
|
if ((((int32_t)L_70) == ((int32_t)L_71)))
|
|
{
|
|
goto IL_011f;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_72 = ___resultHint4;
|
|
*((int32_t*)L_72) = (int32_t)4;
|
|
}
|
|
|
|
IL_011f:
|
|
{
|
|
int32_t L_73 = V_4;
|
|
int32_t L_74 = V_2;
|
|
if ((((int32_t)L_73) == ((int32_t)L_74)))
|
|
{
|
|
goto IL_015c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_75 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_75, (int32_t)1));
|
|
int32_t L_76 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_76, (int32_t)1));
|
|
goto IL_00c2;
|
|
}
|
|
|
|
IL_0130:
|
|
{
|
|
StringBuilder_t * L_77 = __this->get_testString_20();
|
|
int32_t L_78 = V_4;
|
|
NullCheck(L_77);
|
|
Il2CppChar L_79 = StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6(L_77, L_78, /*hidden argument*/NULL);
|
|
int32_t L_80 = V_3;
|
|
MaskedTextProvider_SetChar_m73B70F3714708050D8A2D543741150DC4AD0A16D(__this, L_79, L_80, /*hidden argument*/NULL);
|
|
int32_t L_81 = V_4;
|
|
int32_t L_82 = MaskedTextProvider_FindEditPositionFrom_m72A2B5BA9FE5D20F9A0B149FC86D08B0AD54F672(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_81, (int32_t)1)), (bool)0, /*hidden argument*/NULL);
|
|
V_4 = L_82;
|
|
int32_t L_83 = V_3;
|
|
int32_t L_84 = MaskedTextProvider_FindEditPositionFrom_m72A2B5BA9FE5D20F9A0B149FC86D08B0AD54F672(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_83, (int32_t)1)), (bool)0, /*hidden argument*/NULL);
|
|
V_3 = L_84;
|
|
}
|
|
|
|
IL_015c:
|
|
{
|
|
int32_t L_85 = V_3;
|
|
int32_t* L_86 = ___testPosition3;
|
|
int32_t L_87 = *((int32_t*)L_86);
|
|
if ((((int32_t)L_85) > ((int32_t)L_87)))
|
|
{
|
|
goto IL_0130;
|
|
}
|
|
}
|
|
|
|
IL_0162:
|
|
{
|
|
String_t* L_88 = ___input0;
|
|
int32_t L_89 = ___startPosition1;
|
|
MaskedTextProvider_SetString_mAFF76911CC11F891E10D241C57C0775D1394EA8C(__this, L_88, L_89, /*hidden argument*/NULL);
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MaskedTextProvider::ResetChar(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider_ResetChar_m98F29F5594B201C92E45A7F7DB8B373A791D7974 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___testPosition0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_ResetChar_m98F29F5594B201C92E45A7F7DB8B373A791D7974_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * V_0 = NULL;
|
|
{
|
|
List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 * L_0 = __this->get_stringDescriptor_28();
|
|
int32_t L_1 = ___testPosition0;
|
|
NullCheck(L_0);
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_2 = List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_inline(L_0, L_1, /*hidden argument*/List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_RuntimeMethod_var);
|
|
V_0 = L_2;
|
|
int32_t L_3 = ___testPosition0;
|
|
bool L_4 = MaskedTextProvider_IsEditPosition_mB28533BEB0EC65EF5690343556B61D93BFF7B04D(__this, L_3, /*hidden argument*/NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
{
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_5 = V_0;
|
|
NullCheck(L_5);
|
|
bool L_6 = L_5->get_IsAssigned_3();
|
|
if (!L_6)
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
{
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_7 = V_0;
|
|
NullCheck(L_7);
|
|
L_7->set_IsAssigned_3((bool)0);
|
|
StringBuilder_t * L_8 = __this->get_testString_20();
|
|
int32_t L_9 = ___testPosition0;
|
|
Il2CppChar L_10 = __this->get_promptChar_27();
|
|
NullCheck(L_8);
|
|
StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA(L_8, L_9, L_10, /*hidden argument*/NULL);
|
|
int32_t L_11 = __this->get_assignedCharCount_21();
|
|
__this->set_assignedCharCount_21(((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)1)));
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_12 = V_0;
|
|
NullCheck(L_12);
|
|
int32_t L_13 = L_12->get_CharType_2();
|
|
if ((!(((uint32_t)L_13) == ((uint32_t)2))))
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_14 = __this->get_requiredCharCount_22();
|
|
__this->set_requiredCharCount_22(((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)1)));
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MaskedTextProvider::ResetString(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider_ResetString_mF3E4814666BE1F17CD83EC04662D430BEBD1AB2C (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___startPosition0, int32_t ___endPosition1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___startPosition0;
|
|
int32_t L_1 = MaskedTextProvider_FindAssignedEditPositionFrom_mBAF2E6FB903959360D5FFEF1FEE756E4960D768A(__this, L_0, (bool)1, /*hidden argument*/NULL);
|
|
___startPosition0 = L_1;
|
|
int32_t L_2 = ___startPosition0;
|
|
if ((((int32_t)L_2) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = ___endPosition1;
|
|
int32_t L_4 = MaskedTextProvider_FindAssignedEditPositionFrom_mBAF2E6FB903959360D5FFEF1FEE756E4960D768A(__this, L_3, (bool)0, /*hidden argument*/NULL);
|
|
___endPosition1 = L_4;
|
|
goto IL_0030;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
int32_t L_5 = ___startPosition0;
|
|
int32_t L_6 = MaskedTextProvider_FindAssignedEditPositionFrom_mBAF2E6FB903959360D5FFEF1FEE756E4960D768A(__this, L_5, (bool)1, /*hidden argument*/NULL);
|
|
___startPosition0 = L_6;
|
|
int32_t L_7 = ___startPosition0;
|
|
MaskedTextProvider_ResetChar_m98F29F5594B201C92E45A7F7DB8B373A791D7974(__this, L_7, /*hidden argument*/NULL);
|
|
int32_t L_8 = ___startPosition0;
|
|
___startPosition0 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
int32_t L_9 = ___startPosition0;
|
|
int32_t L_10 = ___endPosition1;
|
|
if ((((int32_t)L_9) <= ((int32_t)L_10)))
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::Set(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_Set_m0DC13EE2BEAE2DBE2824A7A22FDECCCD3CE265FE (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___input0, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
String_t* L_0 = ___input0;
|
|
bool L_1 = MaskedTextProvider_Set_mA9360F2798F7590F8E7E7619B862A582D7FAF734(__this, L_0, (int32_t*)(&V_0), (int32_t*)(&V_1), /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::Set(System.String,System.Int32&,System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_Set_mA9360F2798F7590F8E7E7619B862A582D7FAF734 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___input0, int32_t* ___testPosition1, int32_t* ___resultHint2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_Set_mA9360F2798F7590F8E7E7619B862A582D7FAF734_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
String_t* L_0 = ___input0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral140F86AAE51AB9E1CDA9B4254FE98A74EB54C1A1, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, MaskedTextProvider_Set_mA9360F2798F7590F8E7E7619B862A582D7FAF734_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t* L_2 = ___resultHint2;
|
|
*((int32_t*)L_2) = (int32_t)0;
|
|
int32_t* L_3 = ___testPosition1;
|
|
*((int32_t*)L_3) = (int32_t)0;
|
|
String_t* L_4 = ___input0;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_4, /*hidden argument*/NULL);
|
|
if (L_5)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_6 = ___resultHint2;
|
|
MaskedTextProvider_Clear_mEAB28B3F9A3C6B60FE898862558024E6C7B35DB3(__this, (int32_t*)L_6, /*hidden argument*/NULL);
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
String_t* L_7 = ___input0;
|
|
int32_t* L_8 = ___testPosition1;
|
|
int32_t L_9 = *((int32_t*)L_8);
|
|
int32_t* L_10 = ___testPosition1;
|
|
int32_t* L_11 = ___resultHint2;
|
|
bool L_12 = MaskedTextProvider_TestSetString_m9293EED6116879ACEB15E37AC6CB402BAD21CB9B(__this, L_7, L_9, (int32_t*)L_10, (int32_t*)L_11, /*hidden argument*/NULL);
|
|
if (L_12)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
int32_t* L_13 = ___testPosition1;
|
|
int32_t L_14 = *((int32_t*)L_13);
|
|
int32_t L_15 = MaskedTextProvider_FindAssignedEditPositionFrom_mBAF2E6FB903959360D5FFEF1FEE756E4960D768A(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)), (bool)1, /*hidden argument*/NULL);
|
|
V_0 = L_15;
|
|
int32_t L_16 = V_0;
|
|
if ((((int32_t)L_16) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_17 = V_0;
|
|
StringBuilder_t * L_18 = __this->get_testString_20();
|
|
NullCheck(L_18);
|
|
int32_t L_19 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_18, /*hidden argument*/NULL);
|
|
MaskedTextProvider_ResetString_mF3E4814666BE1F17CD83EC04662D430BEBD1AB2C(__this, L_17, ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)), /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MaskedTextProvider::SetChar(System.Char,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider_SetChar_m73B70F3714708050D8A2D543741150DC4AD0A16D (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, Il2CppChar ___input0, int32_t ___position1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_SetChar_m73B70F3714708050D8A2D543741150DC4AD0A16D_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * V_0 = NULL;
|
|
{
|
|
List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 * L_0 = __this->get_stringDescriptor_28();
|
|
int32_t L_1 = ___position1;
|
|
NullCheck(L_0);
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_2 = List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_inline(L_0, L_1, /*hidden argument*/List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_RuntimeMethod_var);
|
|
V_0 = L_2;
|
|
Il2CppChar L_3 = ___input0;
|
|
int32_t L_4 = ___position1;
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_5 = V_0;
|
|
MaskedTextProvider_SetChar_mE6C13D1ABEF1568CD78927D157788B6D3025F218(__this, L_3, L_4, L_5, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MaskedTextProvider::SetChar(System.Char,System.Int32,System.ComponentModel.MaskedTextProvider_CharDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider_SetChar_mE6C13D1ABEF1568CD78927D157788B6D3025F218 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, Il2CppChar ___input0, int32_t ___position1, CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * ___charDescriptor2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_SetChar_mE6C13D1ABEF1568CD78927D157788B6D3025F218_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 * L_0 = __this->get_stringDescriptor_28();
|
|
int32_t L_1 = ___position1;
|
|
NullCheck(L_0);
|
|
List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_inline(L_0, L_1, /*hidden argument*/List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_RuntimeMethod_var);
|
|
Il2CppChar L_2 = ___input0;
|
|
int32_t L_3 = ___position1;
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_4 = ___charDescriptor2;
|
|
bool L_5 = MaskedTextProvider_TestEscapeChar_mE807731E4B72B215DBD3B6276D819B606924071C(__this, L_2, L_3, L_4, /*hidden argument*/NULL);
|
|
if (!L_5)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = ___position1;
|
|
MaskedTextProvider_ResetChar_m98F29F5594B201C92E45A7F7DB8B373A791D7974(__this, L_6, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
Il2CppChar L_7 = ___input0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_8 = Char_IsLetter_mCC7F387F16C2DE7C85B6A1A0C5BC75D92A813DFE(L_7, /*hidden argument*/NULL);
|
|
if (!L_8)
|
|
{
|
|
goto IL_006a;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_9 = ___input0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_10 = Char_IsUpper_m94DFB4B66A46914F0588FB7EB42E9BB4A14C3513(L_9, /*hidden argument*/NULL);
|
|
if (!L_10)
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_11 = ___charDescriptor2;
|
|
NullCheck(L_11);
|
|
int32_t L_12 = L_11->get_CaseConversion_1();
|
|
if ((!(((uint32_t)L_12) == ((uint32_t)1))))
|
|
{
|
|
goto IL_006a;
|
|
}
|
|
}
|
|
{
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_13 = __this->get_culture_19();
|
|
NullCheck(L_13);
|
|
TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * L_14 = VirtFuncInvoker0< TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_13);
|
|
Il2CppChar L_15 = ___input0;
|
|
NullCheck(L_14);
|
|
Il2CppChar L_16 = VirtFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(7 /* System.Char System.Globalization.TextInfo::ToLower(System.Char) */, L_14, L_15);
|
|
___input0 = L_16;
|
|
goto IL_006a;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_17 = ___charDescriptor2;
|
|
NullCheck(L_17);
|
|
int32_t L_18 = L_17->get_CaseConversion_1();
|
|
if ((!(((uint32_t)L_18) == ((uint32_t)2))))
|
|
{
|
|
goto IL_006a;
|
|
}
|
|
}
|
|
{
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_19 = __this->get_culture_19();
|
|
NullCheck(L_19);
|
|
TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * L_20 = VirtFuncInvoker0< TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_19);
|
|
Il2CppChar L_21 = ___input0;
|
|
NullCheck(L_20);
|
|
Il2CppChar L_22 = VirtFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(9 /* System.Char System.Globalization.TextInfo::ToUpper(System.Char) */, L_20, L_21);
|
|
___input0 = L_22;
|
|
}
|
|
|
|
IL_006a:
|
|
{
|
|
StringBuilder_t * L_23 = __this->get_testString_20();
|
|
int32_t L_24 = ___position1;
|
|
Il2CppChar L_25 = ___input0;
|
|
NullCheck(L_23);
|
|
StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA(L_23, L_24, L_25, /*hidden argument*/NULL);
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_26 = ___charDescriptor2;
|
|
NullCheck(L_26);
|
|
bool L_27 = L_26->get_IsAssigned_3();
|
|
if (L_27)
|
|
{
|
|
goto IL_00ab;
|
|
}
|
|
}
|
|
{
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_28 = ___charDescriptor2;
|
|
NullCheck(L_28);
|
|
L_28->set_IsAssigned_3((bool)1);
|
|
int32_t L_29 = __this->get_assignedCharCount_21();
|
|
__this->set_assignedCharCount_21(((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)1)));
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_30 = ___charDescriptor2;
|
|
NullCheck(L_30);
|
|
int32_t L_31 = L_30->get_CharType_2();
|
|
if ((!(((uint32_t)L_31) == ((uint32_t)2))))
|
|
{
|
|
goto IL_00ab;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_32 = __this->get_requiredCharCount_22();
|
|
__this->set_requiredCharCount_22(((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1)));
|
|
}
|
|
|
|
IL_00ab:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MaskedTextProvider::SetString(System.String,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider_SetString_mAFF76911CC11F891E10D241C57C0775D1394EA8C (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___input0, int32_t ___testPosition1, const RuntimeMethod* method)
|
|
{
|
|
String_t* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
Il2CppChar V_2 = 0x0;
|
|
{
|
|
String_t* L_0 = ___input0;
|
|
V_0 = L_0;
|
|
V_1 = 0;
|
|
goto IL_0033;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
String_t* L_1 = V_0;
|
|
int32_t L_2 = V_1;
|
|
NullCheck(L_1);
|
|
Il2CppChar L_3 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_1, L_2, /*hidden argument*/NULL);
|
|
V_2 = L_3;
|
|
Il2CppChar L_4 = V_2;
|
|
int32_t L_5 = ___testPosition1;
|
|
bool L_6 = MaskedTextProvider_TestEscapeChar_mC839F205DD58646AB41D153330BE9FF7565D3C22(__this, L_4, L_5, /*hidden argument*/NULL);
|
|
if (L_6)
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7 = ___testPosition1;
|
|
int32_t L_8 = MaskedTextProvider_FindEditPositionFrom_m72A2B5BA9FE5D20F9A0B149FC86D08B0AD54F672(__this, L_7, (bool)1, /*hidden argument*/NULL);
|
|
___testPosition1 = L_8;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
Il2CppChar L_9 = V_2;
|
|
int32_t L_10 = ___testPosition1;
|
|
MaskedTextProvider_SetChar_m73B70F3714708050D8A2D543741150DC4AD0A16D(__this, L_9, L_10, /*hidden argument*/NULL);
|
|
int32_t L_11 = ___testPosition1;
|
|
___testPosition1 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1));
|
|
int32_t L_12 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
int32_t L_13 = V_1;
|
|
String_t* L_14 = V_0;
|
|
NullCheck(L_14);
|
|
int32_t L_15 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_14, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_13) < ((int32_t)L_15)))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::TestChar(System.Char,System.Int32,System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_TestChar_mAC74996A38215989049A56253C5D0267D8C9CED1 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, Il2CppChar ___input0, int32_t ___position1, int32_t* ___resultHint2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_TestChar_mAC74996A38215989049A56253C5D0267D8C9CED1_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * V_0 = NULL;
|
|
Il2CppChar V_1 = 0x0;
|
|
{
|
|
Il2CppChar L_0 = ___input0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
bool L_1 = MaskedTextProvider_IsPrintableChar_m1DBB3F4195B64CD712FF8D108CC61513358031EC(L_0, /*hidden argument*/NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_2 = ___resultHint2;
|
|
*((int32_t*)L_2) = (int32_t)((int32_t)-51);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 * L_3 = __this->get_stringDescriptor_28();
|
|
int32_t L_4 = ___position1;
|
|
NullCheck(L_3);
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_5 = List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_inline(L_3, L_4, /*hidden argument*/List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_RuntimeMethod_var);
|
|
V_0 = L_5;
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_6 = V_0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
bool L_7 = MaskedTextProvider_IsLiteralPosition_m1B0D1B7B71CFC518C041DE789076534D1F08ED82(L_6, /*hidden argument*/NULL);
|
|
if (!L_7)
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
{
|
|
bool L_8 = MaskedTextProvider_get_SkipLiterals_m410CDF3FF094DDE966BA6F3665F696F53FD60312(__this, /*hidden argument*/NULL);
|
|
if (!L_8)
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_9 = ___input0;
|
|
StringBuilder_t * L_10 = __this->get_testString_20();
|
|
int32_t L_11 = ___position1;
|
|
NullCheck(L_10);
|
|
Il2CppChar L_12 = StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6(L_10, L_11, /*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_9) == ((uint32_t)L_12))))
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_13 = ___resultHint2;
|
|
*((int32_t*)L_13) = (int32_t)1;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
int32_t* L_14 = ___resultHint2;
|
|
*((int32_t*)L_14) = (int32_t)((int32_t)-54);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
Il2CppChar L_15 = ___input0;
|
|
Il2CppChar L_16 = __this->get_promptChar_27();
|
|
if ((!(((uint32_t)L_15) == ((uint32_t)L_16))))
|
|
{
|
|
goto IL_007e;
|
|
}
|
|
}
|
|
{
|
|
bool L_17 = MaskedTextProvider_get_ResetOnPrompt_m7DAEE4DE22E656C711D453F84240D96C9BF8EC5D(__this, /*hidden argument*/NULL);
|
|
if (!L_17)
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
}
|
|
{
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_18 = V_0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
bool L_19 = MaskedTextProvider_IsEditPosition_m8614884878C3CE2E788A9E90FF6B2BFA296730DE(L_18, /*hidden argument*/NULL);
|
|
if (!L_19)
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
}
|
|
{
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_20 = V_0;
|
|
NullCheck(L_20);
|
|
bool L_21 = L_20->get_IsAssigned_3();
|
|
if (!L_21)
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_22 = ___resultHint2;
|
|
*((int32_t*)L_22) = (int32_t)3;
|
|
goto IL_006e;
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
int32_t* L_23 = ___resultHint2;
|
|
*((int32_t*)L_23) = (int32_t)1;
|
|
}
|
|
|
|
IL_006e:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
bool L_24 = MaskedTextProvider_get_AllowPromptAsInput_mF973B54A49DDA82ED811F80E17A34E4BEA223371(__this, /*hidden argument*/NULL);
|
|
if (L_24)
|
|
{
|
|
goto IL_007e;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_25 = ___resultHint2;
|
|
*((int32_t*)L_25) = (int32_t)((int32_t)-52);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_007e:
|
|
{
|
|
Il2CppChar L_26 = ___input0;
|
|
if ((!(((uint32_t)L_26) == ((uint32_t)((int32_t)32)))))
|
|
{
|
|
goto IL_00a5;
|
|
}
|
|
}
|
|
{
|
|
bool L_27 = MaskedTextProvider_get_ResetOnSpace_m40890F87C8C68801526F427555BD40B74B5A19CE(__this, /*hidden argument*/NULL);
|
|
if (!L_27)
|
|
{
|
|
goto IL_00a5;
|
|
}
|
|
}
|
|
{
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_28 = V_0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
bool L_29 = MaskedTextProvider_IsEditPosition_m8614884878C3CE2E788A9E90FF6B2BFA296730DE(L_28, /*hidden argument*/NULL);
|
|
if (!L_29)
|
|
{
|
|
goto IL_00a0;
|
|
}
|
|
}
|
|
{
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_30 = V_0;
|
|
NullCheck(L_30);
|
|
bool L_31 = L_30->get_IsAssigned_3();
|
|
if (!L_31)
|
|
{
|
|
goto IL_00a0;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_32 = ___resultHint2;
|
|
*((int32_t*)L_32) = (int32_t)3;
|
|
goto IL_00a3;
|
|
}
|
|
|
|
IL_00a0:
|
|
{
|
|
int32_t* L_33 = ___resultHint2;
|
|
*((int32_t*)L_33) = (int32_t)1;
|
|
}
|
|
|
|
IL_00a3:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_00a5:
|
|
{
|
|
String_t* L_34 = __this->get_mask_25();
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_35 = V_0;
|
|
NullCheck(L_35);
|
|
int32_t L_36 = L_35->get_MaskPosition_0();
|
|
NullCheck(L_34);
|
|
Il2CppChar L_37 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_34, L_36, /*hidden argument*/NULL);
|
|
V_1 = L_37;
|
|
Il2CppChar L_38 = V_1;
|
|
if ((!(((uint32_t)L_38) <= ((uint32_t)((int32_t)48)))))
|
|
{
|
|
goto IL_00d3;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_39 = V_1;
|
|
if ((((int32_t)L_39) == ((int32_t)((int32_t)35))))
|
|
{
|
|
goto IL_0111;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_40 = V_1;
|
|
if ((((int32_t)L_40) == ((int32_t)((int32_t)38))))
|
|
{
|
|
goto IL_01b8;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_41 = V_1;
|
|
if ((((int32_t)L_41) == ((int32_t)((int32_t)48))))
|
|
{
|
|
goto IL_013a;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0232;
|
|
}
|
|
|
|
IL_00d3:
|
|
{
|
|
Il2CppChar L_42 = V_1;
|
|
if ((!(((uint32_t)L_42) <= ((uint32_t)((int32_t)67)))))
|
|
{
|
|
goto IL_00ff;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_43 = V_1;
|
|
if ((((int32_t)L_43) == ((int32_t)((int32_t)57))))
|
|
{
|
|
goto IL_014b;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_44 = V_1;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_44, (int32_t)((int32_t)63))))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_018d;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0232;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_01e7;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0232;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_01cd;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0232;
|
|
}
|
|
|
|
IL_00ff:
|
|
{
|
|
Il2CppChar L_45 = V_1;
|
|
if ((((int32_t)L_45) == ((int32_t)((int32_t)76))))
|
|
{
|
|
goto IL_0164;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_46 = V_1;
|
|
if ((((int32_t)L_46) == ((int32_t)((int32_t)97))))
|
|
{
|
|
goto IL_020a;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0232;
|
|
}
|
|
|
|
IL_0111:
|
|
{
|
|
Il2CppChar L_47 = ___input0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_48 = Char_IsDigit_m29508E0B60DAE54350BDC3DED0D42895DBA4087E(L_47, /*hidden argument*/NULL);
|
|
if (L_48)
|
|
{
|
|
goto IL_0232;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_49 = ___input0;
|
|
if ((((int32_t)L_49) == ((int32_t)((int32_t)45))))
|
|
{
|
|
goto IL_0232;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_50 = ___input0;
|
|
if ((((int32_t)L_50) == ((int32_t)((int32_t)43))))
|
|
{
|
|
goto IL_0232;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_51 = ___input0;
|
|
if ((((int32_t)L_51) == ((int32_t)((int32_t)32))))
|
|
{
|
|
goto IL_0232;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_52 = ___resultHint2;
|
|
*((int32_t*)L_52) = (int32_t)((int32_t)-3);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_013a:
|
|
{
|
|
Il2CppChar L_53 = ___input0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_54 = Char_IsDigit_m29508E0B60DAE54350BDC3DED0D42895DBA4087E(L_53, /*hidden argument*/NULL);
|
|
if (L_54)
|
|
{
|
|
goto IL_0232;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_55 = ___resultHint2;
|
|
*((int32_t*)L_55) = (int32_t)((int32_t)-3);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_014b:
|
|
{
|
|
Il2CppChar L_56 = ___input0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_57 = Char_IsDigit_m29508E0B60DAE54350BDC3DED0D42895DBA4087E(L_56, /*hidden argument*/NULL);
|
|
if (L_57)
|
|
{
|
|
goto IL_0232;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_58 = ___input0;
|
|
if ((((int32_t)L_58) == ((int32_t)((int32_t)32))))
|
|
{
|
|
goto IL_0232;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_59 = ___resultHint2;
|
|
*((int32_t*)L_59) = (int32_t)((int32_t)-3);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0164:
|
|
{
|
|
Il2CppChar L_60 = ___input0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_61 = Char_IsLetter_mCC7F387F16C2DE7C85B6A1A0C5BC75D92A813DFE(L_60, /*hidden argument*/NULL);
|
|
if (L_61)
|
|
{
|
|
goto IL_0172;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_62 = ___resultHint2;
|
|
*((int32_t*)L_62) = (int32_t)((int32_t)-4);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0172:
|
|
{
|
|
Il2CppChar L_63 = ___input0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
bool L_64 = MaskedTextProvider_IsAsciiLetter_mFF7FA71C40F867B46B8A276990ED6760E379C909(L_63, /*hidden argument*/NULL);
|
|
if (L_64)
|
|
{
|
|
goto IL_0232;
|
|
}
|
|
}
|
|
{
|
|
bool L_65 = MaskedTextProvider_get_AsciiOnly_m21E1B443153C205B73EA324268FF2F453CB3B399(__this, /*hidden argument*/NULL);
|
|
if (!L_65)
|
|
{
|
|
goto IL_0232;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_66 = ___resultHint2;
|
|
*((int32_t*)L_66) = (int32_t)(-1);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_018d:
|
|
{
|
|
Il2CppChar L_67 = ___input0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
|
|
bool L_68 = Char_IsLetter_mCC7F387F16C2DE7C85B6A1A0C5BC75D92A813DFE(L_67, /*hidden argument*/NULL);
|
|
if (L_68)
|
|
{
|
|
goto IL_01a0;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_69 = ___input0;
|
|
if ((((int32_t)L_69) == ((int32_t)((int32_t)32))))
|
|
{
|
|
goto IL_01a0;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_70 = ___resultHint2;
|
|
*((int32_t*)L_70) = (int32_t)((int32_t)-4);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_01a0:
|
|
{
|
|
Il2CppChar L_71 = ___input0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
bool L_72 = MaskedTextProvider_IsAsciiLetter_mFF7FA71C40F867B46B8A276990ED6760E379C909(L_71, /*hidden argument*/NULL);
|
|
if (L_72)
|
|
{
|
|
goto IL_0232;
|
|
}
|
|
}
|
|
{
|
|
bool L_73 = MaskedTextProvider_get_AsciiOnly_m21E1B443153C205B73EA324268FF2F453CB3B399(__this, /*hidden argument*/NULL);
|
|
if (!L_73)
|
|
{
|
|
goto IL_0232;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_74 = ___resultHint2;
|
|
*((int32_t*)L_74) = (int32_t)(-1);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_01b8:
|
|
{
|
|
Il2CppChar L_75 = ___input0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
bool L_76 = MaskedTextProvider_IsAscii_mEE98835FEB29B30F9399FB4A5BBBF849FDF9F0BA(L_75, /*hidden argument*/NULL);
|
|
if (L_76)
|
|
{
|
|
goto IL_0232;
|
|
}
|
|
}
|
|
{
|
|
bool L_77 = MaskedTextProvider_get_AsciiOnly_m21E1B443153C205B73EA324268FF2F453CB3B399(__this, /*hidden argument*/NULL);
|
|
if (!L_77)
|
|
{
|
|
goto IL_0232;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_78 = ___resultHint2;
|
|
*((int32_t*)L_78) = (int32_t)(-1);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_01cd:
|
|
{
|
|
Il2CppChar L_79 = ___input0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
bool L_80 = MaskedTextProvider_IsAscii_mEE98835FEB29B30F9399FB4A5BBBF849FDF9F0BA(L_79, /*hidden argument*/NULL);
|
|
if (L_80)
|
|
{
|
|
goto IL_0232;
|
|
}
|
|
}
|
|
{
|
|
bool L_81 = MaskedTextProvider_get_AsciiOnly_m21E1B443153C205B73EA324268FF2F453CB3B399(__this, /*hidden argument*/NULL);
|
|
if (!L_81)
|
|
{
|
|
goto IL_0232;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_82 = ___input0;
|
|
if ((((int32_t)L_82) == ((int32_t)((int32_t)32))))
|
|
{
|
|
goto IL_0232;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_83 = ___resultHint2;
|
|
*((int32_t*)L_83) = (int32_t)(-1);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_01e7:
|
|
{
|
|
Il2CppChar L_84 = ___input0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
bool L_85 = MaskedTextProvider_IsAlphanumeric_m43616E92043E75DDF9E6D83962B05EA6801134CA(L_84, /*hidden argument*/NULL);
|
|
if (L_85)
|
|
{
|
|
goto IL_01f5;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_86 = ___resultHint2;
|
|
*((int32_t*)L_86) = (int32_t)((int32_t)-2);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_01f5:
|
|
{
|
|
Il2CppChar L_87 = ___input0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
bool L_88 = MaskedTextProvider_IsAciiAlphanumeric_m3CE95C49948C10F29F91947E3121456A959E0423(L_87, /*hidden argument*/NULL);
|
|
if (L_88)
|
|
{
|
|
goto IL_0232;
|
|
}
|
|
}
|
|
{
|
|
bool L_89 = MaskedTextProvider_get_AsciiOnly_m21E1B443153C205B73EA324268FF2F453CB3B399(__this, /*hidden argument*/NULL);
|
|
if (!L_89)
|
|
{
|
|
goto IL_0232;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_90 = ___resultHint2;
|
|
*((int32_t*)L_90) = (int32_t)(-1);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_020a:
|
|
{
|
|
Il2CppChar L_91 = ___input0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
bool L_92 = MaskedTextProvider_IsAlphanumeric_m43616E92043E75DDF9E6D83962B05EA6801134CA(L_91, /*hidden argument*/NULL);
|
|
if (L_92)
|
|
{
|
|
goto IL_021d;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_93 = ___input0;
|
|
if ((((int32_t)L_93) == ((int32_t)((int32_t)32))))
|
|
{
|
|
goto IL_021d;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_94 = ___resultHint2;
|
|
*((int32_t*)L_94) = (int32_t)((int32_t)-2);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_021d:
|
|
{
|
|
Il2CppChar L_95 = ___input0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
bool L_96 = MaskedTextProvider_IsAciiAlphanumeric_m3CE95C49948C10F29F91947E3121456A959E0423(L_95, /*hidden argument*/NULL);
|
|
if (L_96)
|
|
{
|
|
goto IL_0232;
|
|
}
|
|
}
|
|
{
|
|
bool L_97 = MaskedTextProvider_get_AsciiOnly_m21E1B443153C205B73EA324268FF2F453CB3B399(__this, /*hidden argument*/NULL);
|
|
if (!L_97)
|
|
{
|
|
goto IL_0232;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_98 = ___resultHint2;
|
|
*((int32_t*)L_98) = (int32_t)(-1);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0232:
|
|
{
|
|
Il2CppChar L_99 = ___input0;
|
|
StringBuilder_t * L_100 = __this->get_testString_20();
|
|
int32_t L_101 = ___position1;
|
|
NullCheck(L_100);
|
|
Il2CppChar L_102 = StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6(L_100, L_101, /*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_99) == ((uint32_t)L_102))))
|
|
{
|
|
goto IL_024e;
|
|
}
|
|
}
|
|
{
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_103 = V_0;
|
|
NullCheck(L_103);
|
|
bool L_104 = L_103->get_IsAssigned_3();
|
|
if (!L_104)
|
|
{
|
|
goto IL_024e;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_105 = ___resultHint2;
|
|
*((int32_t*)L_105) = (int32_t)2;
|
|
goto IL_0251;
|
|
}
|
|
|
|
IL_024e:
|
|
{
|
|
int32_t* L_106 = ___resultHint2;
|
|
*((int32_t*)L_106) = (int32_t)4;
|
|
}
|
|
|
|
IL_0251:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::TestEscapeChar(System.Char,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_TestEscapeChar_mC839F205DD58646AB41D153330BE9FF7565D3C22 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, Il2CppChar ___input0, int32_t ___position1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_TestEscapeChar_mC839F205DD58646AB41D153330BE9FF7565D3C22_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * V_0 = NULL;
|
|
{
|
|
List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 * L_0 = __this->get_stringDescriptor_28();
|
|
int32_t L_1 = ___position1;
|
|
NullCheck(L_0);
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_2 = List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_inline(L_0, L_1, /*hidden argument*/List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_RuntimeMethod_var);
|
|
V_0 = L_2;
|
|
Il2CppChar L_3 = ___input0;
|
|
int32_t L_4 = ___position1;
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_5 = V_0;
|
|
bool L_6 = MaskedTextProvider_TestEscapeChar_mE807731E4B72B215DBD3B6276D819B606924071C(__this, L_3, L_4, L_5, /*hidden argument*/NULL);
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::TestEscapeChar(System.Char,System.Int32,System.ComponentModel.MaskedTextProvider_CharDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_TestEscapeChar_mE807731E4B72B215DBD3B6276D819B606924071C (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, Il2CppChar ___input0, int32_t ___position1, CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * ___charDex2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_TestEscapeChar_mE807731E4B72B215DBD3B6276D819B606924071C_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_0 = ___charDex2;
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
bool L_1 = MaskedTextProvider_IsLiteralPosition_m1B0D1B7B71CFC518C041DE789076534D1F08ED82(L_0, /*hidden argument*/NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
bool L_2 = MaskedTextProvider_get_SkipLiterals_m410CDF3FF094DDE966BA6F3665F696F53FD60312(__this, /*hidden argument*/NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_3 = ___input0;
|
|
StringBuilder_t * L_4 = __this->get_testString_20();
|
|
int32_t L_5 = ___position1;
|
|
NullCheck(L_4);
|
|
Il2CppChar L_6 = StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6(L_4, L_5, /*hidden argument*/NULL);
|
|
return (bool)((((int32_t)L_3) == ((int32_t)L_6))? 1 : 0);
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
bool L_7 = MaskedTextProvider_get_ResetOnPrompt_m7DAEE4DE22E656C711D453F84240D96C9BF8EC5D(__this, /*hidden argument*/NULL);
|
|
if (!L_7)
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_8 = ___input0;
|
|
Il2CppChar L_9 = __this->get_promptChar_27();
|
|
if ((((int32_t)L_8) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
bool L_10 = MaskedTextProvider_get_ResetOnSpace_m40890F87C8C68801526F427555BD40B74B5A19CE(__this, /*hidden argument*/NULL);
|
|
if (!L_10)
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_11 = ___input0;
|
|
if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)32)))))
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::TestSetChar(System.Char,System.Int32,System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_TestSetChar_m0B37B59249703B1BDDE39E1AD93BC48A7DA8BB3A (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, Il2CppChar ___input0, int32_t ___position1, int32_t* ___resultHint2, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppChar L_0 = ___input0;
|
|
int32_t L_1 = ___position1;
|
|
int32_t* L_2 = ___resultHint2;
|
|
bool L_3 = MaskedTextProvider_TestChar_mAC74996A38215989049A56253C5D0267D8C9CED1(__this, L_0, L_1, (int32_t*)L_2, /*hidden argument*/NULL);
|
|
if (!L_3)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_4 = ___resultHint2;
|
|
int32_t L_5 = *((int32_t*)L_4);
|
|
if ((((int32_t)L_5) == ((int32_t)4)))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_6 = ___resultHint2;
|
|
int32_t L_7 = *((int32_t*)L_6);
|
|
if ((!(((uint32_t)L_7) == ((uint32_t)3))))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
Il2CppChar L_8 = ___input0;
|
|
int32_t L_9 = ___position1;
|
|
MaskedTextProvider_SetChar_m73B70F3714708050D8A2D543741150DC4AD0A16D(__this, L_8, L_9, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::TestSetString(System.String,System.Int32,System.Int32&,System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_TestSetString_m9293EED6116879ACEB15E37AC6CB402BAD21CB9B (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___input0, int32_t ___position1, int32_t* ___testPosition2, int32_t* ___resultHint3, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___input0;
|
|
int32_t L_1 = ___position1;
|
|
int32_t* L_2 = ___testPosition2;
|
|
int32_t* L_3 = ___resultHint3;
|
|
bool L_4 = MaskedTextProvider_TestString_mFEF74E01CEAA8F7593520754B78CA41411E2C2DA(__this, L_0, L_1, (int32_t*)L_2, (int32_t*)L_3, /*hidden argument*/NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_5 = ___input0;
|
|
int32_t L_6 = ___position1;
|
|
MaskedTextProvider_SetString_mAFF76911CC11F891E10D241C57C0775D1394EA8C(__this, L_5, L_6, /*hidden argument*/NULL);
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::TestString(System.String,System.Int32,System.Int32&,System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_TestString_mFEF74E01CEAA8F7593520754B78CA41411E2C2DA (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___input0, int32_t ___position1, int32_t* ___testPosition2, int32_t* ___resultHint3, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
String_t* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
Il2CppChar V_3 = 0x0;
|
|
{
|
|
int32_t* L_0 = ___resultHint3;
|
|
*((int32_t*)L_0) = (int32_t)0;
|
|
int32_t* L_1 = ___testPosition2;
|
|
int32_t L_2 = ___position1;
|
|
*((int32_t*)L_1) = (int32_t)L_2;
|
|
String_t* L_3 = ___input0;
|
|
NullCheck(L_3);
|
|
int32_t L_4 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_3, /*hidden argument*/NULL);
|
|
if (L_4)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
int32_t* L_5 = ___resultHint3;
|
|
int32_t L_6 = *((int32_t*)L_5);
|
|
V_0 = L_6;
|
|
String_t* L_7 = ___input0;
|
|
V_1 = L_7;
|
|
V_2 = 0;
|
|
goto IL_008f;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
String_t* L_8 = V_1;
|
|
int32_t L_9 = V_2;
|
|
NullCheck(L_8);
|
|
Il2CppChar L_10 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_8, L_9, /*hidden argument*/NULL);
|
|
V_3 = L_10;
|
|
int32_t* L_11 = ___testPosition2;
|
|
int32_t L_12 = *((int32_t*)L_11);
|
|
StringBuilder_t * L_13 = __this->get_testString_20();
|
|
NullCheck(L_13);
|
|
int32_t L_14 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_13, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_12) < ((int32_t)L_14)))
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_15 = ___resultHint3;
|
|
*((int32_t*)L_15) = (int32_t)((int32_t)-53);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
Il2CppChar L_16 = V_3;
|
|
int32_t* L_17 = ___testPosition2;
|
|
int32_t L_18 = *((int32_t*)L_17);
|
|
bool L_19 = MaskedTextProvider_TestEscapeChar_mC839F205DD58646AB41D153330BE9FF7565D3C22(__this, L_16, L_18, /*hidden argument*/NULL);
|
|
if (L_19)
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_20 = ___testPosition2;
|
|
int32_t* L_21 = ___testPosition2;
|
|
int32_t L_22 = *((int32_t*)L_21);
|
|
int32_t L_23 = MaskedTextProvider_FindEditPositionFrom_m72A2B5BA9FE5D20F9A0B149FC86D08B0AD54F672(__this, L_22, (bool)1, /*hidden argument*/NULL);
|
|
*((int32_t*)L_20) = (int32_t)L_23;
|
|
int32_t* L_24 = ___testPosition2;
|
|
int32_t L_25 = *((int32_t*)L_24);
|
|
if ((!(((uint32_t)L_25) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_26 = ___testPosition2;
|
|
StringBuilder_t * L_27 = __this->get_testString_20();
|
|
NullCheck(L_27);
|
|
int32_t L_28 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_27, /*hidden argument*/NULL);
|
|
*((int32_t*)L_26) = (int32_t)L_28;
|
|
int32_t* L_29 = ___resultHint3;
|
|
*((int32_t*)L_29) = (int32_t)((int32_t)-53);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
Il2CppChar L_30 = V_3;
|
|
int32_t* L_31 = ___testPosition2;
|
|
int32_t L_32 = *((int32_t*)L_31);
|
|
bool L_33 = MaskedTextProvider_TestChar_mAC74996A38215989049A56253C5D0267D8C9CED1(__this, L_30, L_32, (int32_t*)(&V_0), /*hidden argument*/NULL);
|
|
if (L_33)
|
|
{
|
|
goto IL_007b;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_34 = ___resultHint3;
|
|
int32_t L_35 = V_0;
|
|
*((int32_t*)L_34) = (int32_t)L_35;
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_007b:
|
|
{
|
|
int32_t L_36 = V_0;
|
|
int32_t* L_37 = ___resultHint3;
|
|
int32_t L_38 = *((int32_t*)L_37);
|
|
if ((((int32_t)L_36) <= ((int32_t)L_38)))
|
|
{
|
|
goto IL_0085;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_39 = ___resultHint3;
|
|
int32_t L_40 = V_0;
|
|
*((int32_t*)L_39) = (int32_t)L_40;
|
|
}
|
|
|
|
IL_0085:
|
|
{
|
|
int32_t* L_41 = ___testPosition2;
|
|
int32_t* L_42 = ___testPosition2;
|
|
int32_t L_43 = *((int32_t*)L_42);
|
|
*((int32_t*)L_41) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1));
|
|
int32_t L_44 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1));
|
|
}
|
|
|
|
IL_008f:
|
|
{
|
|
int32_t L_45 = V_2;
|
|
String_t* L_46 = V_1;
|
|
NullCheck(L_46);
|
|
int32_t L_47 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_46, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_45) < ((int32_t)L_47)))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_48 = ___testPosition2;
|
|
int32_t* L_49 = ___testPosition2;
|
|
int32_t L_50 = *((int32_t*)L_49);
|
|
*((int32_t*)L_48) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_50, (int32_t)1));
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.MaskedTextProvider::ToDisplayString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MaskedTextProvider_ToDisplayString_m2C8697BD22E6E59230920EB9A8FB28C5A56217F0 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_ToDisplayString_m2C8697BD22E6E59230920EB9A8FB28C5A56217F0_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
StringBuilder_t * V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * V_2 = NULL;
|
|
StringBuilder_t * G_B6_0 = NULL;
|
|
StringBuilder_t * G_B5_0 = NULL;
|
|
StringBuilder_t * G_B7_0 = NULL;
|
|
Il2CppChar G_B8_0 = 0x0;
|
|
StringBuilder_t * G_B8_1 = NULL;
|
|
{
|
|
bool L_0 = MaskedTextProvider_get_IsPassword_mA79456F55E5BEFBD593A27C511A2FF5BBD0FDDAA(__this, /*hidden argument*/NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = __this->get_assignedCharCount_21();
|
|
if (L_1)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
StringBuilder_t * L_2 = __this->get_testString_20();
|
|
NullCheck(L_2);
|
|
String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_2);
|
|
return L_3;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
StringBuilder_t * L_4 = __this->get_testString_20();
|
|
NullCheck(L_4);
|
|
int32_t L_5 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_4, /*hidden argument*/NULL);
|
|
StringBuilder_t * L_6 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
|
|
StringBuilder__ctor_m1C0F2D97B838537A2D0F64033AE4EF02D150A956(L_6, L_5, /*hidden argument*/NULL);
|
|
V_0 = L_6;
|
|
V_1 = 0;
|
|
goto IL_006d;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 * L_7 = __this->get_stringDescriptor_28();
|
|
int32_t L_8 = V_1;
|
|
NullCheck(L_7);
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_9 = List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_inline(L_7, L_8, /*hidden argument*/List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_RuntimeMethod_var);
|
|
V_2 = L_9;
|
|
StringBuilder_t * L_10 = V_0;
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_11 = V_2;
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
bool L_12 = MaskedTextProvider_IsEditPosition_m8614884878C3CE2E788A9E90FF6B2BFA296730DE(L_11, /*hidden argument*/NULL);
|
|
G_B5_0 = L_10;
|
|
if (!L_12)
|
|
{
|
|
G_B6_0 = L_10;
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
{
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_13 = V_2;
|
|
NullCheck(L_13);
|
|
bool L_14 = L_13->get_IsAssigned_3();
|
|
G_B6_0 = G_B5_0;
|
|
if (L_14)
|
|
{
|
|
G_B7_0 = G_B5_0;
|
|
goto IL_005d;
|
|
}
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
StringBuilder_t * L_15 = __this->get_testString_20();
|
|
int32_t L_16 = V_1;
|
|
NullCheck(L_15);
|
|
Il2CppChar L_17 = StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6(L_15, L_16, /*hidden argument*/NULL);
|
|
G_B8_0 = L_17;
|
|
G_B8_1 = G_B6_0;
|
|
goto IL_0063;
|
|
}
|
|
|
|
IL_005d:
|
|
{
|
|
Il2CppChar L_18 = __this->get_passwordChar_26();
|
|
G_B8_0 = L_18;
|
|
G_B8_1 = G_B7_0;
|
|
}
|
|
|
|
IL_0063:
|
|
{
|
|
NullCheck(G_B8_1);
|
|
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(G_B8_1, G_B8_0, /*hidden argument*/NULL);
|
|
int32_t L_19 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1));
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
int32_t L_20 = V_1;
|
|
StringBuilder_t * L_21 = __this->get_testString_20();
|
|
NullCheck(L_21);
|
|
int32_t L_22 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_21, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_20) < ((int32_t)L_22)))
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_23 = V_0;
|
|
NullCheck(L_23);
|
|
String_t* L_24 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_23);
|
|
return L_24;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.MaskedTextProvider::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MaskedTextProvider_ToString_m299B986E2739940DC37FD2F56B9EA4165F007472 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = MaskedTextProvider_get_IncludePrompt_mCFBC56EB7B5CB5517B0ECAD8D0683B2AFC73F8C8(__this, /*hidden argument*/NULL);
|
|
bool L_1 = MaskedTextProvider_get_IncludeLiterals_m37C703CB7096946E740EFF2627E44EE4B81BDBBB(__this, /*hidden argument*/NULL);
|
|
StringBuilder_t * L_2 = __this->get_testString_20();
|
|
NullCheck(L_2);
|
|
int32_t L_3 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_2, /*hidden argument*/NULL);
|
|
String_t* L_4 = MaskedTextProvider_ToString_m1B57C3CDFEDC3A1FC383F3E4AB649631A84FA3EB(__this, (bool)1, L_0, L_1, 0, L_3, /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.MaskedTextProvider::ToString(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MaskedTextProvider_ToString_m8B613BC9C6DB1EA270D0BD25DA6D0600EB37DDB2 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, bool ___ignorePasswordChar0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___ignorePasswordChar0;
|
|
bool L_1 = MaskedTextProvider_get_IncludePrompt_mCFBC56EB7B5CB5517B0ECAD8D0683B2AFC73F8C8(__this, /*hidden argument*/NULL);
|
|
bool L_2 = MaskedTextProvider_get_IncludeLiterals_m37C703CB7096946E740EFF2627E44EE4B81BDBBB(__this, /*hidden argument*/NULL);
|
|
StringBuilder_t * L_3 = __this->get_testString_20();
|
|
NullCheck(L_3);
|
|
int32_t L_4 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_3, /*hidden argument*/NULL);
|
|
String_t* L_5 = MaskedTextProvider_ToString_m1B57C3CDFEDC3A1FC383F3E4AB649631A84FA3EB(__this, L_0, L_1, L_2, 0, L_4, /*hidden argument*/NULL);
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.MaskedTextProvider::ToString(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MaskedTextProvider_ToString_m82A684195F73CCE3E9EAEF94E298334874740E6A (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, int32_t ___startPosition0, int32_t ___length1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = MaskedTextProvider_get_IncludePrompt_mCFBC56EB7B5CB5517B0ECAD8D0683B2AFC73F8C8(__this, /*hidden argument*/NULL);
|
|
bool L_1 = MaskedTextProvider_get_IncludeLiterals_m37C703CB7096946E740EFF2627E44EE4B81BDBBB(__this, /*hidden argument*/NULL);
|
|
int32_t L_2 = ___startPosition0;
|
|
int32_t L_3 = ___length1;
|
|
String_t* L_4 = MaskedTextProvider_ToString_m1B57C3CDFEDC3A1FC383F3E4AB649631A84FA3EB(__this, (bool)1, L_0, L_1, L_2, L_3, /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.MaskedTextProvider::ToString(System.Boolean,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MaskedTextProvider_ToString_m5A522FB4C70431C3D873EAE4000495EE664336A8 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, bool ___ignorePasswordChar0, int32_t ___startPosition1, int32_t ___length2, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___ignorePasswordChar0;
|
|
bool L_1 = MaskedTextProvider_get_IncludePrompt_mCFBC56EB7B5CB5517B0ECAD8D0683B2AFC73F8C8(__this, /*hidden argument*/NULL);
|
|
bool L_2 = MaskedTextProvider_get_IncludeLiterals_m37C703CB7096946E740EFF2627E44EE4B81BDBBB(__this, /*hidden argument*/NULL);
|
|
int32_t L_3 = ___startPosition1;
|
|
int32_t L_4 = ___length2;
|
|
String_t* L_5 = MaskedTextProvider_ToString_m1B57C3CDFEDC3A1FC383F3E4AB649631A84FA3EB(__this, L_0, L_1, L_2, L_3, L_4, /*hidden argument*/NULL);
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.MaskedTextProvider::ToString(System.Boolean,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MaskedTextProvider_ToString_m6D71BAAA7137D26A11D0C23CFA091D40A21C4555 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, bool ___includePrompt0, bool ___includeLiterals1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___includePrompt0;
|
|
bool L_1 = ___includeLiterals1;
|
|
StringBuilder_t * L_2 = __this->get_testString_20();
|
|
NullCheck(L_2);
|
|
int32_t L_3 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_2, /*hidden argument*/NULL);
|
|
String_t* L_4 = MaskedTextProvider_ToString_m1B57C3CDFEDC3A1FC383F3E4AB649631A84FA3EB(__this, (bool)1, L_0, L_1, 0, L_3, /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.MaskedTextProvider::ToString(System.Boolean,System.Boolean,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MaskedTextProvider_ToString_m421DBF6189CD3B04E49A371D63E3852FD9F0AD87 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, bool ___includePrompt0, bool ___includeLiterals1, int32_t ___startPosition2, int32_t ___length3, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___includePrompt0;
|
|
bool L_1 = ___includeLiterals1;
|
|
int32_t L_2 = ___startPosition2;
|
|
int32_t L_3 = ___length3;
|
|
String_t* L_4 = MaskedTextProvider_ToString_m1B57C3CDFEDC3A1FC383F3E4AB649631A84FA3EB(__this, (bool)1, L_0, L_1, L_2, L_3, /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.MaskedTextProvider::ToString(System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MaskedTextProvider_ToString_m1B57C3CDFEDC3A1FC383F3E4AB649631A84FA3EB (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, bool ___ignorePasswordChar0, bool ___includePrompt1, bool ___includeLiterals2, int32_t ___startPosition3, int32_t ___length4, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider_ToString_m1B57C3CDFEDC3A1FC383F3E4AB649631A84FA3EB_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
StringBuilder_t * V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
Il2CppChar V_6 = 0x0;
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * V_7 = NULL;
|
|
int32_t V_8 = 0;
|
|
int32_t G_B15_0 = 0;
|
|
MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * G_B17_0 = NULL;
|
|
MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * G_B16_0 = NULL;
|
|
int32_t G_B18_0 = 0;
|
|
MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * G_B18_1 = NULL;
|
|
int32_t G_B21_0 = 0;
|
|
{
|
|
int32_t L_0 = ___length4;
|
|
if ((((int32_t)L_0) > ((int32_t)0)))
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
|
|
return L_1;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
int32_t L_2 = ___startPosition3;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
___startPosition3 = 0;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
int32_t L_3 = ___startPosition3;
|
|
StringBuilder_t * L_4 = __this->get_testString_20();
|
|
NullCheck(L_4);
|
|
int32_t L_5 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_4, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_3) < ((int32_t)L_5)))
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_6 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
|
|
return L_6;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
StringBuilder_t * L_7 = __this->get_testString_20();
|
|
NullCheck(L_7);
|
|
int32_t L_8 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_7, /*hidden argument*/NULL);
|
|
int32_t L_9 = ___startPosition3;
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)L_9));
|
|
int32_t L_10 = ___length4;
|
|
int32_t L_11 = V_0;
|
|
if ((((int32_t)L_10) <= ((int32_t)L_11)))
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_12 = V_0;
|
|
___length4 = L_12;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
bool L_13 = MaskedTextProvider_get_IsPassword_mA79456F55E5BEFBD593A27C511A2FF5BBD0FDDAA(__this, /*hidden argument*/NULL);
|
|
bool L_14 = ___ignorePasswordChar0;
|
|
if (!((int32_t)((int32_t)((((int32_t)L_13) == ((int32_t)0))? 1 : 0)|(int32_t)L_14)))
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
}
|
|
{
|
|
bool L_15 = ___includePrompt1;
|
|
bool L_16 = ___includeLiterals2;
|
|
if (!((int32_t)((int32_t)L_15&(int32_t)L_16)))
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_17 = __this->get_testString_20();
|
|
int32_t L_18 = ___startPosition3;
|
|
int32_t L_19 = ___length4;
|
|
NullCheck(L_17);
|
|
String_t* L_20 = StringBuilder_ToString_mB91781E31C1CF168F780733E67EA40A5386693C6(L_17, L_18, L_19, /*hidden argument*/NULL);
|
|
return L_20;
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
StringBuilder_t * L_21 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
|
|
StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_21, /*hidden argument*/NULL);
|
|
V_1 = L_21;
|
|
int32_t L_22 = ___startPosition3;
|
|
int32_t L_23 = ___length4;
|
|
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)L_23)), (int32_t)1));
|
|
bool L_24 = ___includePrompt1;
|
|
if (L_24)
|
|
{
|
|
goto IL_00bb;
|
|
}
|
|
}
|
|
{
|
|
bool L_25 = ___includeLiterals2;
|
|
if (L_25)
|
|
{
|
|
goto IL_007c;
|
|
}
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
int32_t L_26 = MaskedTextProvider_get_InvalidIndex_m763EC9BB0377976032C14BA00AF1A4A3337DDF7E(/*hidden argument*/NULL);
|
|
G_B15_0 = L_26;
|
|
goto IL_0086;
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
int32_t L_27 = ___startPosition3;
|
|
int32_t L_28 = V_2;
|
|
int32_t L_29 = MaskedTextProvider_FindNonEditPositionInRange_m259C05DC5F6DC27C32B74B9C77E69E0CA203B235(__this, L_27, L_28, (bool)0, /*hidden argument*/NULL);
|
|
G_B15_0 = L_29;
|
|
}
|
|
|
|
IL_0086:
|
|
{
|
|
V_3 = G_B15_0;
|
|
int32_t L_30 = V_3;
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
int32_t L_31 = MaskedTextProvider_get_InvalidIndex_m763EC9BB0377976032C14BA00AF1A4A3337DDF7E(/*hidden argument*/NULL);
|
|
G_B16_0 = __this;
|
|
if ((((int32_t)L_30) == ((int32_t)L_31)))
|
|
{
|
|
G_B17_0 = __this;
|
|
goto IL_0093;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_32 = V_3;
|
|
G_B18_0 = L_32;
|
|
G_B18_1 = G_B16_0;
|
|
goto IL_0095;
|
|
}
|
|
|
|
IL_0093:
|
|
{
|
|
int32_t L_33 = ___startPosition3;
|
|
G_B18_0 = L_33;
|
|
G_B18_1 = G_B17_0;
|
|
}
|
|
|
|
IL_0095:
|
|
{
|
|
int32_t L_34 = V_2;
|
|
NullCheck(G_B18_1);
|
|
int32_t L_35 = MaskedTextProvider_FindAssignedEditPositionInRange_m99FEE6803040007A2AC914E2B66D41901B211CE8(G_B18_1, G_B18_0, L_34, (bool)0, /*hidden argument*/NULL);
|
|
V_4 = L_35;
|
|
int32_t L_36 = V_4;
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
int32_t L_37 = MaskedTextProvider_get_InvalidIndex_m763EC9BB0377976032C14BA00AF1A4A3337DDF7E(/*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_36) == ((uint32_t)L_37))))
|
|
{
|
|
goto IL_00aa;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_38 = V_3;
|
|
G_B21_0 = L_38;
|
|
goto IL_00ac;
|
|
}
|
|
|
|
IL_00aa:
|
|
{
|
|
int32_t L_39 = V_4;
|
|
G_B21_0 = L_39;
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
V_2 = G_B21_0;
|
|
int32_t L_40 = V_2;
|
|
IL2CPP_RUNTIME_CLASS_INIT(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var);
|
|
int32_t L_41 = MaskedTextProvider_get_InvalidIndex_m763EC9BB0377976032C14BA00AF1A4A3337DDF7E(/*hidden argument*/NULL);
|
|
if ((!(((uint32_t)L_40) == ((uint32_t)L_41))))
|
|
{
|
|
goto IL_00bb;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_42 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
|
|
return L_42;
|
|
}
|
|
|
|
IL_00bb:
|
|
{
|
|
int32_t L_43 = ___startPosition3;
|
|
V_5 = L_43;
|
|
goto IL_013e;
|
|
}
|
|
|
|
IL_00c1:
|
|
{
|
|
StringBuilder_t * L_44 = __this->get_testString_20();
|
|
int32_t L_45 = V_5;
|
|
NullCheck(L_44);
|
|
Il2CppChar L_46 = StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6(L_44, L_45, /*hidden argument*/NULL);
|
|
V_6 = L_46;
|
|
List_1_t534EACBABA93D935E71506BB9B9529485F1E0966 * L_47 = __this->get_stringDescriptor_28();
|
|
int32_t L_48 = V_5;
|
|
NullCheck(L_47);
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_49 = List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_inline(L_47, L_48, /*hidden argument*/List_1_get_Item_mD5A0E2CF89E9419F4DD9F855780128359D6B068F_RuntimeMethod_var);
|
|
V_7 = L_49;
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_50 = V_7;
|
|
NullCheck(L_50);
|
|
int32_t L_51 = L_50->get_CharType_2();
|
|
V_8 = L_51;
|
|
int32_t L_52 = V_8;
|
|
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_52, (int32_t)1))) > ((uint32_t)1))))
|
|
{
|
|
goto IL_00fb;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_53 = V_8;
|
|
if ((((int32_t)L_53) == ((int32_t)4)))
|
|
{
|
|
goto IL_012c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_54 = V_8;
|
|
if ((((int32_t)L_54) == ((int32_t)8)))
|
|
{
|
|
goto IL_012c;
|
|
}
|
|
}
|
|
{
|
|
goto IL_012f;
|
|
}
|
|
|
|
IL_00fb:
|
|
{
|
|
CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * L_55 = V_7;
|
|
NullCheck(L_55);
|
|
bool L_56 = L_55->get_IsAssigned_3();
|
|
if (!L_56)
|
|
{
|
|
goto IL_011e;
|
|
}
|
|
}
|
|
{
|
|
bool L_57 = MaskedTextProvider_get_IsPassword_mA79456F55E5BEFBD593A27C511A2FF5BBD0FDDAA(__this, /*hidden argument*/NULL);
|
|
if (!L_57)
|
|
{
|
|
goto IL_012f;
|
|
}
|
|
}
|
|
{
|
|
bool L_58 = ___ignorePasswordChar0;
|
|
if (L_58)
|
|
{
|
|
goto IL_012f;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_59 = V_1;
|
|
Il2CppChar L_60 = __this->get_passwordChar_26();
|
|
NullCheck(L_59);
|
|
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_59, L_60, /*hidden argument*/NULL);
|
|
goto IL_0138;
|
|
}
|
|
|
|
IL_011e:
|
|
{
|
|
bool L_61 = ___includePrompt1;
|
|
if (L_61)
|
|
{
|
|
goto IL_012f;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_62 = V_1;
|
|
NullCheck(L_62);
|
|
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_62, ((int32_t)32), /*hidden argument*/NULL);
|
|
goto IL_0138;
|
|
}
|
|
|
|
IL_012c:
|
|
{
|
|
bool L_63 = ___includeLiterals2;
|
|
if (!L_63)
|
|
{
|
|
goto IL_0138;
|
|
}
|
|
}
|
|
|
|
IL_012f:
|
|
{
|
|
StringBuilder_t * L_64 = V_1;
|
|
Il2CppChar L_65 = V_6;
|
|
NullCheck(L_64);
|
|
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_64, L_65, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0138:
|
|
{
|
|
int32_t L_66 = V_5;
|
|
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)1));
|
|
}
|
|
|
|
IL_013e:
|
|
{
|
|
int32_t L_67 = V_5;
|
|
int32_t L_68 = V_2;
|
|
if ((((int32_t)L_67) <= ((int32_t)L_68)))
|
|
{
|
|
goto IL_00c1;
|
|
}
|
|
}
|
|
{
|
|
StringBuilder_t * L_69 = V_1;
|
|
NullCheck(L_69);
|
|
String_t* L_70 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_69);
|
|
return L_70;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::VerifyChar(System.Char,System.Int32,System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_VerifyChar_mB670EAB410DFFBBE40C08EA88A85EC55428198F3 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, Il2CppChar ___input0, int32_t ___position1, int32_t* ___hint2, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t* L_0 = ___hint2;
|
|
*((int32_t*)L_0) = (int32_t)2;
|
|
int32_t L_1 = ___position1;
|
|
if ((((int32_t)L_1) < ((int32_t)0)))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___position1;
|
|
StringBuilder_t * L_3 = __this->get_testString_20();
|
|
NullCheck(L_3);
|
|
int32_t L_4 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_3, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_2) < ((int32_t)L_4)))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
int32_t* L_5 = ___hint2;
|
|
*((int32_t*)L_5) = (int32_t)((int32_t)-55);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
Il2CppChar L_6 = ___input0;
|
|
int32_t L_7 = ___position1;
|
|
int32_t* L_8 = ___hint2;
|
|
bool L_9 = MaskedTextProvider_TestChar_mAC74996A38215989049A56253C5D0267D8C9CED1(__this, L_6, L_7, (int32_t*)L_8, /*hidden argument*/NULL);
|
|
return L_9;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::VerifyEscapeChar(System.Char,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_VerifyEscapeChar_mDA78431F94FEB369617501CCDFA2C6927DDB3535 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, Il2CppChar ___input0, int32_t ___position1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___position1;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___position1;
|
|
StringBuilder_t * L_2 = __this->get_testString_20();
|
|
NullCheck(L_2);
|
|
int32_t L_3 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_2, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_1) < ((int32_t)L_3)))
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
Il2CppChar L_4 = ___input0;
|
|
int32_t L_5 = ___position1;
|
|
bool L_6 = MaskedTextProvider_TestEscapeChar_mC839F205DD58646AB41D153330BE9FF7565D3C22(__this, L_4, L_5, /*hidden argument*/NULL);
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::VerifyString(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_VerifyString_mA85C1EE4CA111690F2396B9791F808525D3CC5E7 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___input0, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
String_t* L_0 = ___input0;
|
|
bool L_1 = MaskedTextProvider_VerifyString_m090D99B67778B10EEC2F14F7652D1F59138B5851(__this, L_0, (int32_t*)(&V_0), (int32_t*)(&V_1), /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MaskedTextProvider::VerifyString(System.String,System.Int32&,System.ComponentModel.MaskedTextResultHint&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MaskedTextProvider_VerifyString_m090D99B67778B10EEC2F14F7652D1F59138B5851 (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, String_t* ___input0, int32_t* ___testPosition1, int32_t* ___resultHint2, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t* L_0 = ___testPosition1;
|
|
*((int32_t*)L_0) = (int32_t)0;
|
|
String_t* L_1 = ___input0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = ___input0;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_2, /*hidden argument*/NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t* L_4 = ___resultHint2;
|
|
*((int32_t*)L_4) = (int32_t)2;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
String_t* L_5 = ___input0;
|
|
int32_t* L_6 = ___testPosition1;
|
|
int32_t* L_7 = ___resultHint2;
|
|
bool L_8 = MaskedTextProvider_TestString_mFEF74E01CEAA8F7593520754B78CA41411E2C2DA(__this, L_5, 0, (int32_t*)L_6, (int32_t*)L_7, /*hidden argument*/NULL);
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MaskedTextProvider::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaskedTextProvider__cctor_mE62664DE9040FDDCCC9A0EB15135979A453D964D (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MaskedTextProvider__cctor_mE62664DE9040FDDCCC9A0EB15135979A453D964D_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = BitVector32_CreateMask_mF40475E10251217A893C1C396B80B4690A6245B2(/*hidden argument*/NULL);
|
|
((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->set_ASCII_ONLY_10(L_0);
|
|
int32_t L_1 = ((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->get_ASCII_ONLY_10();
|
|
int32_t L_2 = BitVector32_CreateMask_mFE756231DB1A3377702CD31ED57BF6CBCB0487CD(L_1, /*hidden argument*/NULL);
|
|
((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->set_ALLOW_PROMPT_AS_INPUT_11(L_2);
|
|
int32_t L_3 = ((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->get_ALLOW_PROMPT_AS_INPUT_11();
|
|
int32_t L_4 = BitVector32_CreateMask_mFE756231DB1A3377702CD31ED57BF6CBCB0487CD(L_3, /*hidden argument*/NULL);
|
|
((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->set_INCLUDE_PROMPT_12(L_4);
|
|
int32_t L_5 = ((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->get_INCLUDE_PROMPT_12();
|
|
int32_t L_6 = BitVector32_CreateMask_mFE756231DB1A3377702CD31ED57BF6CBCB0487CD(L_5, /*hidden argument*/NULL);
|
|
((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->set_INCLUDE_LITERALS_13(L_6);
|
|
int32_t L_7 = ((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->get_INCLUDE_LITERALS_13();
|
|
int32_t L_8 = BitVector32_CreateMask_mFE756231DB1A3377702CD31ED57BF6CBCB0487CD(L_7, /*hidden argument*/NULL);
|
|
((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->set_RESET_ON_PROMPT_14(L_8);
|
|
int32_t L_9 = ((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->get_RESET_ON_PROMPT_14();
|
|
int32_t L_10 = BitVector32_CreateMask_mFE756231DB1A3377702CD31ED57BF6CBCB0487CD(L_9, /*hidden argument*/NULL);
|
|
((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->set_RESET_ON_LITERALS_15(L_10);
|
|
int32_t L_11 = ((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->get_RESET_ON_LITERALS_15();
|
|
int32_t L_12 = BitVector32_CreateMask_mFE756231DB1A3377702CD31ED57BF6CBCB0487CD(L_11, /*hidden argument*/NULL);
|
|
((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->set_SKIP_SPACE_16(L_12);
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_13 = { reinterpret_cast<intptr_t> (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_14 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_13, /*hidden argument*/NULL);
|
|
((MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_StaticFields*)il2cpp_codegen_static_fields_for(MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197_il2cpp_TypeInfo_var))->set_maskTextProviderType_17(L_14);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.MaskedTextProvider_CharDescriptor::.ctor(System.Int32,System.ComponentModel.MaskedTextProvider_CharType)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharDescriptor__ctor_m19AB18A65157129B4CFB273E1BC5FCF7D8C6E93B (CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * __this, int32_t ___maskPos0, int32_t ___charType1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
int32_t L_0 = ___maskPos0;
|
|
__this->set_MaskPosition_0(L_0);
|
|
int32_t L_1 = ___charType1;
|
|
__this->set_CharType_2(L_1);
|
|
return;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.MaskedTextProvider_CharDescriptor::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CharDescriptor_ToString_m77BF47D26BBCA29730EBD50AA74D8FB45C3AFCAC (CharDescriptor_t8FA4F99310872A548406BE90FD1A7E1484C6ED5D * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (CharDescriptor_ToString_m77BF47D26BBCA29730EBD50AA74D8FB45C3AFCAC_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)4);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1;
|
|
int32_t L_3 = __this->get_MaskPosition_0();
|
|
int32_t L_4 = L_3;
|
|
RuntimeObject * L_5 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_4);
|
|
NullCheck(L_2);
|
|
ArrayElementTypeCheck (L_2, L_5);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_5);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = L_2;
|
|
int32_t L_7 = __this->get_CaseConversion_1();
|
|
int32_t L_8 = L_7;
|
|
RuntimeObject * L_9 = Box(CaseConversion_t193D8AE57418D335B7AD2FEE554BB2230D2F6491_il2cpp_TypeInfo_var, &L_8);
|
|
NullCheck(L_6);
|
|
ArrayElementTypeCheck (L_6, L_9);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_9);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = L_6;
|
|
int32_t L_11 = __this->get_CharType_2();
|
|
int32_t L_12 = L_11;
|
|
RuntimeObject * L_13 = Box(CharType_tC58073D5F1CD7F2BF4709E8CEBF07D1D6680159A_il2cpp_TypeInfo_var, &L_12);
|
|
NullCheck(L_10);
|
|
ArrayElementTypeCheck (L_10, L_13);
|
|
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_13);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = L_10;
|
|
bool L_15 = __this->get_IsAssigned_3();
|
|
bool L_16 = L_15;
|
|
RuntimeObject * L_17 = Box(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var, &L_16);
|
|
NullCheck(L_14);
|
|
ArrayElementTypeCheck (L_14, L_17);
|
|
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_17);
|
|
String_t* L_18 = String_Format_mF68EE0DEC1AA5ADE9DFEF9AE0508E428FBB10EFD(L_0, _stringLiteral83C8201E3677962B9D2E723C21BDD4D85E37D15E, L_14, /*hidden argument*/NULL);
|
|
return L_18;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.MemberDescriptor::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberDescriptor__ctor_m86DA19B199C6354CD4C81BAB824C5E4A1B6272B8 (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * __this, String_t* ___name0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___name0;
|
|
MemberDescriptor__ctor_m7DA97C2FCA1C99D7D7B31A89A908219E4A48DE7B(__this, L_0, (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)NULL, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MemberDescriptor::.ctor(System.String,System.Attribute[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberDescriptor__ctor_m7DA97C2FCA1C99D7D7B31A89A908219E4A48DE7B (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * __this, String_t* ___name0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MemberDescriptor__ctor_m7DA97C2FCA1C99D7D7B31A89A908219E4A48DE7B_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
{
|
|
RuntimeObject * L_0 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_0, /*hidden argument*/NULL);
|
|
__this->set_lockCookie_11(L_0);
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0011:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
{
|
|
String_t* L_1 = ___name0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
String_t* L_2 = ___name0;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_2, /*hidden argument*/NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
String_t* L_4 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteralB307ADF1B0B79C1027DC2B4501FEAE90EC699F17, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_5 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_5, L_4, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, MemberDescriptor__ctor_m7DA97C2FCA1C99D7D7B31A89A908219E4A48DE7B_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
String_t* L_6 = ___name0;
|
|
__this->set_name_0(L_6);
|
|
String_t* L_7 = ___name0;
|
|
__this->set_displayName_1(L_7);
|
|
String_t* L_8 = ___name0;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_8);
|
|
__this->set_nameHash_2(L_9);
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_10 = ___attributes1;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_11 = ___attributes1;
|
|
__this->set_attributes_4(L_11);
|
|
__this->set_attributesFiltered_6((bool)0);
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_12 = __this->get_attributes_4();
|
|
__this->set_originalAttributes_5(L_12);
|
|
goto IL_0066;
|
|
}
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__exception_local = (Exception_t *)e.ex;
|
|
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
|
|
goto CATCH_0065;
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0065:
|
|
{ // begin catch(System.Exception)
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(((Exception_t *)__exception_local), MemberDescriptor__ctor_m7DA97C2FCA1C99D7D7B31A89A908219E4A48DE7B_RuntimeMethod_var);
|
|
} // end catch (depth: 1)
|
|
|
|
IL_0066:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MemberDescriptor::.ctor(System.ComponentModel.MemberDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberDescriptor__ctor_mFD23579925A3F34CB985856C22D3CD13BB49D41B (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * __this, MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * ___descr0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MemberDescriptor__ctor_mFD23579925A3F34CB985856C22D3CD13BB49D41B_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject * L_0 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_0, /*hidden argument*/NULL);
|
|
__this->set_lockCookie_11(L_0);
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_1 = ___descr0;
|
|
NullCheck(L_1);
|
|
String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, L_1);
|
|
__this->set_name_0(L_2);
|
|
String_t* L_3 = __this->get_name_0();
|
|
__this->set_displayName_1(L_3);
|
|
String_t* L_4 = __this->get_name_0();
|
|
NullCheck(L_4);
|
|
int32_t L_5 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_4);
|
|
__this->set_nameHash_2(L_5);
|
|
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_6 = ___descr0;
|
|
NullCheck(L_6);
|
|
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_7 = VirtFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(6 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, L_6);
|
|
NullCheck(L_7);
|
|
int32_t L_8 = AttributeCollection_get_Count_m18B4E5D1755D27754C9B3C7C89B4BD91B1458EC4(L_7, /*hidden argument*/NULL);
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_9 = (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)SZArrayNew(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var, (uint32_t)L_8);
|
|
__this->set_attributes_4(L_9);
|
|
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_10 = ___descr0;
|
|
NullCheck(L_10);
|
|
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_11 = VirtFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(6 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, L_10);
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_12 = __this->get_attributes_4();
|
|
NullCheck(L_11);
|
|
AttributeCollection_CopyTo_mAE40D3E0FE070974B37F9BA5F4600E622E6F621F(L_11, (RuntimeArray *)(RuntimeArray *)L_12, 0, /*hidden argument*/NULL);
|
|
__this->set_attributesFiltered_6((bool)1);
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_13 = __this->get_attributes_4();
|
|
__this->set_originalAttributes_5(L_13);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MemberDescriptor::.ctor(System.ComponentModel.MemberDescriptor,System.Attribute[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberDescriptor__ctor_mDDA60D0BB2448D6607AB2F2C353A8C30CFABE0A3 (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * __this, MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * ___oldMemberDescriptor0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___newAttributes1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MemberDescriptor__ctor_mDDA60D0BB2448D6607AB2F2C353A8C30CFABE0A3_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
RuntimeObject * V_2 = NULL;
|
|
RuntimeObject* V_3 = NULL;
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_4 = NULL;
|
|
int32_t V_5 = 0;
|
|
RuntimeObject * V_6 = NULL;
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
{
|
|
RuntimeObject * L_0 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_0, /*hidden argument*/NULL);
|
|
__this->set_lockCookie_11(L_0);
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_1 = ___oldMemberDescriptor0;
|
|
NullCheck(L_1);
|
|
String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, L_1);
|
|
__this->set_name_0(L_2);
|
|
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_3 = ___oldMemberDescriptor0;
|
|
NullCheck(L_3);
|
|
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(13 /* System.String System.ComponentModel.MemberDescriptor::get_DisplayName() */, L_3);
|
|
__this->set_displayName_1(L_4);
|
|
String_t* L_5 = __this->get_name_0();
|
|
NullCheck(L_5);
|
|
int32_t L_6 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_5);
|
|
__this->set_nameHash_2(L_6);
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_7 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
|
|
ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6(L_7, /*hidden argument*/NULL);
|
|
V_0 = L_7;
|
|
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_8 = ___oldMemberDescriptor0;
|
|
NullCheck(L_8);
|
|
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_9 = VirtFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(6 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, L_8);
|
|
NullCheck(L_9);
|
|
int32_t L_10 = AttributeCollection_get_Count_m18B4E5D1755D27754C9B3C7C89B4BD91B1458EC4(L_9, /*hidden argument*/NULL);
|
|
if (!L_10)
|
|
{
|
|
goto IL_0085;
|
|
}
|
|
}
|
|
{
|
|
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_11 = ___oldMemberDescriptor0;
|
|
NullCheck(L_11);
|
|
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_12 = VirtFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(6 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, L_11);
|
|
NullCheck(L_12);
|
|
RuntimeObject* L_13 = AttributeCollection_GetEnumerator_m0A6B7803DAA1D559DF91BB18D0230F449A036DCB(L_12, /*hidden argument*/NULL);
|
|
V_1 = L_13;
|
|
}
|
|
|
|
IL_0059:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
{
|
|
goto IL_006a;
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
RuntimeObject* L_14 = V_1;
|
|
NullCheck(L_14);
|
|
RuntimeObject * L_15 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_14);
|
|
V_2 = L_15;
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_16 = V_0;
|
|
RuntimeObject * L_17 = V_2;
|
|
NullCheck(L_16);
|
|
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_16, L_17);
|
|
}
|
|
|
|
IL_006a:
|
|
{
|
|
RuntimeObject* L_18 = V_1;
|
|
NullCheck(L_18);
|
|
bool L_19 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_18);
|
|
if (L_19)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
|
|
IL_0072:
|
|
{
|
|
IL2CPP_LEAVE(0x85, FINALLY_0074);
|
|
}
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__last_unhandled_exception = (Exception_t *)e.ex;
|
|
goto FINALLY_0074;
|
|
}
|
|
|
|
FINALLY_0074:
|
|
{ // begin finally (depth: 1)
|
|
{
|
|
RuntimeObject* L_20 = V_1;
|
|
V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_20, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_21 = V_3;
|
|
if (!L_21)
|
|
{
|
|
goto IL_0084;
|
|
}
|
|
}
|
|
|
|
IL_007e:
|
|
{
|
|
RuntimeObject* L_22 = V_3;
|
|
NullCheck(L_22);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_22);
|
|
}
|
|
|
|
IL_0084:
|
|
{
|
|
IL2CPP_END_FINALLY(116)
|
|
}
|
|
} // end finally (depth: 1)
|
|
IL2CPP_CLEANUP(116)
|
|
{
|
|
IL2CPP_JUMP_TBL(0x85, IL_0085)
|
|
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
|
|
}
|
|
|
|
IL_0085:
|
|
{
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_23 = ___newAttributes1;
|
|
if (!L_23)
|
|
{
|
|
goto IL_00ae;
|
|
}
|
|
}
|
|
{
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_24 = ___newAttributes1;
|
|
V_4 = L_24;
|
|
V_5 = 0;
|
|
goto IL_00a6;
|
|
}
|
|
|
|
IL_0090:
|
|
{
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_25 = V_4;
|
|
int32_t L_26 = V_5;
|
|
NullCheck(L_25);
|
|
int32_t L_27 = L_26;
|
|
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_28 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_27));
|
|
V_6 = L_28;
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_29 = V_0;
|
|
RuntimeObject * L_30 = V_6;
|
|
NullCheck(L_29);
|
|
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_29, L_30);
|
|
int32_t L_31 = V_5;
|
|
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1));
|
|
}
|
|
|
|
IL_00a6:
|
|
{
|
|
int32_t L_32 = V_5;
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_33 = V_4;
|
|
NullCheck(L_33);
|
|
if ((((int32_t)L_32) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_33)->max_length)))))))
|
|
{
|
|
goto IL_0090;
|
|
}
|
|
}
|
|
|
|
IL_00ae:
|
|
{
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_34 = V_0;
|
|
NullCheck(L_34);
|
|
int32_t L_35 = VirtFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_34);
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_36 = (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)SZArrayNew(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var, (uint32_t)L_35);
|
|
__this->set_attributes_4(L_36);
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_37 = V_0;
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_38 = __this->get_attributes_4();
|
|
NullCheck(L_37);
|
|
VirtActionInvoker2< RuntimeArray *, int32_t >::Invoke(35 /* System.Void System.Collections.ArrayList::CopyTo(System.Array,System.Int32) */, L_37, (RuntimeArray *)(RuntimeArray *)L_38, 0);
|
|
__this->set_attributesFiltered_6((bool)0);
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_39 = __this->get_attributes_4();
|
|
__this->set_originalAttributes_5(L_39);
|
|
return;
|
|
}
|
|
}
|
|
// System.Attribute[] System.ComponentModel.MemberDescriptor::get_AttributeArray()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* MemberDescriptor_get_AttributeArray_mDB41975C313AF40B0FA82B33F0AD504E92F3FDE8 (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
MemberDescriptor_CheckAttributesValid_mEAFC02C4EAED626FCDC291F1512DD0E602E232BE(__this, /*hidden argument*/NULL);
|
|
MemberDescriptor_FilterAttributesIfNeeded_mDEFEACE930F7537A7DF7A530198F04C73301D591(__this, /*hidden argument*/NULL);
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_0 = __this->get_attributes_4();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MemberDescriptor::set_AttributeArray(System.Attribute[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberDescriptor_set_AttributeArray_m26BD377D06AA20A1A9A2DB982904B10CBF6D81F7 (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * __this, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___value0, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject * V_0 = NULL;
|
|
bool V_1 = false;
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
{
|
|
RuntimeObject * L_0 = __this->get_lockCookie_11();
|
|
V_0 = L_0;
|
|
V_1 = (bool)0;
|
|
}
|
|
|
|
IL_0009:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
RuntimeObject * L_1 = V_0;
|
|
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_1, (bool*)(&V_1), /*hidden argument*/NULL);
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_2 = ___value0;
|
|
__this->set_attributes_4(L_2);
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_3 = ___value0;
|
|
__this->set_originalAttributes_5(L_3);
|
|
__this->set_attributesFiltered_6((bool)0);
|
|
__this->set_attributeCollection_3((AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE *)NULL);
|
|
IL2CPP_LEAVE(0x39, FINALLY_002f);
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__last_unhandled_exception = (Exception_t *)e.ex;
|
|
goto FINALLY_002f;
|
|
}
|
|
|
|
FINALLY_002f:
|
|
{ // begin finally (depth: 1)
|
|
{
|
|
bool L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
RuntimeObject * L_5 = V_0;
|
|
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_5, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
IL2CPP_END_FINALLY(47)
|
|
}
|
|
} // end finally (depth: 1)
|
|
IL2CPP_CLEANUP(47)
|
|
{
|
|
IL2CPP_JUMP_TBL(0x39, IL_0039)
|
|
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * MemberDescriptor_get_Attributes_m4D430272C6E7D07FD2DD901B6FC26E3886217153 (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * __this, const RuntimeMethod* method)
|
|
{
|
|
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * V_0 = NULL;
|
|
RuntimeObject * V_1 = NULL;
|
|
bool V_2 = false;
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
{
|
|
MemberDescriptor_CheckAttributesValid_mEAFC02C4EAED626FCDC291F1512DD0E602E232BE(__this, /*hidden argument*/NULL);
|
|
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_0 = __this->get_attributeCollection_3();
|
|
V_0 = L_0;
|
|
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_1 = V_0;
|
|
if (L_1)
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_2 = __this->get_lockCookie_11();
|
|
V_1 = L_2;
|
|
V_2 = (bool)0;
|
|
}
|
|
|
|
IL_0019:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
RuntimeObject * L_3 = V_1;
|
|
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_3, (bool*)(&V_2), /*hidden argument*/NULL);
|
|
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_4 = VirtFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(14 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::CreateAttributeCollection() */, __this);
|
|
V_0 = L_4;
|
|
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_5 = V_0;
|
|
__this->set_attributeCollection_3(L_5);
|
|
IL2CPP_LEAVE(0x3B, FINALLY_0031);
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__last_unhandled_exception = (Exception_t *)e.ex;
|
|
goto FINALLY_0031;
|
|
}
|
|
|
|
FINALLY_0031:
|
|
{ // begin finally (depth: 1)
|
|
{
|
|
bool L_6 = V_2;
|
|
if (!L_6)
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
RuntimeObject * L_7 = V_1;
|
|
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_7, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
IL2CPP_END_FINALLY(49)
|
|
}
|
|
} // end finally (depth: 1)
|
|
IL2CPP_CLEANUP(49)
|
|
{
|
|
IL2CPP_JUMP_TBL(0x3B, IL_003b)
|
|
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_8 = V_0;
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.MemberDescriptor::get_Category()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MemberDescriptor_get_Category_m25D9C09A26AF999DB0E27F967E31228E3C51BA00 (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MemberDescriptor_get_Category_m25D9C09A26AF999DB0E27F967E31228E3C51BA00_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = __this->get_category_9();
|
|
if (L_0)
|
|
{
|
|
goto IL_002d;
|
|
}
|
|
}
|
|
{
|
|
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_1 = VirtFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(6 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, __this);
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_2, /*hidden argument*/NULL);
|
|
NullCheck(L_1);
|
|
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_4 = VirtFuncInvoker1< Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_1, L_3);
|
|
NullCheck(((CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 *)CastclassClass((RuntimeObject*)L_4, CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_il2cpp_TypeInfo_var)));
|
|
String_t* L_5 = CategoryAttribute_get_Category_mBDB4C9D10F07BC627C4D047B8CD570D84EC56F3F(((CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80 *)CastclassClass((RuntimeObject*)L_4, CategoryAttribute_t89C58D266A4A65CD58E04FF63344AA3E0AF57B80_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
|
|
__this->set_category_9(L_5);
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
String_t* L_6 = __this->get_category_9();
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.MemberDescriptor::get_Description()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MemberDescriptor_get_Description_m5505BC9F156EA609B1D60097A66D49AA6120472F (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MemberDescriptor_get_Description_m5505BC9F156EA609B1D60097A66D49AA6120472F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = __this->get_description_10();
|
|
if (L_0)
|
|
{
|
|
goto IL_002d;
|
|
}
|
|
}
|
|
{
|
|
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_1 = VirtFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(6 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, __this);
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_2, /*hidden argument*/NULL);
|
|
NullCheck(L_1);
|
|
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_4 = VirtFuncInvoker1< Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_1, L_3);
|
|
NullCheck(((DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75 *)CastclassClass((RuntimeObject*)L_4, DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75_il2cpp_TypeInfo_var)));
|
|
String_t* L_5 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.ComponentModel.DescriptionAttribute::get_Description() */, ((DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75 *)CastclassClass((RuntimeObject*)L_4, DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75_il2cpp_TypeInfo_var)));
|
|
__this->set_description_10(L_5);
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
String_t* L_6 = __this->get_description_10();
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MemberDescriptor::get_IsBrowsable()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MemberDescriptor_get_IsBrowsable_mF7CF97530C533D11E610BB19E076EF030C5B0EBA (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MemberDescriptor_get_IsBrowsable_mF7CF97530C533D11E610BB19E076EF030C5B0EBA_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_0 = VirtFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(6 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, __this);
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL);
|
|
NullCheck(L_0);
|
|
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_3 = VirtFuncInvoker1< Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_0, L_2);
|
|
NullCheck(((BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 *)CastclassSealed((RuntimeObject*)L_3, BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1_il2cpp_TypeInfo_var)));
|
|
bool L_4 = BrowsableAttribute_get_Browsable_m84931BFF3F51CB9F14D7B1D7548B796FE2DBB8D2_inline(((BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 *)CastclassSealed((RuntimeObject*)L_3, BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.MemberDescriptor::get_Name()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MemberDescriptor_get_Name_mFADCC43480F88C3749FA2B82EAECA54F79D848BB (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MemberDescriptor_get_Name_mFADCC43480F88C3749FA2B82EAECA54F79D848BB_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = __this->get_name_0();
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
return _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
String_t* L_1 = __this->get_name_0();
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.MemberDescriptor::get_NameHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MemberDescriptor_get_NameHashCode_mA91F4591F9D76BDCB3A43FFA2EF534DAB62CDB6A (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->get_nameHash_2();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MemberDescriptor::get_DesignTimeOnly()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MemberDescriptor_get_DesignTimeOnly_m6BCDA286F416E39BC45DC2BA830A7E49B7A8DE00 (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MemberDescriptor_get_DesignTimeOnly_m6BCDA286F416E39BC45DC2BA830A7E49B7A8DE00_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_il2cpp_TypeInfo_var);
|
|
DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * L_0 = ((DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_StaticFields*)il2cpp_codegen_static_fields_for(DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_il2cpp_TypeInfo_var))->get_Yes_1();
|
|
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_1 = VirtFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(6 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, __this);
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_2, /*hidden argument*/NULL);
|
|
NullCheck(L_1);
|
|
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_4 = VirtFuncInvoker1< Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_1, L_3);
|
|
NullCheck(L_0);
|
|
bool L_5 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_0, L_4);
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.MemberDescriptor::get_DisplayName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MemberDescriptor_get_DisplayName_m985D97ED7EAEC1A7DA3524E50FB0CF9B3704B746 (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MemberDescriptor_get_DisplayName_m985D97ED7EAEC1A7DA3524E50FB0CF9B3704B746_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE * V_0 = NULL;
|
|
{
|
|
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_0 = VirtFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(6 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, __this);
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL);
|
|
NullCheck(L_0);
|
|
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_3 = VirtFuncInvoker1< Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_0, L_2);
|
|
V_0 = ((DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE *)IsInstClass((RuntimeObject*)L_3, DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE_il2cpp_TypeInfo_var));
|
|
DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE * L_4 = V_0;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE * L_5 = V_0;
|
|
NullCheck(L_5);
|
|
bool L_6 = VirtFuncInvoker0< bool >::Invoke(6 /* System.Boolean System.Attribute::IsDefaultAttribute() */, L_5);
|
|
if (!L_6)
|
|
{
|
|
goto IL_002d;
|
|
}
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
String_t* L_7 = __this->get_displayName_1();
|
|
return L_7;
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE * L_8 = V_0;
|
|
NullCheck(L_8);
|
|
String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.ComponentModel.DisplayNameAttribute::get_DisplayName() */, L_8);
|
|
return L_9;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MemberDescriptor::CheckAttributesValid()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberDescriptor_CheckAttributesValid_mEAFC02C4EAED626FCDC291F1512DD0E602E232BE (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MemberDescriptor_CheckAttributesValid_mEAFC02C4EAED626FCDC291F1512DD0E602E232BE_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
bool L_0 = __this->get_attributesFiltered_6();
|
|
if (!L_0)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = __this->get_metadataVersion_8();
|
|
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
|
|
int32_t L_2 = TypeDescriptor_get_MetadataVersion_m70C215D1B15DCBD67B58127EB0E6D7E6F5D020DC_inline(/*hidden argument*/NULL);
|
|
if ((((int32_t)L_1) == ((int32_t)L_2)))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
__this->set_attributesFilled_7((bool)0);
|
|
__this->set_attributesFiltered_6((bool)0);
|
|
__this->set_attributeCollection_3((AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE *)NULL);
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::CreateAttributeCollection()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * MemberDescriptor_CreateAttributeCollection_m579C3F75B24CD1373AE01189CD3CB9CBC6C49E66 (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MemberDescriptor_CreateAttributeCollection_m579C3F75B24CD1373AE01189CD3CB9CBC6C49E66_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_0 = VirtFuncInvoker0< AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* >::Invoke(4 /* System.Attribute[] System.ComponentModel.MemberDescriptor::get_AttributeArray() */, __this);
|
|
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_1 = (AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE *)il2cpp_codegen_object_new(AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE_il2cpp_TypeInfo_var);
|
|
AttributeCollection__ctor_m1EBB330147608510FB1B60549BA95812EA2A1190(L_1, L_0, /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MemberDescriptor::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MemberDescriptor_Equals_m66818127B5F93EE67144CB305127BA3377601E54 (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MemberDescriptor_Equals_m66818127B5F93EE67144CB305127BA3377601E54_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * V_0 = NULL;
|
|
bool V_1 = false;
|
|
int32_t V_2 = 0;
|
|
{
|
|
RuntimeObject * L_0 = ___obj0;
|
|
if ((!(((RuntimeObject*)(MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 *)__this) == ((RuntimeObject*)(RuntimeObject *)L_0))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
RuntimeObject * L_1 = ___obj0;
|
|
if (L_1)
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
RuntimeObject * L_2 = ___obj0;
|
|
NullCheck(L_2);
|
|
Type_t * L_3 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_2, /*hidden argument*/NULL);
|
|
Type_t * L_4 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_5 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_3, L_4, /*hidden argument*/NULL);
|
|
if (!L_5)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
RuntimeObject * L_6 = ___obj0;
|
|
V_0 = ((MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 *)CastclassClass((RuntimeObject*)L_6, MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8_il2cpp_TypeInfo_var));
|
|
MemberDescriptor_FilterAttributesIfNeeded_mDEFEACE930F7537A7DF7A530198F04C73301D591(__this, /*hidden argument*/NULL);
|
|
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_7 = V_0;
|
|
NullCheck(L_7);
|
|
MemberDescriptor_FilterAttributesIfNeeded_mDEFEACE930F7537A7DF7A530198F04C73301D591(L_7, /*hidden argument*/NULL);
|
|
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_8 = V_0;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->get_nameHash_2();
|
|
int32_t L_10 = __this->get_nameHash_2();
|
|
if ((((int32_t)L_9) == ((int32_t)L_10)))
|
|
{
|
|
goto IL_0043;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_11 = V_0;
|
|
NullCheck(L_11);
|
|
String_t* L_12 = L_11->get_category_9();
|
|
String_t* L_13 = __this->get_category_9();
|
|
if ((!(((uint32_t)((((RuntimeObject*)(String_t*)L_12) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0)) == ((uint32_t)((((RuntimeObject*)(String_t*)L_13) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0)))))
|
|
{
|
|
goto IL_0072;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_14 = __this->get_category_9();
|
|
if (!L_14)
|
|
{
|
|
goto IL_0074;
|
|
}
|
|
}
|
|
{
|
|
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_15 = V_0;
|
|
NullCheck(L_15);
|
|
String_t* L_16 = L_15->get_category_9();
|
|
String_t* L_17 = __this->get_category_9();
|
|
NullCheck(L_16);
|
|
bool L_18 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_16, L_17, /*hidden argument*/NULL);
|
|
if (L_18)
|
|
{
|
|
goto IL_0074;
|
|
}
|
|
}
|
|
|
|
IL_0072:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
bool L_19 = ((LocalAppContextSwitches_tCB6E2DAC291262684ED9423046B259A428F7B777_StaticFields*)il2cpp_codegen_static_fields_for(LocalAppContextSwitches_tCB6E2DAC291262684ED9423046B259A428F7B777_il2cpp_TypeInfo_var))->get_MemberDescriptorEqualsReturnsFalseIfEquivalent_0();
|
|
if (L_19)
|
|
{
|
|
goto IL_00ac;
|
|
}
|
|
}
|
|
{
|
|
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_20 = V_0;
|
|
NullCheck(L_20);
|
|
String_t* L_21 = L_20->get_description_10();
|
|
String_t* L_22 = __this->get_description_10();
|
|
if ((!(((uint32_t)((((RuntimeObject*)(String_t*)L_21) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0)) == ((uint32_t)((((RuntimeObject*)(String_t*)L_22) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0)))))
|
|
{
|
|
goto IL_00aa;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_23 = __this->get_description_10();
|
|
if (!L_23)
|
|
{
|
|
goto IL_00dd;
|
|
}
|
|
}
|
|
{
|
|
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_24 = V_0;
|
|
NullCheck(L_24);
|
|
String_t* L_25 = L_24->get_description_10();
|
|
String_t* L_26 = __this->get_description_10();
|
|
NullCheck(L_25);
|
|
bool L_27 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_25, L_26, /*hidden argument*/NULL);
|
|
if (L_27)
|
|
{
|
|
goto IL_00dd;
|
|
}
|
|
}
|
|
|
|
IL_00aa:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_28 = V_0;
|
|
NullCheck(L_28);
|
|
String_t* L_29 = L_28->get_description_10();
|
|
String_t* L_30 = __this->get_description_10();
|
|
if ((!(((uint32_t)((((RuntimeObject*)(String_t*)L_29) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0)) == ((uint32_t)((((RuntimeObject*)(String_t*)L_30) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0)))))
|
|
{
|
|
goto IL_00db;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_31 = __this->get_description_10();
|
|
if (!L_31)
|
|
{
|
|
goto IL_00dd;
|
|
}
|
|
}
|
|
{
|
|
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_32 = V_0;
|
|
NullCheck(L_32);
|
|
String_t* L_33 = L_32->get_category_9();
|
|
String_t* L_34 = __this->get_description_10();
|
|
NullCheck(L_33);
|
|
bool L_35 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_33, L_34, /*hidden argument*/NULL);
|
|
if (L_35)
|
|
{
|
|
goto IL_00dd;
|
|
}
|
|
}
|
|
|
|
IL_00db:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00dd:
|
|
{
|
|
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_36 = V_0;
|
|
NullCheck(L_36);
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_37 = L_36->get_attributes_4();
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_38 = __this->get_attributes_4();
|
|
if ((((int32_t)((((RuntimeObject*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)L_37) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0)) == ((int32_t)((((RuntimeObject*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)L_38) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0))))
|
|
{
|
|
goto IL_00f3;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00f3:
|
|
{
|
|
V_1 = (bool)1;
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_39 = __this->get_attributes_4();
|
|
if (!L_39)
|
|
{
|
|
goto IL_013f;
|
|
}
|
|
}
|
|
{
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_40 = __this->get_attributes_4();
|
|
NullCheck(L_40);
|
|
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_41 = V_0;
|
|
NullCheck(L_41);
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_42 = L_41->get_attributes_4();
|
|
NullCheck(L_42);
|
|
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_40)->max_length))))) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_42)->max_length)))))))
|
|
{
|
|
goto IL_0111;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0111:
|
|
{
|
|
V_2 = 0;
|
|
goto IL_0134;
|
|
}
|
|
|
|
IL_0115:
|
|
{
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_43 = __this->get_attributes_4();
|
|
int32_t L_44 = V_2;
|
|
NullCheck(L_43);
|
|
int32_t L_45 = L_44;
|
|
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_46 = (L_43)->GetAt(static_cast<il2cpp_array_size_t>(L_45));
|
|
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_47 = V_0;
|
|
NullCheck(L_47);
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_48 = L_47->get_attributes_4();
|
|
int32_t L_49 = V_2;
|
|
NullCheck(L_48);
|
|
int32_t L_50 = L_49;
|
|
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_51 = (L_48)->GetAt(static_cast<il2cpp_array_size_t>(L_50));
|
|
NullCheck(L_46);
|
|
bool L_52 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_46, L_51);
|
|
if (L_52)
|
|
{
|
|
goto IL_0130;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_013f;
|
|
}
|
|
|
|
IL_0130:
|
|
{
|
|
int32_t L_53 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_53, (int32_t)1));
|
|
}
|
|
|
|
IL_0134:
|
|
{
|
|
int32_t L_54 = V_2;
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_55 = __this->get_attributes_4();
|
|
NullCheck(L_55);
|
|
if ((((int32_t)L_54) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_55)->max_length)))))))
|
|
{
|
|
goto IL_0115;
|
|
}
|
|
}
|
|
|
|
IL_013f:
|
|
{
|
|
bool L_56 = V_1;
|
|
return L_56;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MemberDescriptor::FillAttributes(System.Collections.IList)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberDescriptor_FillAttributes_mA33C5FFD1DE2BA560E335B6549E60A229B9F773B (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * __this, RuntimeObject* ___attributeList0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MemberDescriptor_FillAttributes_mA33C5FFD1DE2BA560E335B6549E60A229B9F773B_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * V_2 = NULL;
|
|
{
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_0 = __this->get_originalAttributes_5();
|
|
if (!L_0)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_1 = __this->get_originalAttributes_5();
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_0023;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_2 = V_0;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
V_2 = L_5;
|
|
RuntimeObject* L_6 = ___attributeList0;
|
|
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_7 = V_2;
|
|
NullCheck(L_6);
|
|
InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(2 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, L_6, L_7);
|
|
int32_t L_8 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_9 = V_1;
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_10 = V_0;
|
|
NullCheck(L_10);
|
|
if ((((int32_t)L_9) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MemberDescriptor::FilterAttributesIfNeeded()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberDescriptor_FilterAttributesIfNeeded_mDEFEACE930F7537A7DF7A530198F04C73301D591 (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MemberDescriptor_FilterAttributesIfNeeded_mDEFEACE930F7537A7DF7A530198F04C73301D591_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * V_1 = NULL;
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_2 = NULL;
|
|
RuntimeObject* V_3 = NULL;
|
|
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * V_4 = NULL;
|
|
RuntimeObject* V_5 = NULL;
|
|
RuntimeObject * V_6 = NULL;
|
|
bool V_7 = false;
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 4);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
{
|
|
bool L_0 = __this->get_attributesFiltered_6();
|
|
if (L_0)
|
|
{
|
|
goto IL_00e3;
|
|
}
|
|
}
|
|
{
|
|
bool L_1 = __this->get_attributesFilled_7();
|
|
if (L_1)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_2 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
|
|
ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6(L_2, /*hidden argument*/NULL);
|
|
V_0 = L_2;
|
|
}
|
|
|
|
IL_0019:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
RuntimeObject* L_3 = V_0;
|
|
VirtActionInvoker1< RuntimeObject* >::Invoke(15 /* System.Void System.ComponentModel.MemberDescriptor::FillAttributes(System.Collections.IList) */, __this, L_3);
|
|
goto IL_0034;
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__exception_local = (Exception_t *)e.ex;
|
|
if(il2cpp_codegen_class_is_assignable_from (ThreadAbortException_t0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
|
|
goto CATCH_0022;
|
|
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
|
|
goto CATCH_0025;
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0022:
|
|
{ // begin catch(System.Threading.ThreadAbortException)
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(__exception_local, MemberDescriptor_FilterAttributesIfNeeded_mDEFEACE930F7537A7DF7A530198F04C73301D591_RuntimeMethod_var);
|
|
} // end catch (depth: 1)
|
|
|
|
CATCH_0025:
|
|
{ // begin catch(System.Exception)
|
|
goto IL_0034;
|
|
} // end catch (depth: 1)
|
|
|
|
IL_0028:
|
|
{
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_4 = __this->get_attributes_4();
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_5 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
|
|
ArrayList__ctor_m5BD62A8348AB3A2F573860E81A181B5376AF8FA1(L_5, (RuntimeObject*)(RuntimeObject*)L_4, /*hidden argument*/NULL);
|
|
V_0 = L_5;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
RuntimeObject* L_6 = V_0;
|
|
NullCheck(L_6);
|
|
int32_t L_7 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_6);
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_8 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
|
|
Hashtable__ctor_mAAFFE0698C829CFAFE176BD4A6C5DDA07A8ABDA9(L_8, L_7, /*hidden argument*/NULL);
|
|
V_1 = L_8;
|
|
RuntimeObject* L_9 = V_0;
|
|
NullCheck(L_9);
|
|
RuntimeObject* L_10 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var, L_9);
|
|
V_3 = L_10;
|
|
}
|
|
|
|
IL_0047:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
{
|
|
goto IL_0065;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
RuntimeObject* L_11 = V_3;
|
|
NullCheck(L_11);
|
|
RuntimeObject * L_12 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_11);
|
|
V_4 = ((Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *)CastclassClass((RuntimeObject*)L_12, Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_il2cpp_TypeInfo_var));
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_13 = V_1;
|
|
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_14 = V_4;
|
|
NullCheck(L_14);
|
|
RuntimeObject * L_15 = VirtFuncInvoker0< RuntimeObject * >::Invoke(4 /* System.Object System.Attribute::get_TypeId() */, L_14);
|
|
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_16 = V_4;
|
|
NullCheck(L_13);
|
|
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(31 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_13, L_15, L_16);
|
|
}
|
|
|
|
IL_0065:
|
|
{
|
|
RuntimeObject* L_17 = V_3;
|
|
NullCheck(L_17);
|
|
bool L_18 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_17);
|
|
if (L_18)
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
IL2CPP_LEAVE(0x83, FINALLY_006f);
|
|
}
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__last_unhandled_exception = (Exception_t *)e.ex;
|
|
goto FINALLY_006f;
|
|
}
|
|
|
|
FINALLY_006f:
|
|
{ // begin finally (depth: 1)
|
|
{
|
|
RuntimeObject* L_19 = V_3;
|
|
V_5 = ((RuntimeObject*)IsInst((RuntimeObject*)L_19, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_20 = V_5;
|
|
if (!L_20)
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
}
|
|
|
|
IL_007b:
|
|
{
|
|
RuntimeObject* L_21 = V_5;
|
|
NullCheck(L_21);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_21);
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
IL2CPP_END_FINALLY(111)
|
|
}
|
|
} // end finally (depth: 1)
|
|
IL2CPP_CLEANUP(111)
|
|
{
|
|
IL2CPP_JUMP_TBL(0x83, IL_0083)
|
|
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_22 = V_1;
|
|
NullCheck(L_22);
|
|
RuntimeObject* L_23 = VirtFuncInvoker0< RuntimeObject* >::Invoke(39 /* System.Collections.ICollection System.Collections.Hashtable::get_Values() */, L_22);
|
|
NullCheck(L_23);
|
|
int32_t L_24 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_23);
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_25 = (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)SZArrayNew(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var, (uint32_t)L_24);
|
|
V_2 = L_25;
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_26 = V_1;
|
|
NullCheck(L_26);
|
|
RuntimeObject* L_27 = VirtFuncInvoker0< RuntimeObject* >::Invoke(39 /* System.Collections.ICollection System.Collections.Hashtable::get_Values() */, L_26);
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_28 = V_2;
|
|
NullCheck(L_27);
|
|
InterfaceActionInvoker2< RuntimeArray *, int32_t >::Invoke(0 /* System.Void System.Collections.ICollection::CopyTo(System.Array,System.Int32) */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_27, (RuntimeArray *)(RuntimeArray *)L_28, 0);
|
|
RuntimeObject * L_29 = __this->get_lockCookie_11();
|
|
V_6 = L_29;
|
|
V_7 = (bool)0;
|
|
}
|
|
|
|
IL_00ac:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
RuntimeObject * L_30 = V_6;
|
|
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_30, (bool*)(&V_7), /*hidden argument*/NULL);
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_31 = V_2;
|
|
__this->set_attributes_4(L_31);
|
|
__this->set_attributesFiltered_6((bool)1);
|
|
__this->set_attributesFilled_7((bool)1);
|
|
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
|
|
int32_t L_32 = TypeDescriptor_get_MetadataVersion_m70C215D1B15DCBD67B58127EB0E6D7E6F5D020DC_inline(/*hidden argument*/NULL);
|
|
__this->set_metadataVersion_8(L_32);
|
|
IL2CPP_LEAVE(0xE3, FINALLY_00d7);
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__last_unhandled_exception = (Exception_t *)e.ex;
|
|
goto FINALLY_00d7;
|
|
}
|
|
|
|
FINALLY_00d7:
|
|
{ // begin finally (depth: 1)
|
|
{
|
|
bool L_33 = V_7;
|
|
if (!L_33)
|
|
{
|
|
goto IL_00e2;
|
|
}
|
|
}
|
|
|
|
IL_00db:
|
|
{
|
|
RuntimeObject * L_34 = V_6;
|
|
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_34, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_00e2:
|
|
{
|
|
IL2CPP_END_FINALLY(215)
|
|
}
|
|
} // end finally (depth: 1)
|
|
IL2CPP_CLEANUP(215)
|
|
{
|
|
IL2CPP_JUMP_TBL(0xE3, IL_00e3)
|
|
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
|
|
}
|
|
|
|
IL_00e3:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Reflection.MethodInfo System.ComponentModel.MemberDescriptor::FindMethod(System.Type,System.String,System.Type[],System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * MemberDescriptor_FindMethod_m4B26329E481C2681B235A311E2E7D022DC891773 (Type_t * ___componentClass0, String_t* ___name1, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___args2, Type_t * ___returnType3, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Type_t * L_0 = ___componentClass0;
|
|
String_t* L_1 = ___name1;
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = ___args2;
|
|
Type_t * L_3 = ___returnType3;
|
|
MethodInfo_t * L_4 = MemberDescriptor_FindMethod_m55C2AA54F198A970DAD868DE103F41602CC4ABEF(L_0, L_1, L_2, L_3, (bool)1, /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Reflection.MethodInfo System.ComponentModel.MemberDescriptor::FindMethod(System.Type,System.String,System.Type[],System.Type,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * MemberDescriptor_FindMethod_m55C2AA54F198A970DAD868DE103F41602CC4ABEF (Type_t * ___componentClass0, String_t* ___name1, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___args2, Type_t * ___returnType3, bool ___publicOnly4, const RuntimeMethod* method)
|
|
{
|
|
MethodInfo_t * V_0 = NULL;
|
|
{
|
|
V_0 = (MethodInfo_t *)NULL;
|
|
bool L_0 = ___publicOnly4;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_1 = ___componentClass0;
|
|
String_t* L_2 = ___name1;
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_3 = ___args2;
|
|
NullCheck(L_1);
|
|
MethodInfo_t * L_4 = Type_GetMethod_m54E1EF62AFF44AA621E074D123C5C0B3E73A7DD5(L_1, L_2, L_3, /*hidden argument*/NULL);
|
|
V_0 = L_4;
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
Type_t * L_5 = ___componentClass0;
|
|
String_t* L_6 = ___name1;
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_7 = ___args2;
|
|
NullCheck(L_5);
|
|
MethodInfo_t * L_8 = Type_GetMethod_m694F07057F23808980BF6B1637544F34852759FA(L_5, L_6, ((int32_t)60), (Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *)NULL, L_7, (ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)(ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)NULL, /*hidden argument*/NULL);
|
|
V_0 = L_8;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
MethodInfo_t * L_9 = V_0;
|
|
bool L_10 = MethodInfo_op_Inequality_m76AC38C8B8FB8F28C21E6F9A3F0268FF8E4CC237(L_9, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_10)
|
|
{
|
|
goto IL_0037;
|
|
}
|
|
}
|
|
{
|
|
MethodInfo_t * L_11 = V_0;
|
|
NullCheck(L_11);
|
|
Type_t * L_12 = VirtFuncInvoker0< Type_t * >::Invoke(38 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_11);
|
|
Type_t * L_13 = ___returnType3;
|
|
NullCheck(L_12);
|
|
bool L_14 = VirtFuncInvoker1< bool, Type_t * >::Invoke(140 /* System.Boolean System.Type::IsEquivalentTo(System.Type) */, L_12, L_13);
|
|
if (L_14)
|
|
{
|
|
goto IL_0037;
|
|
}
|
|
}
|
|
{
|
|
V_0 = (MethodInfo_t *)NULL;
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
MethodInfo_t * L_15 = V_0;
|
|
return L_15;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.MemberDescriptor::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MemberDescriptor_GetHashCode_m7E6C8BE058C4A813FE927FC0FC2D97981A3B1CE2 (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->get_nameHash_2();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.MemberDescriptor::GetInvocationTarget(System.Type,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MemberDescriptor_GetInvocationTarget_m18F13C7801A10F9E0E1649E7356C49F2797BE543 (MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * __this, Type_t * ___type0, RuntimeObject * ___instance1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MemberDescriptor_GetInvocationTarget_m18F13C7801A10F9E0E1649E7356C49F2797BE543_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Type_t * L_0 = ___type0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, MemberDescriptor_GetInvocationTarget_m18F13C7801A10F9E0E1649E7356C49F2797BE543_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
RuntimeObject * L_3 = ___instance1;
|
|
if (L_3)
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, _stringLiteralC3BEC6BCBC9B9F04E60FCB1D9C9C1A37F3E12E93, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, MemberDescriptor_GetInvocationTarget_m18F13C7801A10F9E0E1649E7356C49F2797BE543_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
Type_t * L_5 = ___type0;
|
|
RuntimeObject * L_6 = ___instance1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
|
|
RuntimeObject * L_7 = TypeDescriptor_GetAssociation_m45465AA1409C932535F021345F71CFF99CBC4D98(L_5, L_6, /*hidden argument*/NULL);
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.ComponentModel.ISite System.ComponentModel.MemberDescriptor::GetSite(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MemberDescriptor_GetSite_mCB20B3C6E8E9E4018655CB861FBC408F4468FFD6 (RuntimeObject * ___component0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MemberDescriptor_GetSite_mCB20B3C6E8E9E4018655CB861FBC408F4468FFD6_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject * L_0 = ___component0;
|
|
if (((RuntimeObject*)IsInst((RuntimeObject*)L_0, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
return (RuntimeObject*)NULL;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
RuntimeObject * L_1 = ___component0;
|
|
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var)));
|
|
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var)));
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.MemberDescriptor::GetInvokee(System.Type,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MemberDescriptor_GetInvokee_m79AB7BD9D5CAE598106C4D614023DBA589C39C32 (Type_t * ___componentClass0, RuntimeObject * ___component1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MemberDescriptor_GetInvokee_m79AB7BD9D5CAE598106C4D614023DBA589C39C32_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Type_t * L_0 = ___componentClass0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralC9937828CE00719332E80BEA0A26B7DDD25E1012, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, MemberDescriptor_GetInvokee_m79AB7BD9D5CAE598106C4D614023DBA589C39C32_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
RuntimeObject * L_3 = ___component1;
|
|
if (L_3)
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, _stringLiteral335C4C1E2F05B5297A56769D8DE75AD9C4874CD3, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, MemberDescriptor_GetInvokee_m79AB7BD9D5CAE598106C4D614023DBA589C39C32_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
Type_t * L_5 = ___componentClass0;
|
|
RuntimeObject * L_6 = ___component1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
|
|
RuntimeObject * L_7 = TypeDescriptor_GetAssociation_m45465AA1409C932535F021345F71CFF99CBC4D98(L_5, L_6, /*hidden argument*/NULL);
|
|
return L_7;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.MergablePropertyAttribute::.ctor(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MergablePropertyAttribute__ctor_m0C026F24E053A86D73321A45F97FDE53E2127D04 (MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 * __this, bool ___allowMerge0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
bool L_0 = ___allowMerge0;
|
|
__this->set_allowMerge_3(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MergablePropertyAttribute::get_AllowMerge()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MergablePropertyAttribute_get_AllowMerge_m9E247DA31A96661FFC6A2D65AD98A2FC2E3EF9F1 (MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->get_allowMerge_3();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MergablePropertyAttribute::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MergablePropertyAttribute_Equals_m0E8667E4F66C176A6C92BF6330515E08DBD29FA4 (MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MergablePropertyAttribute_Equals_m0E8667E4F66C176A6C92BF6330515E08DBD29FA4_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 * V_0 = NULL;
|
|
{
|
|
RuntimeObject * L_0 = ___obj0;
|
|
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 *)__this))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
RuntimeObject * L_1 = ___obj0;
|
|
V_0 = ((MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 *)IsInstSealed((RuntimeObject*)L_1, MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909_il2cpp_TypeInfo_var));
|
|
MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 * L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 * L_3 = V_0;
|
|
NullCheck(L_3);
|
|
bool L_4 = MergablePropertyAttribute_get_AllowMerge_m9E247DA31A96661FFC6A2D65AD98A2FC2E3EF9F1_inline(L_3, /*hidden argument*/NULL);
|
|
bool L_5 = __this->get_allowMerge_3();
|
|
return (bool)((((int32_t)L_4) == ((int32_t)L_5))? 1 : 0);
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.MergablePropertyAttribute::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MergablePropertyAttribute_GetHashCode_m58C19FEF2F8960219B92F0F0FDB31BC03060A966 (MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B(__this, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MergablePropertyAttribute::IsDefaultAttribute()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MergablePropertyAttribute_IsDefaultAttribute_mECD4D73534A24B8600A6E9F6CB4B0CB6DCEF24BE (MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MergablePropertyAttribute_IsDefaultAttribute_mECD4D73534A24B8600A6E9F6CB4B0CB6DCEF24BE_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909_il2cpp_TypeInfo_var);
|
|
MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 * L_0 = ((MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909_StaticFields*)il2cpp_codegen_static_fields_for(MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909_il2cpp_TypeInfo_var))->get_Default_2();
|
|
bool L_1 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, __this, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MergablePropertyAttribute::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MergablePropertyAttribute__cctor_mA927726347FDB5EFDB109998BF0B30BFB3585710 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MergablePropertyAttribute__cctor_mA927726347FDB5EFDB109998BF0B30BFB3585710_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 * L_0 = (MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 *)il2cpp_codegen_object_new(MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909_il2cpp_TypeInfo_var);
|
|
MergablePropertyAttribute__ctor_m0C026F24E053A86D73321A45F97FDE53E2127D04(L_0, (bool)1, /*hidden argument*/NULL);
|
|
((MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909_StaticFields*)il2cpp_codegen_static_fields_for(MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909_il2cpp_TypeInfo_var))->set_Yes_0(L_0);
|
|
MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 * L_1 = (MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 *)il2cpp_codegen_object_new(MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909_il2cpp_TypeInfo_var);
|
|
MergablePropertyAttribute__ctor_m0C026F24E053A86D73321A45F97FDE53E2127D04(L_1, (bool)0, /*hidden argument*/NULL);
|
|
((MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909_StaticFields*)il2cpp_codegen_static_fields_for(MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909_il2cpp_TypeInfo_var))->set_No_1(L_1);
|
|
MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 * L_2 = ((MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909_StaticFields*)il2cpp_codegen_static_fields_for(MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909_il2cpp_TypeInfo_var))->get_Yes_0();
|
|
((MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909_StaticFields*)il2cpp_codegen_static_fields_for(MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909_il2cpp_TypeInfo_var))->set_Default_2(L_2);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Object System.ComponentModel.MultilineStringConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MultilineStringConverter_ConvertTo_m64E4CD7221F7DFFF883B0BAE4399A8D637DD5799 (MultilineStringConverter_t339792E6A737C1E96D03DA7172324B8EAEBA85A1 * __this, RuntimeObject* ___context0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, RuntimeObject * ___value2, Type_t * ___destinationType3, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MultilineStringConverter_ConvertTo_m64E4CD7221F7DFFF883B0BAE4399A8D637DD5799_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Type_t * L_0 = ___destinationType3;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralFF3BA695D3EFEA937A1B1571C4E6461A8DACB151, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, MultilineStringConverter_ConvertTo_m64E4CD7221F7DFFF883B0BAE4399A8D637DD5799_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
Type_t * L_3 = ___destinationType3;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_4 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_5 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_4, /*hidden argument*/NULL);
|
|
bool L_6 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_3, L_5, /*hidden argument*/NULL);
|
|
if (!L_6)
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_7 = ___value2;
|
|
if (!((String_t*)IsInstSealed((RuntimeObject*)L_7, String_t_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_8 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteral2E1B4C3FF8D191EF89F554BB34FE7DB2C87FAAC7, /*hidden argument*/NULL);
|
|
return L_8;
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
RuntimeObject* L_9 = ___context0;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_10 = ___culture1;
|
|
RuntimeObject * L_11 = ___value2;
|
|
Type_t * L_12 = ___destinationType3;
|
|
RuntimeObject * L_13 = TypeConverter_ConvertTo_mFC7AA7F0A382607E75CCE820A705B5965D099AAC(__this, L_9, L_10, L_11, L_12, /*hidden argument*/NULL);
|
|
return L_13;
|
|
}
|
|
}
|
|
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.MultilineStringConverter::GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * MultilineStringConverter_GetProperties_mCBECBCBC3414C6451A5B26206C4D1B848C409358 (MultilineStringConverter_t339792E6A737C1E96D03DA7172324B8EAEBA85A1 * __this, RuntimeObject* ___context0, RuntimeObject * ___value1, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes2, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *)NULL;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.MultilineStringConverter::GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MultilineStringConverter_GetPropertiesSupported_mAD92FF396F8731FE1C94DBEF89736D7BE2252752 (MultilineStringConverter_t339792E6A737C1E96D03DA7172324B8EAEBA85A1 * __this, RuntimeObject* ___context0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.MultilineStringConverter::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MultilineStringConverter__ctor_m4A6E3882CD02215AF2B52B5E98B41F67E48B72D8 (MultilineStringConverter_t339792E6A737C1E96D03DA7172324B8EAEBA85A1 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (MultilineStringConverter__ctor_m4A6E3882CD02215AF2B52B5E98B41F67E48B72D8_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_il2cpp_TypeInfo_var);
|
|
TypeConverter__ctor_m7F8A006E775CCB83A8ACB042B296E48B0AE501CD(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.NestedContainer::.ctor(System.ComponentModel.IComponent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NestedContainer__ctor_m888BC8BCC8E12B1E8F6E61BB9976B68A49530284 (NestedContainer_t08F11932945A6F531D1338CC5A05BAD8D99F8AE9 * __this, RuntimeObject* ___owner0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (NestedContainer__ctor_m888BC8BCC8E12B1E8F6E61BB9976B68A49530284_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Container__ctor_mD7A10DE182D247D0A6035B14AE9D85884D3A5D89(__this, /*hidden argument*/NULL);
|
|
RuntimeObject* L_0 = ___owner0;
|
|
if (L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral579233B2C479241523CBA5E3AF55D0F50F2D6414, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NestedContainer__ctor_m888BC8BCC8E12B1E8F6E61BB9976B68A49530284_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
RuntimeObject* L_2 = ___owner0;
|
|
__this->set__owner_6(L_2);
|
|
RuntimeObject* L_3 = __this->get__owner_6();
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_4 = (EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C *)il2cpp_codegen_object_new(EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C_il2cpp_TypeInfo_var);
|
|
EventHandler__ctor_m497A2BCD46DB769EAFFDE919303FCAE226906B6F(L_4, __this, (intptr_t)((intptr_t)NestedContainer_OnOwnerDisposed_mB5AF0D44A36003A28E275AD3E94247C9A8B62289_RuntimeMethod_var), /*hidden argument*/NULL);
|
|
NullCheck(L_3);
|
|
InterfaceActionInvoker1< EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * >::Invoke(2 /* System.Void System.ComponentModel.IComponent::add_Disposed(System.EventHandler) */, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var, L_3, L_4);
|
|
return;
|
|
}
|
|
}
|
|
// System.ComponentModel.IComponent System.ComponentModel.NestedContainer::get_Owner()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* NestedContainer_get_Owner_mCAE82359E5FAC819D35995F5C15F42BE3C08F0C9 (NestedContainer_t08F11932945A6F531D1338CC5A05BAD8D99F8AE9 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->get__owner_6();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.NestedContainer::get_OwnerName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NestedContainer_get_OwnerName_m0A01269EAD2C24E23FFA0E844887F68D63CE8021 (NestedContainer_t08F11932945A6F531D1338CC5A05BAD8D99F8AE9 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (NestedContainer_get_OwnerName_m0A01269EAD2C24E23FFA0E844887F68D63CE8021_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
{
|
|
V_0 = (String_t*)NULL;
|
|
RuntimeObject* L_0 = __this->get__owner_6();
|
|
if (!L_0)
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_1 = __this->get__owner_6();
|
|
NullCheck(L_1);
|
|
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var, L_1);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = __this->get__owner_6();
|
|
NullCheck(L_3);
|
|
RuntimeObject* L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var, L_3);
|
|
V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_4, INestedSite_t9A84D4AF79B470FD45AF5F23123DAB2C923DD6A3_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_5 = V_1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_6 = V_1;
|
|
NullCheck(L_6);
|
|
String_t* L_7 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String System.ComponentModel.INestedSite::get_FullName() */, INestedSite_t9A84D4AF79B470FD45AF5F23123DAB2C923DD6A3_il2cpp_TypeInfo_var, L_6);
|
|
V_0 = L_7;
|
|
goto IL_0045;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
RuntimeObject* L_8 = __this->get__owner_6();
|
|
NullCheck(L_8);
|
|
RuntimeObject* L_9 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var, L_8);
|
|
NullCheck(L_9);
|
|
String_t* L_10 = InterfaceFuncInvoker0< String_t* >::Invoke(3 /* System.String System.ComponentModel.ISite::get_Name() */, ISite_t6804B48BC23ABB5F4141903F878589BCEF6097A2_il2cpp_TypeInfo_var, L_9);
|
|
V_0 = L_10;
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
String_t* L_11 = V_0;
|
|
return L_11;
|
|
}
|
|
}
|
|
// System.ComponentModel.ISite System.ComponentModel.NestedContainer::CreateSite(System.ComponentModel.IComponent,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* NestedContainer_CreateSite_m7CDB5A2D618B5F3732EC12FF1ABBD8B807277E8B (NestedContainer_t08F11932945A6F531D1338CC5A05BAD8D99F8AE9 * __this, RuntimeObject* ___component0, String_t* ___name1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (NestedContainer_CreateSite_m7CDB5A2D618B5F3732EC12FF1ABBD8B807277E8B_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = ___component0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral335C4C1E2F05B5297A56769D8DE75AD9C4874CD3, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NestedContainer_CreateSite_m7CDB5A2D618B5F3732EC12FF1ABBD8B807277E8B_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
RuntimeObject* L_2 = ___component0;
|
|
String_t* L_3 = ___name1;
|
|
Site_t416D1B752B924BEC6C03A474D7DC852F255B3E5A * L_4 = (Site_t416D1B752B924BEC6C03A474D7DC852F255B3E5A *)il2cpp_codegen_object_new(Site_t416D1B752B924BEC6C03A474D7DC852F255B3E5A_il2cpp_TypeInfo_var);
|
|
Site__ctor_mDAA679D31EE0B838B5FF36F75BFCA767CB96DC15(L_4, L_2, __this, L_3, /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.NestedContainer::Dispose(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NestedContainer_Dispose_m661E234FD90A46BFE6305D6730A489312E93553A (NestedContainer_t08F11932945A6F531D1338CC5A05BAD8D99F8AE9 * __this, bool ___disposing0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (NestedContainer_Dispose_m661E234FD90A46BFE6305D6730A489312E93553A_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
bool L_0 = ___disposing0;
|
|
if (!L_0)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_1 = __this->get__owner_6();
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_2 = (EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C *)il2cpp_codegen_object_new(EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C_il2cpp_TypeInfo_var);
|
|
EventHandler__ctor_m497A2BCD46DB769EAFFDE919303FCAE226906B6F(L_2, __this, (intptr_t)((intptr_t)NestedContainer_OnOwnerDisposed_mB5AF0D44A36003A28E275AD3E94247C9A8B62289_RuntimeMethod_var), /*hidden argument*/NULL);
|
|
NullCheck(L_1);
|
|
InterfaceActionInvoker1< EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * >::Invoke(3 /* System.Void System.ComponentModel.IComponent::remove_Disposed(System.EventHandler) */, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var, L_1, L_2);
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
bool L_3 = ___disposing0;
|
|
Container_Dispose_m8E2E86E4455B9EE167759CEB790C1526495B4966(__this, L_3, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.NestedContainer::GetService(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * NestedContainer_GetService_m997226CE4565DF20BC7AACA0B6768D7642ADA6EC (NestedContainer_t08F11932945A6F531D1338CC5A05BAD8D99F8AE9 * __this, Type_t * ___service0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (NestedContainer_GetService_m997226CE4565DF20BC7AACA0B6768D7642ADA6EC_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Type_t * L_0 = ___service0;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (INestedContainer_t894318C055DD1CA0F6F4DC3A056EDA3BC2FE075B_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL);
|
|
bool L_3 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, L_2, /*hidden argument*/NULL);
|
|
if (!L_3)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
return __this;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
Type_t * L_4 = ___service0;
|
|
RuntimeObject * L_5 = Container_GetService_mC27DC293E0E9B344F2B7F861D5255191212F376E(__this, L_4, /*hidden argument*/NULL);
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.NestedContainer::OnOwnerDisposed(System.Object,System.EventArgs)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NestedContainer_OnOwnerDisposed_mB5AF0D44A36003A28E275AD3E94247C9A8B62289 (NestedContainer_t08F11932945A6F531D1338CC5A05BAD8D99F8AE9 * __this, RuntimeObject * ___sender0, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * ___e1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Container_Dispose_m5D329D52392588221C5B2050B3FCCCFD1A81DB31(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.NestedContainer_Site::.ctor(System.ComponentModel.IComponent,System.ComponentModel.NestedContainer,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Site__ctor_mDAA679D31EE0B838B5FF36F75BFCA767CB96DC15 (Site_t416D1B752B924BEC6C03A474D7DC852F255B3E5A * __this, RuntimeObject* ___component0, NestedContainer_t08F11932945A6F531D1338CC5A05BAD8D99F8AE9 * ___container1, String_t* ___name2, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
RuntimeObject* L_0 = ___component0;
|
|
__this->set_component_0(L_0);
|
|
NestedContainer_t08F11932945A6F531D1338CC5A05BAD8D99F8AE9 * L_1 = ___container1;
|
|
__this->set_container_1(L_1);
|
|
String_t* L_2 = ___name2;
|
|
__this->set_name_2(L_2);
|
|
return;
|
|
}
|
|
}
|
|
// System.ComponentModel.IComponent System.ComponentModel.NestedContainer_Site::get_Component()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Site_get_Component_m7FE711FDC0DB5198F8D20C04AC663BC76901FA37 (Site_t416D1B752B924BEC6C03A474D7DC852F255B3E5A * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->get_component_0();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.ComponentModel.IContainer System.ComponentModel.NestedContainer_Site::get_Container()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Site_get_Container_m63EFCB12735BBB444C337E01A4D04FC3B3FAD042 (Site_t416D1B752B924BEC6C03A474D7DC852F255B3E5A * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
NestedContainer_t08F11932945A6F531D1338CC5A05BAD8D99F8AE9 * L_0 = __this->get_container_1();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.NestedContainer_Site::GetService(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Site_GetService_mDFE2374B8394CEA41428F491712439BB1E3D0E4B (Site_t416D1B752B924BEC6C03A474D7DC852F255B3E5A * __this, Type_t * ___service0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Site_GetService_mDFE2374B8394CEA41428F491712439BB1E3D0E4B_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Type_t * L_0 = ___service0;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (ISite_t6804B48BC23ABB5F4141903F878589BCEF6097A2_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL);
|
|
bool L_3 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, L_2, /*hidden argument*/NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
NestedContainer_t08F11932945A6F531D1338CC5A05BAD8D99F8AE9 * L_4 = __this->get_container_1();
|
|
Type_t * L_5 = ___service0;
|
|
NullCheck(L_4);
|
|
RuntimeObject * L_6 = VirtFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(13 /* System.Object System.ComponentModel.Container::GetService(System.Type) */, L_4, L_5);
|
|
return L_6;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
return __this;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.NestedContainer_Site::get_DesignMode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Site_get_DesignMode_m289AFF7B5EB56D725AF45E42184974D373ADBF56 (Site_t416D1B752B924BEC6C03A474D7DC852F255B3E5A * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Site_get_DesignMode_m289AFF7B5EB56D725AF45E42184974D373ADBF56_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
NestedContainer_t08F11932945A6F531D1338CC5A05BAD8D99F8AE9 * L_0 = __this->get_container_1();
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1 = NestedContainer_get_Owner_mCAE82359E5FAC819D35995F5C15F42BE3C08F0C9_inline(L_0, /*hidden argument*/NULL);
|
|
V_0 = L_1;
|
|
RuntimeObject* L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
NullCheck(L_3);
|
|
RuntimeObject* L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var, L_3);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_5 = V_0;
|
|
NullCheck(L_5);
|
|
RuntimeObject* L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.ComponentModel.ISite System.ComponentModel.IComponent::get_Site() */, IComponent_t2227ADCB5304EAFD55C447E3EE8453437941B4C6_il2cpp_TypeInfo_var, L_5);
|
|
NullCheck(L_6);
|
|
bool L_7 = InterfaceFuncInvoker0< bool >::Invoke(2 /* System.Boolean System.ComponentModel.ISite::get_DesignMode() */, ISite_t6804B48BC23ABB5F4141903F878589BCEF6097A2_il2cpp_TypeInfo_var, L_6);
|
|
return L_7;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.NestedContainer_Site::get_FullName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Site_get_FullName_m13D39B257CDEBC4519F72636E311E8E6439DBC6E (Site_t416D1B752B924BEC6C03A474D7DC852F255B3E5A * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (Site_get_FullName_m13D39B257CDEBC4519F72636E311E8E6439DBC6E_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
String_t* V_1 = NULL;
|
|
{
|
|
String_t* L_0 = __this->get_name_2();
|
|
if (!L_0)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
NestedContainer_t08F11932945A6F531D1338CC5A05BAD8D99F8AE9 * L_1 = __this->get_container_1();
|
|
NullCheck(L_1);
|
|
String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.ComponentModel.NestedContainer::get_OwnerName() */, L_1);
|
|
V_0 = L_2;
|
|
String_t* L_3 = __this->get_name_2();
|
|
V_1 = L_3;
|
|
String_t* L_4 = V_0;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_5 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
|
|
String_t* L_6 = V_0;
|
|
String_t* L_7 = V_1;
|
|
String_t* L_8 = String_Format_m453C2840536781B718FF4D0F5C7EEC8E5481C435(L_5, _stringLiteral6621FDDBEA1FF968B3027E17236C09DAC3BE1064, L_6, L_7, /*hidden argument*/NULL);
|
|
V_1 = L_8;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
String_t* L_9 = V_1;
|
|
return L_9;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
String_t* L_10 = __this->get_name_2();
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.NestedContainer_Site::get_Name()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Site_get_Name_m7A5F45D4E71D381A9E5113AB20B5E11C39799F67 (Site_t416D1B752B924BEC6C03A474D7DC852F255B3E5A * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_name_2();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.NestedContainer_Site::set_Name(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Site_set_Name_m52981A9AFBFFA38A2A81C1A5DF69703F5CC00E67 (Site_t416D1B752B924BEC6C03A474D7DC852F255B3E5A * __this, String_t* ___value0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___value0;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_1 = __this->get_name_2();
|
|
if (!L_1)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = ___value0;
|
|
String_t* L_3 = __this->get_name_2();
|
|
NullCheck(L_2);
|
|
bool L_4 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_2, L_3, /*hidden argument*/NULL);
|
|
if (L_4)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
NestedContainer_t08F11932945A6F531D1338CC5A05BAD8D99F8AE9 * L_5 = __this->get_container_1();
|
|
RuntimeObject* L_6 = __this->get_component_0();
|
|
String_t* L_7 = ___value0;
|
|
NullCheck(L_5);
|
|
VirtActionInvoker2< RuntimeObject*, String_t* >::Invoke(16 /* System.Void System.ComponentModel.Container::ValidateName(System.ComponentModel.IComponent,System.String) */, L_5, L_6, L_7);
|
|
String_t* L_8 = ___value0;
|
|
__this->set_name_2(L_8);
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.NotifyParentPropertyAttribute::.ctor(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotifyParentPropertyAttribute__ctor_m131492A1D6D8E6F0C1DC76EC141AD10D10D854D7 (NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68 * __this, bool ___notifyParent0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
bool L_0 = ___notifyParent0;
|
|
__this->set_notifyParent_3(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.NotifyParentPropertyAttribute::get_NotifyParent()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NotifyParentPropertyAttribute_get_NotifyParent_mCAC54ACDD983201C0B33DD4028F3686E74AC2D0D (NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->get_notifyParent_3();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.NotifyParentPropertyAttribute::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NotifyParentPropertyAttribute_Equals_m655AFCDB294A675C2CF84F9C4A97268C9B11D7C2 (NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (NotifyParentPropertyAttribute_Equals_m655AFCDB294A675C2CF84F9C4A97268C9B11D7C2_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject * L_0 = ___obj0;
|
|
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68 *)__this))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
RuntimeObject * L_1 = ___obj0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_2 = ___obj0;
|
|
if (!((NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68 *)IsInstSealed((RuntimeObject*)L_2, NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_3 = ___obj0;
|
|
NullCheck(((NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68 *)CastclassSealed((RuntimeObject*)L_3, NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68_il2cpp_TypeInfo_var)));
|
|
bool L_4 = NotifyParentPropertyAttribute_get_NotifyParent_mCAC54ACDD983201C0B33DD4028F3686E74AC2D0D_inline(((NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68 *)CastclassSealed((RuntimeObject*)L_3, NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
|
|
bool L_5 = __this->get_notifyParent_3();
|
|
return (bool)((((int32_t)L_4) == ((int32_t)L_5))? 1 : 0);
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.NotifyParentPropertyAttribute::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NotifyParentPropertyAttribute_GetHashCode_mFD065A676EA52DE43BF076B4FF35545ACD3F83D0 (NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B(__this, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.NotifyParentPropertyAttribute::IsDefaultAttribute()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NotifyParentPropertyAttribute_IsDefaultAttribute_m2D15C7AD325F09068FBB710C80299DE2DCB7CD21 (NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (NotifyParentPropertyAttribute_IsDefaultAttribute_m2D15C7AD325F09068FBB710C80299DE2DCB7CD21_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68_il2cpp_TypeInfo_var);
|
|
NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68 * L_0 = ((NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68_StaticFields*)il2cpp_codegen_static_fields_for(NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68_il2cpp_TypeInfo_var))->get_Default_2();
|
|
bool L_1 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, __this, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.NotifyParentPropertyAttribute::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotifyParentPropertyAttribute__cctor_m14AB628A125F7E8973497199B6DB493B909849DD (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (NotifyParentPropertyAttribute__cctor_m14AB628A125F7E8973497199B6DB493B909849DD_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68 * L_0 = (NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68 *)il2cpp_codegen_object_new(NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68_il2cpp_TypeInfo_var);
|
|
NotifyParentPropertyAttribute__ctor_m131492A1D6D8E6F0C1DC76EC141AD10D10D854D7(L_0, (bool)1, /*hidden argument*/NULL);
|
|
((NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68_StaticFields*)il2cpp_codegen_static_fields_for(NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68_il2cpp_TypeInfo_var))->set_Yes_0(L_0);
|
|
NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68 * L_1 = (NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68 *)il2cpp_codegen_object_new(NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68_il2cpp_TypeInfo_var);
|
|
NotifyParentPropertyAttribute__ctor_m131492A1D6D8E6F0C1DC76EC141AD10D10D854D7(L_1, (bool)0, /*hidden argument*/NULL);
|
|
((NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68_StaticFields*)il2cpp_codegen_static_fields_for(NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68_il2cpp_TypeInfo_var))->set_No_1(L_1);
|
|
NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68 * L_2 = ((NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68_StaticFields*)il2cpp_codegen_static_fields_for(NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68_il2cpp_TypeInfo_var))->get_No_1();
|
|
((NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68_StaticFields*)il2cpp_codegen_static_fields_for(NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68_il2cpp_TypeInfo_var))->set_Default_2(L_2);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.NullableConverter::.ctor(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullableConverter__ctor_m508F1DA74FE1B37ECA5BBA5B0E3A623480E4C564 (NullableConverter_t46A6256BAFD4B0C501724527189C888B36E48E71 * __this, Type_t * ___type0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (NullableConverter__ctor_m508F1DA74FE1B37ECA5BBA5B0E3A623480E4C564_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_il2cpp_TypeInfo_var);
|
|
TypeConverter__ctor_m7F8A006E775CCB83A8ACB042B296E48B0AE501CD(__this, /*hidden argument*/NULL);
|
|
Type_t * L_0 = ___type0;
|
|
__this->set_nullableType_2(L_0);
|
|
Type_t * L_1 = ___type0;
|
|
Type_t * L_2 = Nullable_GetUnderlyingType_m038B195642BF738026196B1629997705B6317D04(L_1, /*hidden argument*/NULL);
|
|
__this->set_simpleType_3(L_2);
|
|
Type_t * L_3 = __this->get_simpleType_3();
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_4 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_3, (Type_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_5 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteralBD411C466E60E7EFDA3B59F4C705D4F22185FC74, /*hidden argument*/NULL);
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_6, L_5, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NullableConverter__ctor_m508F1DA74FE1B37ECA5BBA5B0E3A623480E4C564_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
Type_t * L_7 = __this->get_simpleType_3();
|
|
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_8 = TypeDescriptor_GetConverter_m30E075F6ED53FD85B7C1F7F44E58BA20645A68BA(L_7, /*hidden argument*/NULL);
|
|
__this->set_simpleTypeConverter_4(L_8);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.NullableConverter::CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NullableConverter_CanConvertFrom_m248A954CEE87B4098FADA66CF035910E75C22DB9 (NullableConverter_t46A6256BAFD4B0C501724527189C888B36E48E71 * __this, RuntimeObject* ___context0, Type_t * ___sourceType1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (NullableConverter_CanConvertFrom_m248A954CEE87B4098FADA66CF035910E75C22DB9_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Type_t * L_0 = ___sourceType1;
|
|
Type_t * L_1 = __this->get_simpleType_3();
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_2 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, L_1, /*hidden argument*/NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_3 = __this->get_simpleTypeConverter_4();
|
|
if (!L_3)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_4 = __this->get_simpleTypeConverter_4();
|
|
RuntimeObject* L_5 = ___context0;
|
|
Type_t * L_6 = ___sourceType1;
|
|
NullCheck(L_4);
|
|
bool L_7 = VirtFuncInvoker2< bool, RuntimeObject*, Type_t * >::Invoke(4 /* System.Boolean System.ComponentModel.TypeConverter::CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type) */, L_4, L_5, L_6);
|
|
return L_7;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
RuntimeObject* L_8 = ___context0;
|
|
Type_t * L_9 = ___sourceType1;
|
|
bool L_10 = TypeConverter_CanConvertFrom_m8E1F9E41B7DEE6A032EAC70130ADC6356C3F227D(__this, L_8, L_9, /*hidden argument*/NULL);
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.NullableConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * NullableConverter_ConvertFrom_mB26A50D9B33247B7B6F52BF3C2091DB587296A29 (NullableConverter_t46A6256BAFD4B0C501724527189C888B36E48E71 * __this, RuntimeObject* ___context0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, RuntimeObject * ___value2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (NullableConverter_ConvertFrom_mB26A50D9B33247B7B6F52BF3C2091DB587296A29_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject * L_0 = ___value2;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_1 = ___value2;
|
|
NullCheck(L_1);
|
|
Type_t * L_2 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_1, /*hidden argument*/NULL);
|
|
Type_t * L_3 = __this->get_simpleType_3();
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_4 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_2, L_3, /*hidden argument*/NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
RuntimeObject * L_5 = ___value2;
|
|
return L_5;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
RuntimeObject * L_6 = ___value2;
|
|
if (!((String_t*)IsInstSealed((RuntimeObject*)L_6, String_t_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_7 = ___value2;
|
|
bool L_8 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(((String_t*)IsInstSealed((RuntimeObject*)L_7, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
|
|
if (!L_8)
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_9 = __this->get_simpleTypeConverter_4();
|
|
if (!L_9)
|
|
{
|
|
goto IL_0046;
|
|
}
|
|
}
|
|
{
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_10 = __this->get_simpleTypeConverter_4();
|
|
RuntimeObject* L_11 = ___context0;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_12 = ___culture1;
|
|
RuntimeObject * L_13 = ___value2;
|
|
NullCheck(L_10);
|
|
RuntimeObject * L_14 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject*, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F *, RuntimeObject * >::Invoke(6 /* System.Object System.ComponentModel.TypeConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object) */, L_10, L_11, L_12, L_13);
|
|
return L_14;
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
RuntimeObject* L_15 = ___context0;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_16 = ___culture1;
|
|
RuntimeObject * L_17 = ___value2;
|
|
RuntimeObject * L_18 = TypeConverter_ConvertFrom_mD5AE49E422520F6E07B3C0D6202788E49B4698A3(__this, L_15, L_16, L_17, /*hidden argument*/NULL);
|
|
return L_18;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.NullableConverter::CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NullableConverter_CanConvertTo_m971F73488C57414C8463065CB0CB0285D642519A (NullableConverter_t46A6256BAFD4B0C501724527189C888B36E48E71 * __this, RuntimeObject* ___context0, Type_t * ___destinationType1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (NullableConverter_CanConvertTo_m971F73488C57414C8463065CB0CB0285D642519A_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Type_t * L_0 = ___destinationType1;
|
|
Type_t * L_1 = __this->get_simpleType_3();
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_2 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, L_1, /*hidden argument*/NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
Type_t * L_3 = ___destinationType1;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_4 = { reinterpret_cast<intptr_t> (InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_5 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_4, /*hidden argument*/NULL);
|
|
bool L_6 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_3, L_5, /*hidden argument*/NULL);
|
|
if (!L_6)
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_7 = __this->get_simpleTypeConverter_4();
|
|
if (!L_7)
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_8 = __this->get_simpleTypeConverter_4();
|
|
RuntimeObject* L_9 = ___context0;
|
|
Type_t * L_10 = ___destinationType1;
|
|
NullCheck(L_8);
|
|
bool L_11 = VirtFuncInvoker2< bool, RuntimeObject*, Type_t * >::Invoke(5 /* System.Boolean System.ComponentModel.TypeConverter::CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type) */, L_8, L_9, L_10);
|
|
return L_11;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
RuntimeObject* L_12 = ___context0;
|
|
Type_t * L_13 = ___destinationType1;
|
|
bool L_14 = TypeConverter_CanConvertTo_m1CD3397D9E5717DE72A13B28C0A75D997A9F337D(__this, L_12, L_13, /*hidden argument*/NULL);
|
|
return L_14;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.NullableConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * NullableConverter_ConvertTo_mFE5CF810C6BE39B1A39E51B28875E8FDF0DAE363 (NullableConverter_t46A6256BAFD4B0C501724527189C888B36E48E71 * __this, RuntimeObject* ___context0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, RuntimeObject * ___value2, Type_t * ___destinationType3, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (NullableConverter_ConvertTo_mFE5CF810C6BE39B1A39E51B28875E8FDF0DAE363_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Type_t * L_0 = ___destinationType3;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralFF3BA695D3EFEA937A1B1571C4E6461A8DACB151, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NullableConverter_ConvertTo_mFE5CF810C6BE39B1A39E51B28875E8FDF0DAE363_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
Type_t * L_3 = ___destinationType3;
|
|
Type_t * L_4 = __this->get_simpleType_3();
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_5 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_3, L_4, /*hidden argument*/NULL);
|
|
if (!L_5)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_6 = __this->get_nullableType_2();
|
|
RuntimeObject * L_7 = ___value2;
|
|
NullCheck(L_6);
|
|
bool L_8 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(138 /* System.Boolean System.Type::IsInstanceOfType(System.Object) */, L_6, L_7);
|
|
if (!L_8)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_9 = ___value2;
|
|
return L_9;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
Type_t * L_10 = ___destinationType3;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_11 = { reinterpret_cast<intptr_t> (InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_12 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_11, /*hidden argument*/NULL);
|
|
bool L_13 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_10, L_12, /*hidden argument*/NULL);
|
|
if (!L_13)
|
|
{
|
|
goto IL_0072;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_14 = __this->get_nullableType_2();
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_15 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_16 = L_15;
|
|
Type_t * L_17 = __this->get_simpleType_3();
|
|
NullCheck(L_16);
|
|
ArrayElementTypeCheck (L_16, L_17);
|
|
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_17);
|
|
NullCheck(L_14);
|
|
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_18 = Type_GetConstructor_m4371D7AD6A8E15067C698696B0167323CBC7F3DA(L_14, L_16, /*hidden argument*/NULL);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = L_19;
|
|
RuntimeObject * L_21 = ___value2;
|
|
NullCheck(L_20);
|
|
ArrayElementTypeCheck (L_20, L_21);
|
|
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_21);
|
|
InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6 * L_22 = (InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6 *)il2cpp_codegen_object_new(InstanceDescriptor_t964F3DAD1E093CF941D315A157F6DE4FF6E52EF6_il2cpp_TypeInfo_var);
|
|
InstanceDescriptor__ctor_m47D0A6167384EA496F0734E951DECD7EE576CAC4(L_22, L_18, (RuntimeObject*)(RuntimeObject*)L_20, (bool)1, /*hidden argument*/NULL);
|
|
return L_22;
|
|
}
|
|
|
|
IL_0072:
|
|
{
|
|
RuntimeObject * L_23 = ___value2;
|
|
if (L_23)
|
|
{
|
|
goto IL_008e;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_24 = ___destinationType3;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_25 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_26 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_25, /*hidden argument*/NULL);
|
|
bool L_27 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_24, L_26, /*hidden argument*/NULL);
|
|
if (!L_27)
|
|
{
|
|
goto IL_00a7;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_28 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
|
|
return L_28;
|
|
}
|
|
|
|
IL_008e:
|
|
{
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_29 = __this->get_simpleTypeConverter_4();
|
|
if (!L_29)
|
|
{
|
|
goto IL_00a7;
|
|
}
|
|
}
|
|
{
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_30 = __this->get_simpleTypeConverter_4();
|
|
RuntimeObject* L_31 = ___context0;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_32 = ___culture1;
|
|
RuntimeObject * L_33 = ___value2;
|
|
Type_t * L_34 = ___destinationType3;
|
|
NullCheck(L_30);
|
|
RuntimeObject * L_35 = VirtFuncInvoker4< RuntimeObject *, RuntimeObject*, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F *, RuntimeObject *, Type_t * >::Invoke(7 /* System.Object System.ComponentModel.TypeConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type) */, L_30, L_31, L_32, L_33, L_34);
|
|
return L_35;
|
|
}
|
|
|
|
IL_00a7:
|
|
{
|
|
RuntimeObject* L_36 = ___context0;
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_37 = ___culture1;
|
|
RuntimeObject * L_38 = ___value2;
|
|
Type_t * L_39 = ___destinationType3;
|
|
RuntimeObject * L_40 = TypeConverter_ConvertTo_mFC7AA7F0A382607E75CCE820A705B5965D099AAC(__this, L_36, L_37, L_38, L_39, /*hidden argument*/NULL);
|
|
return L_40;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.NullableConverter::CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * NullableConverter_CreateInstance_mC3E844589AD43223F7185523DD99CAAB580BBC52 (NullableConverter_t46A6256BAFD4B0C501724527189C888B36E48E71 * __this, RuntimeObject* ___context0, RuntimeObject* ___propertyValues1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_0 = __this->get_simpleTypeConverter_4();
|
|
if (!L_0)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_1 = __this->get_simpleTypeConverter_4();
|
|
RuntimeObject* L_2 = ___context0;
|
|
RuntimeObject* L_3 = ___propertyValues1;
|
|
NullCheck(L_1);
|
|
RuntimeObject * L_4 = VirtFuncInvoker2< RuntimeObject *, RuntimeObject*, RuntimeObject* >::Invoke(8 /* System.Object System.ComponentModel.TypeConverter::CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary) */, L_1, L_2, L_3);
|
|
return L_4;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
RuntimeObject* L_5 = ___context0;
|
|
RuntimeObject* L_6 = ___propertyValues1;
|
|
RuntimeObject * L_7 = TypeConverter_CreateInstance_mDC7CFC64F7538582820FE98B48B025956549FA6F(__this, L_5, L_6, /*hidden argument*/NULL);
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.NullableConverter::GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NullableConverter_GetCreateInstanceSupported_m26E7E2DDF37037BB6371AA566CA27104185B16EF (NullableConverter_t46A6256BAFD4B0C501724527189C888B36E48E71 * __this, RuntimeObject* ___context0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_0 = __this->get_simpleTypeConverter_4();
|
|
if (!L_0)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_1 = __this->get_simpleTypeConverter_4();
|
|
RuntimeObject* L_2 = ___context0;
|
|
NullCheck(L_1);
|
|
bool L_3 = VirtFuncInvoker1< bool, RuntimeObject* >::Invoke(9 /* System.Boolean System.ComponentModel.TypeConverter::GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext) */, L_1, L_2);
|
|
return L_3;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
RuntimeObject* L_4 = ___context0;
|
|
bool L_5 = TypeConverter_GetCreateInstanceSupported_mA94E6A163BDDEF26EF22676B270763C010FA2D1C(__this, L_4, /*hidden argument*/NULL);
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.NullableConverter::GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * NullableConverter_GetProperties_m6FDB181A72AC16A73DA6DCFB78E86C7665D73A5C (NullableConverter_t46A6256BAFD4B0C501724527189C888B36E48E71 * __this, RuntimeObject* ___context0, RuntimeObject * ___value1, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attributes2, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject * V_0 = NULL;
|
|
{
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_0 = __this->get_simpleTypeConverter_4();
|
|
if (!L_0)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_1 = ___value1;
|
|
V_0 = L_1;
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_2 = __this->get_simpleTypeConverter_4();
|
|
RuntimeObject* L_3 = ___context0;
|
|
RuntimeObject * L_4 = V_0;
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_5 = ___attributes2;
|
|
NullCheck(L_2);
|
|
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_6 = VirtFuncInvoker3< PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *, RuntimeObject*, RuntimeObject *, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* >::Invoke(10 /* System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.TypeConverter::GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[]) */, L_2, L_3, L_4, L_5);
|
|
return L_6;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
RuntimeObject* L_7 = ___context0;
|
|
RuntimeObject * L_8 = ___value1;
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_9 = ___attributes2;
|
|
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_10 = TypeConverter_GetProperties_mE9B2F1B88BC6A544E6FB1B5369A9603D24871DA1(__this, L_7, L_8, L_9, /*hidden argument*/NULL);
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.NullableConverter::GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NullableConverter_GetPropertiesSupported_mA4CDDD3DA6F77162E6BA4B1654C9C8FC1E45F68D (NullableConverter_t46A6256BAFD4B0C501724527189C888B36E48E71 * __this, RuntimeObject* ___context0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_0 = __this->get_simpleTypeConverter_4();
|
|
if (!L_0)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_1 = __this->get_simpleTypeConverter_4();
|
|
RuntimeObject* L_2 = ___context0;
|
|
NullCheck(L_1);
|
|
bool L_3 = VirtFuncInvoker1< bool, RuntimeObject* >::Invoke(11 /* System.Boolean System.ComponentModel.TypeConverter::GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext) */, L_1, L_2);
|
|
return L_3;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
RuntimeObject* L_4 = ___context0;
|
|
bool L_5 = TypeConverter_GetPropertiesSupported_m689053FED1C08F4E898BC80D3E802866A08CCE1D(__this, L_4, /*hidden argument*/NULL);
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.ComponentModel.TypeConverter_StandardValuesCollection System.ComponentModel.NullableConverter::GetStandardValues(System.ComponentModel.ITypeDescriptorContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * NullableConverter_GetStandardValues_mE04D07ED245061BA6DF9A639DBB37B2ABBDA0E99 (NullableConverter_t46A6256BAFD4B0C501724527189C888B36E48E71 * __this, RuntimeObject* ___context0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (NullableConverter_GetStandardValues_mE04D07ED245061BA6DF9A639DBB37B2ABBDA0E99_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * V_0 = NULL;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
RuntimeObject* V_3 = NULL;
|
|
RuntimeObject * V_4 = NULL;
|
|
RuntimeObject* V_5 = NULL;
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
{
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_0 = __this->get_simpleTypeConverter_4();
|
|
if (!L_0)
|
|
{
|
|
goto IL_0078;
|
|
}
|
|
}
|
|
{
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_1 = __this->get_simpleTypeConverter_4();
|
|
RuntimeObject* L_2 = ___context0;
|
|
NullCheck(L_1);
|
|
StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * L_3 = VirtFuncInvoker1< StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 *, RuntimeObject* >::Invoke(12 /* System.ComponentModel.TypeConverter/StandardValuesCollection System.ComponentModel.TypeConverter::GetStandardValues(System.ComponentModel.ITypeDescriptorContext) */, L_1, L_2);
|
|
V_0 = L_3;
|
|
RuntimeObject* L_4 = ___context0;
|
|
bool L_5 = VirtFuncInvoker1< bool, RuntimeObject* >::Invoke(14 /* System.Boolean System.ComponentModel.TypeConverter::GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext) */, __this, L_4);
|
|
if (!L_5)
|
|
{
|
|
goto IL_0078;
|
|
}
|
|
}
|
|
{
|
|
StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * L_6 = V_0;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0078;
|
|
}
|
|
}
|
|
{
|
|
StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * L_7 = V_0;
|
|
NullCheck(L_7);
|
|
int32_t L_8 = StandardValuesCollection_get_Count_mD0531EA777492E88EBEA8C6B8E8A12C4AFE5103A(L_7, /*hidden argument*/NULL);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)));
|
|
V_1 = L_9;
|
|
V_2 = 0;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = V_1;
|
|
int32_t L_11 = V_2;
|
|
int32_t L_12 = L_11;
|
|
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
|
|
NullCheck(L_10);
|
|
ArrayElementTypeCheck (L_10, NULL);
|
|
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_12), (RuntimeObject *)NULL);
|
|
StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * L_13 = V_0;
|
|
NullCheck(L_13);
|
|
RuntimeObject* L_14 = StandardValuesCollection_GetEnumerator_m40E0D69CDEDD7EDE2D9454C4A18AA4C91A96B95F(L_13, /*hidden argument*/NULL);
|
|
V_3 = L_14;
|
|
}
|
|
|
|
IL_0040:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
{
|
|
goto IL_0053;
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
RuntimeObject* L_15 = V_3;
|
|
NullCheck(L_15);
|
|
RuntimeObject * L_16 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_15);
|
|
V_4 = L_16;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = V_1;
|
|
int32_t L_18 = V_2;
|
|
int32_t L_19 = L_18;
|
|
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1));
|
|
RuntimeObject * L_20 = V_4;
|
|
NullCheck(L_17);
|
|
ArrayElementTypeCheck (L_17, L_20);
|
|
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_19), (RuntimeObject *)L_20);
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
RuntimeObject* L_21 = V_3;
|
|
NullCheck(L_21);
|
|
bool L_22 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_21);
|
|
if (L_22)
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
IL2CPP_LEAVE(0x71, FINALLY_005d);
|
|
}
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__last_unhandled_exception = (Exception_t *)e.ex;
|
|
goto FINALLY_005d;
|
|
}
|
|
|
|
FINALLY_005d:
|
|
{ // begin finally (depth: 1)
|
|
{
|
|
RuntimeObject* L_23 = V_3;
|
|
V_5 = ((RuntimeObject*)IsInst((RuntimeObject*)L_23, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_24 = V_5;
|
|
if (!L_24)
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
RuntimeObject* L_25 = V_5;
|
|
NullCheck(L_25);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_25);
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
IL2CPP_END_FINALLY(93)
|
|
}
|
|
} // end finally (depth: 1)
|
|
IL2CPP_CLEANUP(93)
|
|
{
|
|
IL2CPP_JUMP_TBL(0x71, IL_0071)
|
|
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
|
|
}
|
|
|
|
IL_0071:
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_26 = V_1;
|
|
StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * L_27 = (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 *)il2cpp_codegen_object_new(StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3_il2cpp_TypeInfo_var);
|
|
StandardValuesCollection__ctor_m75578979BC0D77C0D622E4C9D7C1CB1E047615C1(L_27, (RuntimeObject*)(RuntimeObject*)L_26, /*hidden argument*/NULL);
|
|
return L_27;
|
|
}
|
|
|
|
IL_0078:
|
|
{
|
|
RuntimeObject* L_28 = ___context0;
|
|
StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * L_29 = TypeConverter_GetStandardValues_m58938306CEF726F9537744C71AC943E399D5F927(__this, L_28, /*hidden argument*/NULL);
|
|
return L_29;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.NullableConverter::GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NullableConverter_GetStandardValuesExclusive_mE2DDC86AB100AFD0F01D9E798148B95F9F1DCB78 (NullableConverter_t46A6256BAFD4B0C501724527189C888B36E48E71 * __this, RuntimeObject* ___context0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_0 = __this->get_simpleTypeConverter_4();
|
|
if (!L_0)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_1 = __this->get_simpleTypeConverter_4();
|
|
RuntimeObject* L_2 = ___context0;
|
|
NullCheck(L_1);
|
|
bool L_3 = VirtFuncInvoker1< bool, RuntimeObject* >::Invoke(13 /* System.Boolean System.ComponentModel.TypeConverter::GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext) */, L_1, L_2);
|
|
return L_3;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
RuntimeObject* L_4 = ___context0;
|
|
bool L_5 = TypeConverter_GetStandardValuesExclusive_m6B189B96FF37D21B43FD397661F5C9960D7204E4(__this, L_4, /*hidden argument*/NULL);
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.NullableConverter::GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NullableConverter_GetStandardValuesSupported_m45F8361AB3BA832C14A71D2FE12B6A11707AC9EA (NullableConverter_t46A6256BAFD4B0C501724527189C888B36E48E71 * __this, RuntimeObject* ___context0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_0 = __this->get_simpleTypeConverter_4();
|
|
if (!L_0)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_1 = __this->get_simpleTypeConverter_4();
|
|
RuntimeObject* L_2 = ___context0;
|
|
NullCheck(L_1);
|
|
bool L_3 = VirtFuncInvoker1< bool, RuntimeObject* >::Invoke(14 /* System.Boolean System.ComponentModel.TypeConverter::GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext) */, L_1, L_2);
|
|
return L_3;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
RuntimeObject* L_4 = ___context0;
|
|
bool L_5 = TypeConverter_GetStandardValuesSupported_mE7E8F04BE48835C994C035A90CBBFD7681B0D198(__this, L_4, /*hidden argument*/NULL);
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.NullableConverter::IsValid(System.ComponentModel.ITypeDescriptorContext,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NullableConverter_IsValid_mB0A466B916926A2B3442A69F7C8C86AB148C01C8 (NullableConverter_t46A6256BAFD4B0C501724527189C888B36E48E71 * __this, RuntimeObject* ___context0, RuntimeObject * ___value1, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject * V_0 = NULL;
|
|
{
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_0 = __this->get_simpleTypeConverter_4();
|
|
if (!L_0)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_1 = ___value1;
|
|
V_0 = L_1;
|
|
RuntimeObject * L_2 = V_0;
|
|
if (L_2)
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_3 = __this->get_simpleTypeConverter_4();
|
|
RuntimeObject* L_4 = ___context0;
|
|
RuntimeObject * L_5 = V_0;
|
|
NullCheck(L_3);
|
|
bool L_6 = VirtFuncInvoker2< bool, RuntimeObject*, RuntimeObject * >::Invoke(15 /* System.Boolean System.ComponentModel.TypeConverter::IsValid(System.ComponentModel.ITypeDescriptorContext,System.Object) */, L_3, L_4, L_5);
|
|
return L_6;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
RuntimeObject* L_7 = ___context0;
|
|
RuntimeObject * L_8 = ___value1;
|
|
bool L_9 = TypeConverter_IsValid_m7F461605B50FF4BAED21EB5B59C65459CF5DC8F4(__this, L_7, L_8, /*hidden argument*/NULL);
|
|
return L_9;
|
|
}
|
|
}
|
|
// System.Type System.ComponentModel.NullableConverter::get_NullableType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * NullableConverter_get_NullableType_m3DD5EAE964748743F8CC684C72EC663C75491826 (NullableConverter_t46A6256BAFD4B0C501724527189C888B36E48E71 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Type_t * L_0 = __this->get_nullableType_2();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Type System.ComponentModel.NullableConverter::get_UnderlyingType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * NullableConverter_get_UnderlyingType_mF4A327831A2B20FE4FD3B734570509B6B5C327AF (NullableConverter_t46A6256BAFD4B0C501724527189C888B36E48E71 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Type_t * L_0 = __this->get_simpleType_3();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.ComponentModel.TypeConverter System.ComponentModel.NullableConverter::get_UnderlyingTypeConverter()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * NullableConverter_get_UnderlyingTypeConverter_m71AA3BCCFFC7B4D61971C691312DF0767350758D (NullableConverter_t46A6256BAFD4B0C501724527189C888B36E48E71 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_0 = __this->get_simpleTypeConverter_4();
|
|
return L_0;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.ParenthesizePropertyNameAttribute::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParenthesizePropertyNameAttribute__ctor_m7D3490B813C6302DEE2BE9C839546E40510D1565 (ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ParenthesizePropertyNameAttribute__ctor_mD3176C9D00E5C3EE01D2E1F622C31CAD22EE4D21(__this, (bool)0, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.ParenthesizePropertyNameAttribute::.ctor(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParenthesizePropertyNameAttribute__ctor_mD3176C9D00E5C3EE01D2E1F622C31CAD22EE4D21 (ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114 * __this, bool ___needParenthesis0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
bool L_0 = ___needParenthesis0;
|
|
__this->set_needParenthesis_1(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.ParenthesizePropertyNameAttribute::get_NeedParenthesis()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ParenthesizePropertyNameAttribute_get_NeedParenthesis_mA9C52907633EF99582310AEA250035D4922DBBEA (ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->get_needParenthesis_1();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.ParenthesizePropertyNameAttribute::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ParenthesizePropertyNameAttribute_Equals_mB533CCB46611DF90A4039138EB1683211EF0C792 (ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114 * __this, RuntimeObject * ___o0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ParenthesizePropertyNameAttribute_Equals_mB533CCB46611DF90A4039138EB1683211EF0C792_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject * L_0 = ___o0;
|
|
if (!((ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114 *)IsInstSealed((RuntimeObject*)L_0, ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_1 = ___o0;
|
|
NullCheck(((ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114 *)CastclassSealed((RuntimeObject*)L_1, ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114_il2cpp_TypeInfo_var)));
|
|
bool L_2 = ParenthesizePropertyNameAttribute_get_NeedParenthesis_mA9C52907633EF99582310AEA250035D4922DBBEA_inline(((ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114 *)CastclassSealed((RuntimeObject*)L_1, ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
|
|
bool L_3 = __this->get_needParenthesis_1();
|
|
return (bool)((((int32_t)L_2) == ((int32_t)L_3))? 1 : 0);
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.ParenthesizePropertyNameAttribute::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ParenthesizePropertyNameAttribute_GetHashCode_mA14EE09E75898130B58814295CA7908A2DE34191 (ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B(__this, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.ParenthesizePropertyNameAttribute::IsDefaultAttribute()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ParenthesizePropertyNameAttribute_IsDefaultAttribute_mA7B411468B20863CE3A0D0F3D87C5CCDE9629D9E (ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ParenthesizePropertyNameAttribute_IsDefaultAttribute_mA7B411468B20863CE3A0D0F3D87C5CCDE9629D9E_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114_il2cpp_TypeInfo_var);
|
|
ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114 * L_0 = ((ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114_StaticFields*)il2cpp_codegen_static_fields_for(ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114_il2cpp_TypeInfo_var))->get_Default_0();
|
|
bool L_1 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, __this, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.ParenthesizePropertyNameAttribute::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParenthesizePropertyNameAttribute__cctor_m98BF99553ECFBC946EFEEB2C1471DC075C775FC1 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ParenthesizePropertyNameAttribute__cctor_m98BF99553ECFBC946EFEEB2C1471DC075C775FC1_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114 * L_0 = (ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114 *)il2cpp_codegen_object_new(ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114_il2cpp_TypeInfo_var);
|
|
ParenthesizePropertyNameAttribute__ctor_m7D3490B813C6302DEE2BE9C839546E40510D1565(L_0, /*hidden argument*/NULL);
|
|
((ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114_StaticFields*)il2cpp_codegen_static_fields_for(ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114_il2cpp_TypeInfo_var))->set_Default_0(L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.PasswordPropertyTextAttribute::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PasswordPropertyTextAttribute__ctor_m561DC1276F32B4FCF5D5CF0C887EF58902DFD813 (PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
PasswordPropertyTextAttribute__ctor_m6C7115C93FD69C8EDC7EF98C0EFA9DEE0D5DC554(__this, (bool)0, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.PasswordPropertyTextAttribute::.ctor(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PasswordPropertyTextAttribute__ctor_m6C7115C93FD69C8EDC7EF98C0EFA9DEE0D5DC554 (PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1 * __this, bool ___password0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
|
|
bool L_0 = ___password0;
|
|
__this->set__password_3(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.PasswordPropertyTextAttribute::get_Password()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PasswordPropertyTextAttribute_get_Password_mA428AA8DFBCEA6EFDEBC1C462E0C8615FF4BABCE (PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->get__password_3();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.PasswordPropertyTextAttribute::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PasswordPropertyTextAttribute_Equals_mF5CE53286BA6FBE00FFDF413A74565DCB7C83077 (PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1 * __this, RuntimeObject * ___o0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PasswordPropertyTextAttribute_Equals_mF5CE53286BA6FBE00FFDF413A74565DCB7C83077_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject * L_0 = ___o0;
|
|
if (!((PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1 *)IsInstSealed((RuntimeObject*)L_0, PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_1 = ___o0;
|
|
NullCheck(((PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1 *)CastclassSealed((RuntimeObject*)L_1, PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1_il2cpp_TypeInfo_var)));
|
|
bool L_2 = PasswordPropertyTextAttribute_get_Password_mA428AA8DFBCEA6EFDEBC1C462E0C8615FF4BABCE_inline(((PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1 *)CastclassSealed((RuntimeObject*)L_1, PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
|
|
bool L_3 = __this->get__password_3();
|
|
return (bool)((((int32_t)L_2) == ((int32_t)L_3))? 1 : 0);
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.PasswordPropertyTextAttribute::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PasswordPropertyTextAttribute_GetHashCode_mDD2B9F761AEB6E71F358C4D3147E1FC9EECF6047 (PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B(__this, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.PasswordPropertyTextAttribute::IsDefaultAttribute()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PasswordPropertyTextAttribute_IsDefaultAttribute_m60425A42A167FC9B4ABE15E3CCC73FA588043D0D (PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PasswordPropertyTextAttribute_IsDefaultAttribute_m60425A42A167FC9B4ABE15E3CCC73FA588043D0D_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1_il2cpp_TypeInfo_var);
|
|
PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1 * L_0 = ((PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1_StaticFields*)il2cpp_codegen_static_fields_for(PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1_il2cpp_TypeInfo_var))->get_Default_2();
|
|
bool L_1 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, __this, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.PasswordPropertyTextAttribute::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PasswordPropertyTextAttribute__cctor_mAD84EAFCCE349F72B880DE4C8129F2271EAE5AD8 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PasswordPropertyTextAttribute__cctor_mAD84EAFCCE349F72B880DE4C8129F2271EAE5AD8_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1 * L_0 = (PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1 *)il2cpp_codegen_object_new(PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1_il2cpp_TypeInfo_var);
|
|
PasswordPropertyTextAttribute__ctor_m6C7115C93FD69C8EDC7EF98C0EFA9DEE0D5DC554(L_0, (bool)1, /*hidden argument*/NULL);
|
|
((PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1_StaticFields*)il2cpp_codegen_static_fields_for(PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1_il2cpp_TypeInfo_var))->set_Yes_0(L_0);
|
|
PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1 * L_1 = (PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1 *)il2cpp_codegen_object_new(PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1_il2cpp_TypeInfo_var);
|
|
PasswordPropertyTextAttribute__ctor_m6C7115C93FD69C8EDC7EF98C0EFA9DEE0D5DC554(L_1, (bool)0, /*hidden argument*/NULL);
|
|
((PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1_StaticFields*)il2cpp_codegen_static_fields_for(PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1_il2cpp_TypeInfo_var))->set_No_1(L_1);
|
|
PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1 * L_2 = ((PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1_StaticFields*)il2cpp_codegen_static_fields_for(PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1_il2cpp_TypeInfo_var))->get_No_1();
|
|
((PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1_StaticFields*)il2cpp_codegen_static_fields_for(PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1_il2cpp_TypeInfo_var))->set_Default_2(L_2);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.ProgressChangedEventArgs::.ctor(System.Int32,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProgressChangedEventArgs__ctor_m23538440E7BD972E09D2D504C679137FDD62DFED (ProgressChangedEventArgs_tC79597AB8E4151EDFF627F615FE36B8D91811F3F * __this, int32_t ___progressPercentage0, RuntimeObject * ___userState1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (ProgressChangedEventArgs__ctor_m23538440E7BD972E09D2D504C679137FDD62DFED_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var);
|
|
EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7(__this, /*hidden argument*/NULL);
|
|
int32_t L_0 = ___progressPercentage0;
|
|
__this->set_progressPercentage_1(L_0);
|
|
RuntimeObject * L_1 = ___userState1;
|
|
__this->set_userState_2(L_1);
|
|
return;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.ProgressChangedEventArgs::get_ProgressPercentage()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ProgressChangedEventArgs_get_ProgressPercentage_m2561ED762C465326C621E8652B16077AAAD349CA (ProgressChangedEventArgs_tC79597AB8E4151EDFF627F615FE36B8D91811F3F * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->get_progressPercentage_1();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.ProgressChangedEventArgs::get_UserState()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ProgressChangedEventArgs_get_UserState_m3297B7BBC4ED0279E680AA56A6BE9C8C1DCE1694 (ProgressChangedEventArgs_tC79597AB8E4151EDFF627F615FE36B8D91811F3F * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject * L_0 = __this->get_userState_2();
|
|
return L_0;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.ProgressChangedEventHandler::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProgressChangedEventHandler__ctor_m99F9433E7E2A152DCAD8F3EC5F81F699237F63A1 (ProgressChangedEventHandler_t7C77D0D690442151F8203A0BF38966A9B2CF33C0 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
|
|
{
|
|
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
|
|
__this->set_method_3(___method1);
|
|
__this->set_m_target_2(___object0);
|
|
}
|
|
// System.Void System.ComponentModel.ProgressChangedEventHandler::Invoke(System.Object,System.ComponentModel.ProgressChangedEventArgs)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProgressChangedEventHandler_Invoke_m0F9792FF5FCE8F10B1BBFF57B2CD943ECDB89B06 (ProgressChangedEventHandler_t7C77D0D690442151F8203A0BF38966A9B2CF33C0 * __this, RuntimeObject * ___sender0, ProgressChangedEventArgs_tC79597AB8E4151EDFF627F615FE36B8D91811F3F * ___e1, const RuntimeMethod* method)
|
|
{
|
|
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
|
|
Delegate_t** delegatesToInvoke;
|
|
il2cpp_array_size_t length;
|
|
if (delegateArrayToInvoke != NULL)
|
|
{
|
|
length = delegateArrayToInvoke->max_length;
|
|
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
|
|
}
|
|
else
|
|
{
|
|
length = 1;
|
|
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
|
|
}
|
|
|
|
for (il2cpp_array_size_t i = 0; i < length; i++)
|
|
{
|
|
Delegate_t* currentDelegate = delegatesToInvoke[i];
|
|
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
|
|
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
|
|
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
|
|
if (!il2cpp_codegen_method_is_virtual(targetMethod))
|
|
{
|
|
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
|
|
}
|
|
bool ___methodIsStatic = MethodIsStatic(targetMethod);
|
|
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
|
|
if (___methodIsStatic)
|
|
{
|
|
if (___parameterCount == 2)
|
|
{
|
|
// open
|
|
typedef void (*FunctionPointerType) (RuntimeObject *, ProgressChangedEventArgs_tC79597AB8E4151EDFF627F615FE36B8D91811F3F *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod);
|
|
}
|
|
else
|
|
{
|
|
// closed
|
|
typedef void (*FunctionPointerType) (void*, RuntimeObject *, ProgressChangedEventArgs_tC79597AB8E4151EDFF627F615FE36B8D91811F3F *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___e1, targetMethod);
|
|
}
|
|
}
|
|
else if (___parameterCount != 2)
|
|
{
|
|
// open
|
|
if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
|
|
{
|
|
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
GenericInterfaceActionInvoker1< ProgressChangedEventArgs_tC79597AB8E4151EDFF627F615FE36B8D91811F3F * >::Invoke(targetMethod, ___sender0, ___e1);
|
|
else
|
|
GenericVirtActionInvoker1< ProgressChangedEventArgs_tC79597AB8E4151EDFF627F615FE36B8D91811F3F * >::Invoke(targetMethod, ___sender0, ___e1);
|
|
}
|
|
else
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
InterfaceActionInvoker1< ProgressChangedEventArgs_tC79597AB8E4151EDFF627F615FE36B8D91811F3F * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___sender0, ___e1);
|
|
else
|
|
VirtActionInvoker1< ProgressChangedEventArgs_tC79597AB8E4151EDFF627F615FE36B8D91811F3F * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___sender0, ___e1);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___e1) - 1), targetMethod);
|
|
}
|
|
typedef void (*FunctionPointerType) (RuntimeObject *, ProgressChangedEventArgs_tC79597AB8E4151EDFF627F615FE36B8D91811F3F *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// closed
|
|
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
|
|
{
|
|
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
GenericInterfaceActionInvoker2< RuntimeObject *, ProgressChangedEventArgs_tC79597AB8E4151EDFF627F615FE36B8D91811F3F * >::Invoke(targetMethod, targetThis, ___sender0, ___e1);
|
|
else
|
|
GenericVirtActionInvoker2< RuntimeObject *, ProgressChangedEventArgs_tC79597AB8E4151EDFF627F615FE36B8D91811F3F * >::Invoke(targetMethod, targetThis, ___sender0, ___e1);
|
|
}
|
|
else
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
InterfaceActionInvoker2< RuntimeObject *, ProgressChangedEventArgs_tC79597AB8E4151EDFF627F615FE36B8D91811F3F * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___sender0, ___e1);
|
|
else
|
|
VirtActionInvoker2< RuntimeObject *, ProgressChangedEventArgs_tC79597AB8E4151EDFF627F615FE36B8D91811F3F * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___sender0, ___e1);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, ProgressChangedEventArgs_tC79597AB8E4151EDFF627F615FE36B8D91811F3F *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___sender0) - 1), ___e1, targetMethod);
|
|
}
|
|
if (targetThis == NULL)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject *, ProgressChangedEventArgs_tC79597AB8E4151EDFF627F615FE36B8D91811F3F *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod);
|
|
}
|
|
else
|
|
{
|
|
typedef void (*FunctionPointerType) (void*, RuntimeObject *, ProgressChangedEventArgs_tC79597AB8E4151EDFF627F615FE36B8D91811F3F *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___e1, targetMethod);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// System.IAsyncResult System.ComponentModel.ProgressChangedEventHandler::BeginInvoke(System.Object,System.ComponentModel.ProgressChangedEventArgs,System.AsyncCallback,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ProgressChangedEventHandler_BeginInvoke_mC96E3B366C01CA85BB5BA7BEA50BA77520BC6935 (ProgressChangedEventHandler_t7C77D0D690442151F8203A0BF38966A9B2CF33C0 * __this, RuntimeObject * ___sender0, ProgressChangedEventArgs_tC79597AB8E4151EDFF627F615FE36B8D91811F3F * ___e1, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
|
|
{
|
|
void *__d_args[3] = {0};
|
|
__d_args[0] = ___sender0;
|
|
__d_args[1] = ___e1;
|
|
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
|
|
}
|
|
// System.Void System.ComponentModel.ProgressChangedEventHandler::EndInvoke(System.IAsyncResult)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProgressChangedEventHandler_EndInvoke_mEBBD3C1FA9D12E4C1230AE543945FE5799C8E89B (ProgressChangedEventHandler_t7C77D0D690442151F8203A0BF38966A9B2CF33C0 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.PropertyChangedEventArgs::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyChangedEventArgs__ctor_mBC582C76F42CDEE455B350302FFDF687D135A9E2 (PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46 * __this, String_t* ___propertyName0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyChangedEventArgs__ctor_mBC582C76F42CDEE455B350302FFDF687D135A9E2_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var);
|
|
EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7(__this, /*hidden argument*/NULL);
|
|
String_t* L_0 = ___propertyName0;
|
|
__this->set_propertyName_1(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.PropertyChangedEventArgs::get_PropertyName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PropertyChangedEventArgs_get_PropertyName_m293A44EFAA17A209223CBBC95241D315C17AEDD3 (PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_propertyName_1();
|
|
return L_0;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.PropertyChangedEventHandler::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyChangedEventHandler__ctor_mC6EC20F2995A9376A72EB51981850A9E5C8450E7 (PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
|
|
{
|
|
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
|
|
__this->set_method_3(___method1);
|
|
__this->set_m_target_2(___object0);
|
|
}
|
|
// System.Void System.ComponentModel.PropertyChangedEventHandler::Invoke(System.Object,System.ComponentModel.PropertyChangedEventArgs)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyChangedEventHandler_Invoke_m7DB0AABF07302887DD3FEE589E1F585B4C768F57 (PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * __this, RuntimeObject * ___sender0, PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46 * ___e1, const RuntimeMethod* method)
|
|
{
|
|
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
|
|
Delegate_t** delegatesToInvoke;
|
|
il2cpp_array_size_t length;
|
|
if (delegateArrayToInvoke != NULL)
|
|
{
|
|
length = delegateArrayToInvoke->max_length;
|
|
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
|
|
}
|
|
else
|
|
{
|
|
length = 1;
|
|
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
|
|
}
|
|
|
|
for (il2cpp_array_size_t i = 0; i < length; i++)
|
|
{
|
|
Delegate_t* currentDelegate = delegatesToInvoke[i];
|
|
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
|
|
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
|
|
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
|
|
if (!il2cpp_codegen_method_is_virtual(targetMethod))
|
|
{
|
|
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
|
|
}
|
|
bool ___methodIsStatic = MethodIsStatic(targetMethod);
|
|
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
|
|
if (___methodIsStatic)
|
|
{
|
|
if (___parameterCount == 2)
|
|
{
|
|
// open
|
|
typedef void (*FunctionPointerType) (RuntimeObject *, PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46 *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod);
|
|
}
|
|
else
|
|
{
|
|
// closed
|
|
typedef void (*FunctionPointerType) (void*, RuntimeObject *, PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46 *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___e1, targetMethod);
|
|
}
|
|
}
|
|
else if (___parameterCount != 2)
|
|
{
|
|
// open
|
|
if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
|
|
{
|
|
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
GenericInterfaceActionInvoker1< PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46 * >::Invoke(targetMethod, ___sender0, ___e1);
|
|
else
|
|
GenericVirtActionInvoker1< PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46 * >::Invoke(targetMethod, ___sender0, ___e1);
|
|
}
|
|
else
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
InterfaceActionInvoker1< PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___sender0, ___e1);
|
|
else
|
|
VirtActionInvoker1< PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___sender0, ___e1);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___e1) - 1), targetMethod);
|
|
}
|
|
typedef void (*FunctionPointerType) (RuntimeObject *, PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46 *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// closed
|
|
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
|
|
{
|
|
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
GenericInterfaceActionInvoker2< RuntimeObject *, PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46 * >::Invoke(targetMethod, targetThis, ___sender0, ___e1);
|
|
else
|
|
GenericVirtActionInvoker2< RuntimeObject *, PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46 * >::Invoke(targetMethod, targetThis, ___sender0, ___e1);
|
|
}
|
|
else
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
InterfaceActionInvoker2< RuntimeObject *, PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___sender0, ___e1);
|
|
else
|
|
VirtActionInvoker2< RuntimeObject *, PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___sender0, ___e1);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46 *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___sender0) - 1), ___e1, targetMethod);
|
|
}
|
|
if (targetThis == NULL)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject *, PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46 *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod);
|
|
}
|
|
else
|
|
{
|
|
typedef void (*FunctionPointerType) (void*, RuntimeObject *, PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46 *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___e1, targetMethod);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// System.IAsyncResult System.ComponentModel.PropertyChangedEventHandler::BeginInvoke(System.Object,System.ComponentModel.PropertyChangedEventArgs,System.AsyncCallback,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* PropertyChangedEventHandler_BeginInvoke_m77D416AC801FF29FBF4D294574231171FE2E551D (PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * __this, RuntimeObject * ___sender0, PropertyChangedEventArgs_t90CF85B82F87D594F73F03364494C77592B11F46 * ___e1, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
|
|
{
|
|
void *__d_args[3] = {0};
|
|
__d_args[0] = ___sender0;
|
|
__d_args[1] = ___e1;
|
|
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
|
|
}
|
|
// System.Void System.ComponentModel.PropertyChangedEventHandler::EndInvoke(System.IAsyncResult)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyChangedEventHandler_EndInvoke_m3539B5822D063A13DF8EBCA57CA475A7B5BE32FE (PropertyChangedEventHandler_t617E98E1876A8EB394D2B329340CE02D21FFFC82 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.PropertyChangingEventArgs::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyChangingEventArgs__ctor_m63441B844FDEAB3DFCEA1EB4DBFC8C6E971982E8 (PropertyChangingEventArgs_tF5EE6A07599A5560DB307BC199120416F0615DBA * __this, String_t* ___propertyName0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyChangingEventArgs__ctor_m63441B844FDEAB3DFCEA1EB4DBFC8C6E971982E8_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var);
|
|
EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7(__this, /*hidden argument*/NULL);
|
|
String_t* L_0 = ___propertyName0;
|
|
__this->set_propertyName_1(L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.String System.ComponentModel.PropertyChangingEventArgs::get_PropertyName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PropertyChangingEventArgs_get_PropertyName_mF1C117FC291BCB942DD9BE23203ED1A9CFA2AEA4 (PropertyChangingEventArgs_tF5EE6A07599A5560DB307BC199120416F0615DBA * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_propertyName_1();
|
|
return L_0;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.PropertyChangingEventHandler::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyChangingEventHandler__ctor_m0B0D8D56D4E6981B0E068A509512215B67ECD866 (PropertyChangingEventHandler_tE2424019EC48E76381C3EB037326A821D4F833C1 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
|
|
{
|
|
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
|
|
__this->set_method_3(___method1);
|
|
__this->set_m_target_2(___object0);
|
|
}
|
|
// System.Void System.ComponentModel.PropertyChangingEventHandler::Invoke(System.Object,System.ComponentModel.PropertyChangingEventArgs)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyChangingEventHandler_Invoke_m261C847EA75DCE587D392A5348A039E09C448458 (PropertyChangingEventHandler_tE2424019EC48E76381C3EB037326A821D4F833C1 * __this, RuntimeObject * ___sender0, PropertyChangingEventArgs_tF5EE6A07599A5560DB307BC199120416F0615DBA * ___e1, const RuntimeMethod* method)
|
|
{
|
|
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11();
|
|
Delegate_t** delegatesToInvoke;
|
|
il2cpp_array_size_t length;
|
|
if (delegateArrayToInvoke != NULL)
|
|
{
|
|
length = delegateArrayToInvoke->max_length;
|
|
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
|
|
}
|
|
else
|
|
{
|
|
length = 1;
|
|
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
|
|
}
|
|
|
|
for (il2cpp_array_size_t i = 0; i < length; i++)
|
|
{
|
|
Delegate_t* currentDelegate = delegatesToInvoke[i];
|
|
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
|
|
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
|
|
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
|
|
if (!il2cpp_codegen_method_is_virtual(targetMethod))
|
|
{
|
|
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
|
|
}
|
|
bool ___methodIsStatic = MethodIsStatic(targetMethod);
|
|
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
|
|
if (___methodIsStatic)
|
|
{
|
|
if (___parameterCount == 2)
|
|
{
|
|
// open
|
|
typedef void (*FunctionPointerType) (RuntimeObject *, PropertyChangingEventArgs_tF5EE6A07599A5560DB307BC199120416F0615DBA *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod);
|
|
}
|
|
else
|
|
{
|
|
// closed
|
|
typedef void (*FunctionPointerType) (void*, RuntimeObject *, PropertyChangingEventArgs_tF5EE6A07599A5560DB307BC199120416F0615DBA *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___e1, targetMethod);
|
|
}
|
|
}
|
|
else if (___parameterCount != 2)
|
|
{
|
|
// open
|
|
if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
|
|
{
|
|
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
GenericInterfaceActionInvoker1< PropertyChangingEventArgs_tF5EE6A07599A5560DB307BC199120416F0615DBA * >::Invoke(targetMethod, ___sender0, ___e1);
|
|
else
|
|
GenericVirtActionInvoker1< PropertyChangingEventArgs_tF5EE6A07599A5560DB307BC199120416F0615DBA * >::Invoke(targetMethod, ___sender0, ___e1);
|
|
}
|
|
else
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
InterfaceActionInvoker1< PropertyChangingEventArgs_tF5EE6A07599A5560DB307BC199120416F0615DBA * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___sender0, ___e1);
|
|
else
|
|
VirtActionInvoker1< PropertyChangingEventArgs_tF5EE6A07599A5560DB307BC199120416F0615DBA * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___sender0, ___e1);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___e1) - 1), targetMethod);
|
|
}
|
|
typedef void (*FunctionPointerType) (RuntimeObject *, PropertyChangingEventArgs_tF5EE6A07599A5560DB307BC199120416F0615DBA *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// closed
|
|
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
|
|
{
|
|
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
GenericInterfaceActionInvoker2< RuntimeObject *, PropertyChangingEventArgs_tF5EE6A07599A5560DB307BC199120416F0615DBA * >::Invoke(targetMethod, targetThis, ___sender0, ___e1);
|
|
else
|
|
GenericVirtActionInvoker2< RuntimeObject *, PropertyChangingEventArgs_tF5EE6A07599A5560DB307BC199120416F0615DBA * >::Invoke(targetMethod, targetThis, ___sender0, ___e1);
|
|
}
|
|
else
|
|
{
|
|
if (il2cpp_codegen_method_is_interface_method(targetMethod))
|
|
InterfaceActionInvoker2< RuntimeObject *, PropertyChangingEventArgs_tF5EE6A07599A5560DB307BC199120416F0615DBA * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___sender0, ___e1);
|
|
else
|
|
VirtActionInvoker2< RuntimeObject *, PropertyChangingEventArgs_tF5EE6A07599A5560DB307BC199120416F0615DBA * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___sender0, ___e1);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, PropertyChangingEventArgs_tF5EE6A07599A5560DB307BC199120416F0615DBA *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___sender0) - 1), ___e1, targetMethod);
|
|
}
|
|
if (targetThis == NULL)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject *, PropertyChangingEventArgs_tF5EE6A07599A5560DB307BC199120416F0615DBA *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod);
|
|
}
|
|
else
|
|
{
|
|
typedef void (*FunctionPointerType) (void*, RuntimeObject *, PropertyChangingEventArgs_tF5EE6A07599A5560DB307BC199120416F0615DBA *, const RuntimeMethod*);
|
|
((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___e1, targetMethod);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// System.IAsyncResult System.ComponentModel.PropertyChangingEventHandler::BeginInvoke(System.Object,System.ComponentModel.PropertyChangingEventArgs,System.AsyncCallback,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* PropertyChangingEventHandler_BeginInvoke_mED3E67C5778C9CD7C10A7B61B4D3E1A29B64977E (PropertyChangingEventHandler_tE2424019EC48E76381C3EB037326A821D4F833C1 * __this, RuntimeObject * ___sender0, PropertyChangingEventArgs_tF5EE6A07599A5560DB307BC199120416F0615DBA * ___e1, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
|
|
{
|
|
void *__d_args[3] = {0};
|
|
__d_args[0] = ___sender0;
|
|
__d_args[1] = ___e1;
|
|
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
|
|
}
|
|
// System.Void System.ComponentModel.PropertyChangingEventHandler::EndInvoke(System.IAsyncResult)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyChangingEventHandler_EndInvoke_mAC27AEA7C15F22072EED42A0142EBA82090E101C (PropertyChangingEventHandler_tE2424019EC48E76381C3EB037326A821D4F833C1 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.PropertyDescriptor::.ctor(System.String,System.Attribute[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptor__ctor_m8CEC4DAE5266714927949F60E4F8A7F31141BC22 (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, String_t* ___name0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attrs1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___name0;
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_1 = ___attrs1;
|
|
MemberDescriptor__ctor_m7DA97C2FCA1C99D7D7B31A89A908219E4A48DE7B(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.PropertyDescriptor::.ctor(System.ComponentModel.MemberDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptor__ctor_m1C50EAC17024AD63F5E0CFB59708DD7BDC6D553A (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * ___descr0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_0 = ___descr0;
|
|
MemberDescriptor__ctor_mFD23579925A3F34CB985856C22D3CD13BB49D41B(__this, L_0, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.PropertyDescriptor::.ctor(System.ComponentModel.MemberDescriptor,System.Attribute[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptor__ctor_m8C1C276319F5C29A452F48C89B595334AB7E65B0 (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * ___descr0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___attrs1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
MemberDescriptor_t9540F11CAE19431295C2582699585264E053B8F8 * L_0 = ___descr0;
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_1 = ___attrs1;
|
|
MemberDescriptor__ctor_mDDA60D0BB2448D6607AB2F2C353A8C30CFABE0A3(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.ComponentModel.TypeConverter System.ComponentModel.PropertyDescriptor::get_Converter()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * PropertyDescriptor_get_Converter_mDD0766C5E0AE4928EBBE501C7CB9D7041E9C79C1 (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptor_get_Converter_mDD0766C5E0AE4928EBBE501C7CB9D7041E9C79C1_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * V_0 = NULL;
|
|
TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * V_1 = NULL;
|
|
Type_t * V_2 = NULL;
|
|
{
|
|
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_0 = VirtFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(6 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, __this);
|
|
V_0 = L_0;
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_1 = __this->get_converter_12();
|
|
if (L_1)
|
|
{
|
|
goto IL_008e;
|
|
}
|
|
}
|
|
{
|
|
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_2 = V_0;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL);
|
|
NullCheck(L_2);
|
|
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_5 = VirtFuncInvoker1< Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_2, L_4);
|
|
V_1 = ((TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 *)CastclassSealed((RuntimeObject*)L_5, TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8_il2cpp_TypeInfo_var));
|
|
TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * L_6 = V_1;
|
|
NullCheck(L_6);
|
|
String_t* L_7 = TypeConverterAttribute_get_ConverterTypeName_m883941C77E14FC5B4A3E32DD8F59F11739D5D6D8_inline(L_6, /*hidden argument*/NULL);
|
|
if (!L_7)
|
|
{
|
|
goto IL_0075;
|
|
}
|
|
}
|
|
{
|
|
TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * L_8 = V_1;
|
|
NullCheck(L_8);
|
|
String_t* L_9 = TypeConverterAttribute_get_ConverterTypeName_m883941C77E14FC5B4A3E32DD8F59F11739D5D6D8_inline(L_8, /*hidden argument*/NULL);
|
|
NullCheck(L_9);
|
|
int32_t L_10 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_9, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_10) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0075;
|
|
}
|
|
}
|
|
{
|
|
TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * L_11 = V_1;
|
|
NullCheck(L_11);
|
|
String_t* L_12 = TypeConverterAttribute_get_ConverterTypeName_m883941C77E14FC5B4A3E32DD8F59F11739D5D6D8_inline(L_11, /*hidden argument*/NULL);
|
|
Type_t * L_13 = PropertyDescriptor_GetTypeFromName_mBD141AA5AB01356D6A8664AE961F72B7637AB7BE(__this, L_12, /*hidden argument*/NULL);
|
|
V_2 = L_13;
|
|
Type_t * L_14 = V_2;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_15 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_14, (Type_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_15)
|
|
{
|
|
goto IL_0075;
|
|
}
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_16 = { reinterpret_cast<intptr_t> (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_17 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_16, /*hidden argument*/NULL);
|
|
Type_t * L_18 = V_2;
|
|
NullCheck(L_17);
|
|
bool L_19 = VirtFuncInvoker1< bool, Type_t * >::Invoke(139 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_17, L_18);
|
|
if (!L_19)
|
|
{
|
|
goto IL_0075;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_20 = V_2;
|
|
RuntimeObject * L_21 = PropertyDescriptor_CreateInstance_m7032F927CEC5E78B323B439DAB07E3D813C1DD90(__this, L_20, /*hidden argument*/NULL);
|
|
__this->set_converter_12(((TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB *)CastclassClass((RuntimeObject*)L_21, TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_il2cpp_TypeInfo_var)));
|
|
}
|
|
|
|
IL_0075:
|
|
{
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_22 = __this->get_converter_12();
|
|
if (L_22)
|
|
{
|
|
goto IL_008e;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_23 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.PropertyDescriptor::get_PropertyType() */, __this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_24 = TypeDescriptor_GetConverter_m30E075F6ED53FD85B7C1F7F44E58BA20645A68BA(L_23, /*hidden argument*/NULL);
|
|
__this->set_converter_12(L_24);
|
|
}
|
|
|
|
IL_008e:
|
|
{
|
|
TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * L_25 = __this->get_converter_12();
|
|
return L_25;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.PropertyDescriptor::get_IsLocalizable()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PropertyDescriptor_get_IsLocalizable_m41BE585C4C7DD08DD3D83493FEEFE4DC8DE61277 (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptor_get_IsLocalizable_m41BE585C4C7DD08DD3D83493FEEFE4DC8DE61277_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F_il2cpp_TypeInfo_var);
|
|
LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F * L_0 = ((LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F_StaticFields*)il2cpp_codegen_static_fields_for(LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F_il2cpp_TypeInfo_var))->get_Yes_1();
|
|
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_1 = VirtFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(6 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, __this);
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_2, /*hidden argument*/NULL);
|
|
NullCheck(L_1);
|
|
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_4 = VirtFuncInvoker1< Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_1, L_3);
|
|
NullCheck(L_0);
|
|
bool L_5 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_0, L_4);
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.ComponentModel.DesignerSerializationVisibility System.ComponentModel.PropertyDescriptor::get_SerializationVisibility()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PropertyDescriptor_get_SerializationVisibility_mD4B0B47C340EC1D3DD1B947EB3DC19D4D8DC4ADD (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptor_get_SerializationVisibility_mD4B0B47C340EC1D3DD1B947EB3DC19D4D8DC4ADD_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_0 = VirtFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(6 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, __this);
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL);
|
|
NullCheck(L_0);
|
|
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_3 = VirtFuncInvoker1< Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *, Type_t * >::Invoke(11 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Type) */, L_0, L_2);
|
|
NullCheck(((DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA *)CastclassSealed((RuntimeObject*)L_3, DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_il2cpp_TypeInfo_var)));
|
|
int32_t L_4 = DesignerSerializationVisibilityAttribute_get_Visibility_mAE359C5749C4000C2A382C64B1DCFC3AC4B2FFC5_inline(((DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA *)CastclassSealed((RuntimeObject*)L_3, DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.PropertyDescriptor::AddValueChanged(System.Object,System.EventHandler)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptor_AddValueChanged_m91408A44CCF3C64DD47A6223D352E64F784EB538 (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, RuntimeObject * ___component0, EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * ___handler1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptor_AddValueChanged_m91408A44CCF3C64DD47A6223D352E64F784EB538_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * V_0 = NULL;
|
|
{
|
|
RuntimeObject * L_0 = ___component0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral335C4C1E2F05B5297A56769D8DE75AD9C4874CD3, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, PropertyDescriptor_AddValueChanged_m91408A44CCF3C64DD47A6223D352E64F784EB538_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_2 = ___handler1;
|
|
if (L_2)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, _stringLiteral31A81EC93DB3740EE3984FC40E34A60B0412643D, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, PropertyDescriptor_AddValueChanged_m91408A44CCF3C64DD47A6223D352E64F784EB538_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_4 = __this->get_valueChangedHandlers_13();
|
|
if (L_4)
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_5 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
|
|
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_5, /*hidden argument*/NULL);
|
|
__this->set_valueChangedHandlers_13(L_5);
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_6 = __this->get_valueChangedHandlers_13();
|
|
RuntimeObject * L_7 = ___component0;
|
|
NullCheck(L_6);
|
|
RuntimeObject * L_8 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_6, L_7);
|
|
V_0 = ((EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C *)CastclassSealed((RuntimeObject*)L_8, EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C_il2cpp_TypeInfo_var));
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_9 = __this->get_valueChangedHandlers_13();
|
|
RuntimeObject * L_10 = ___component0;
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_11 = V_0;
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_12 = ___handler1;
|
|
Delegate_t * L_13 = Delegate_Combine_mC25D2F7DECAFBA6D9A2F9EBA8A77063F0658ECF1(L_11, L_12, /*hidden argument*/NULL);
|
|
NullCheck(L_9);
|
|
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(31 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_9, L_10, L_13);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.PropertyDescriptor::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PropertyDescriptor_Equals_m080009C26475A3CBEE1291AC5F1BDFBF4EDA6597 (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptor_Equals_m080009C26475A3CBEE1291AC5F1BDFBF4EDA6597_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * V_0 = NULL;
|
|
bool V_1 = false;
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 5);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
|
|
IL_0000:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
{
|
|
RuntimeObject * L_0 = ___obj0;
|
|
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)__this))))
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
V_1 = (bool)1;
|
|
goto IL_0058;
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
RuntimeObject * L_1 = ___obj0;
|
|
if (L_1)
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_0058;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
RuntimeObject * L_2 = ___obj0;
|
|
V_0 = ((PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)IsInstClass((RuntimeObject*)L_2, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D_il2cpp_TypeInfo_var));
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_4 = V_0;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = VirtFuncInvoker0< int32_t >::Invoke(11 /* System.Int32 System.ComponentModel.MemberDescriptor::get_NameHashCode() */, L_4);
|
|
int32_t L_6 = VirtFuncInvoker0< int32_t >::Invoke(11 /* System.Int32 System.ComponentModel.MemberDescriptor::get_NameHashCode() */, __this);
|
|
if ((!(((uint32_t)L_5) == ((uint32_t)L_6))))
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_7 = V_0;
|
|
NullCheck(L_7);
|
|
Type_t * L_8 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.PropertyDescriptor::get_PropertyType() */, L_7);
|
|
Type_t * L_9 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.PropertyDescriptor::get_PropertyType() */, __this);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_10 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_8, L_9, /*hidden argument*/NULL);
|
|
if (!L_10)
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_11 = V_0;
|
|
NullCheck(L_11);
|
|
String_t* L_12 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, L_11);
|
|
String_t* L_13 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, __this);
|
|
NullCheck(L_12);
|
|
bool L_14 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_12, L_13, /*hidden argument*/NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
V_1 = (bool)1;
|
|
goto IL_0058;
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__exception_local = (Exception_t *)e.ex;
|
|
if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
|
|
goto CATCH_0053;
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0053:
|
|
{ // begin catch(System.Object)
|
|
goto IL_0056;
|
|
} // end catch (depth: 1)
|
|
|
|
IL_0056:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
bool L_15 = V_1;
|
|
return L_15;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.PropertyDescriptor::CreateInstance(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * PropertyDescriptor_CreateInstance_m7032F927CEC5E78B323B439DAB07E3D813C1DD90 (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, Type_t * ___type0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptor_CreateInstance_m7032F927CEC5E78B323B439DAB07E3D813C1DD90_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_0 = NULL;
|
|
{
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_0 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_1 = L_0;
|
|
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = { reinterpret_cast<intptr_t> (Type_t_0_0_0_var) };
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_2, /*hidden argument*/NULL);
|
|
NullCheck(L_1);
|
|
ArrayElementTypeCheck (L_1, L_3);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_3);
|
|
V_0 = L_1;
|
|
Type_t * L_4 = ___type0;
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_5 = V_0;
|
|
NullCheck(L_4);
|
|
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_6 = Type_GetConstructor_m4371D7AD6A8E15067C698696B0167323CBC7F3DA(L_4, L_5, /*hidden argument*/NULL);
|
|
IL2CPP_RUNTIME_CLASS_INIT(ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_il2cpp_TypeInfo_var);
|
|
bool L_7 = ConstructorInfo_op_Inequality_m7BACC92FB27D1999A084F5346451CEE9FD0445E4(L_6, (ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF *)NULL, /*hidden argument*/NULL);
|
|
if (!L_7)
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_8 = ___type0;
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_9 = V_0;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = L_10;
|
|
Type_t * L_12 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.PropertyDescriptor::get_PropertyType() */, __this);
|
|
NullCheck(L_11);
|
|
ArrayElementTypeCheck (L_11, L_12);
|
|
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_12);
|
|
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
|
|
RuntimeObject * L_13 = TypeDescriptor_CreateInstance_m9615D98B08C826DF6B261B054FCB88C56E96CDC2((RuntimeObject*)NULL, L_8, L_9, L_11, /*hidden argument*/NULL);
|
|
return L_13;
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
Type_t * L_14 = ___type0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
|
|
RuntimeObject * L_15 = TypeDescriptor_CreateInstance_m9615D98B08C826DF6B261B054FCB88C56E96CDC2((RuntimeObject*)NULL, L_14, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)NULL, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL, /*hidden argument*/NULL);
|
|
return L_15;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.PropertyDescriptor::FillAttributes(System.Collections.IList)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptor_FillAttributes_mA3E3A90097B815BD8F7A185036485FF86A03256F (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, RuntimeObject* ___attributeList0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->set_converter_12((TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB *)NULL);
|
|
__this->set_editors_14((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL);
|
|
__this->set_editorTypes_15((TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)NULL);
|
|
__this->set_editorCount_16(0);
|
|
RuntimeObject* L_0 = ___attributeList0;
|
|
MemberDescriptor_FillAttributes_mA33C5FFD1DE2BA560E335B6549E60A229B9F773B(__this, L_0, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptor::GetChildProperties()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * PropertyDescriptor_GetChildProperties_m0ECDC85BF46568AD10F27ED0EAC985AEC57F2407 (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_0 = VirtFuncInvoker2< PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *, RuntimeObject *, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* >::Invoke(24 /* System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptor::GetChildProperties(System.Object,System.Attribute[]) */, __this, NULL, (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptor::GetChildProperties(System.Attribute[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * PropertyDescriptor_GetChildProperties_m09863816E6D7BA4DD8859FB1708586611E1C38AF (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___filter0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_0 = ___filter0;
|
|
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_1 = VirtFuncInvoker2< PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *, RuntimeObject *, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* >::Invoke(24 /* System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptor::GetChildProperties(System.Object,System.Attribute[]) */, __this, NULL, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptor::GetChildProperties(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * PropertyDescriptor_GetChildProperties_mEAB5FB2E24823CD452D309D628691605D2A51823 (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, RuntimeObject * ___instance0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject * L_0 = ___instance0;
|
|
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_1 = VirtFuncInvoker2< PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *, RuntimeObject *, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* >::Invoke(24 /* System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptor::GetChildProperties(System.Object,System.Attribute[]) */, __this, L_0, (AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)(AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptor::GetChildProperties(System.Object,System.Attribute[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * PropertyDescriptor_GetChildProperties_m76C214E26712802716CE2F36E25C67E6C153B1CC (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, RuntimeObject * ___instance0, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* ___filter1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptor_GetChildProperties_m76C214E26712802716CE2F36E25C67E6C153B1CC_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject * L_0 = ___instance0;
|
|
if (L_0)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_1 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.PropertyDescriptor::get_PropertyType() */, __this);
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_2 = ___filter1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
|
|
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_3 = TypeDescriptor_GetProperties_mB120D4E97EBF1F7E8C585380F0B6EF8E5EC843EE(L_1, L_2, /*hidden argument*/NULL);
|
|
return L_3;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
RuntimeObject * L_4 = ___instance0;
|
|
AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_5 = ___filter1;
|
|
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
|
|
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_6 = TypeDescriptor_GetProperties_m05CFF294019C93C8ADC7433BB7D5D87F19DDE7FC(L_4, L_5, /*hidden argument*/NULL);
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.PropertyDescriptor::GetEditor(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * PropertyDescriptor_GetEditor_m7F7888E095A7AEA72AC5E0362B4F5FFE9F3ACF23 (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, Type_t * ___editorBaseType0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptor_GetEditor_m7F7888E095A7AEA72AC5E0362B4F5FFE9F3ACF23_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject * V_0 = NULL;
|
|
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * V_4 = NULL;
|
|
Type_t * V_5 = NULL;
|
|
Type_t * V_6 = NULL;
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_7 = NULL;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_8 = NULL;
|
|
int32_t V_9 = 0;
|
|
{
|
|
V_0 = NULL;
|
|
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_0 = VirtFuncInvoker0< AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * >::Invoke(6 /* System.ComponentModel.AttributeCollection System.ComponentModel.MemberDescriptor::get_Attributes() */, __this);
|
|
V_1 = L_0;
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_1 = __this->get_editorTypes_15();
|
|
if (!L_1)
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
V_2 = 0;
|
|
goto IL_0032;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = __this->get_editorTypes_15();
|
|
int32_t L_3 = V_2;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
Type_t * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
Type_t * L_6 = ___editorBaseType0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_7 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_5, L_6, /*hidden argument*/NULL);
|
|
if (!L_7)
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = __this->get_editors_14();
|
|
int32_t L_9 = V_2;
|
|
NullCheck(L_8);
|
|
int32_t L_10 = L_9;
|
|
RuntimeObject * L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
|
|
return L_11;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
int32_t L_12 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
int32_t L_13 = V_2;
|
|
int32_t L_14 = __this->get_editorCount_16();
|
|
if ((((int32_t)L_13) < ((int32_t)L_14)))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
RuntimeObject * L_15 = V_0;
|
|
if (L_15)
|
|
{
|
|
goto IL_0167;
|
|
}
|
|
}
|
|
{
|
|
V_3 = 0;
|
|
goto IL_0098;
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_16 = V_1;
|
|
int32_t L_17 = V_3;
|
|
NullCheck(L_16);
|
|
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_18 = VirtFuncInvoker1< Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *, int32_t >::Invoke(10 /* System.Attribute System.ComponentModel.AttributeCollection::get_Item(System.Int32) */, L_16, L_17);
|
|
V_4 = ((EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 *)IsInstSealed((RuntimeObject*)L_18, EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5_il2cpp_TypeInfo_var));
|
|
EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * L_19 = V_4;
|
|
if (!L_19)
|
|
{
|
|
goto IL_0094;
|
|
}
|
|
}
|
|
{
|
|
EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * L_20 = V_4;
|
|
NullCheck(L_20);
|
|
String_t* L_21 = EditorAttribute_get_EditorBaseTypeName_m41C1E4DD17CF8A2C14A8C8A8E783687FF2C241D1_inline(L_20, /*hidden argument*/NULL);
|
|
Type_t * L_22 = PropertyDescriptor_GetTypeFromName_mBD141AA5AB01356D6A8664AE961F72B7637AB7BE(__this, L_21, /*hidden argument*/NULL);
|
|
V_5 = L_22;
|
|
Type_t * L_23 = ___editorBaseType0;
|
|
Type_t * L_24 = V_5;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_25 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_23, L_24, /*hidden argument*/NULL);
|
|
if (!L_25)
|
|
{
|
|
goto IL_0094;
|
|
}
|
|
}
|
|
{
|
|
EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * L_26 = V_4;
|
|
NullCheck(L_26);
|
|
String_t* L_27 = EditorAttribute_get_EditorTypeName_m0C6CD2A9C2905C7E774825F77B26BF6D842C6090_inline(L_26, /*hidden argument*/NULL);
|
|
Type_t * L_28 = PropertyDescriptor_GetTypeFromName_mBD141AA5AB01356D6A8664AE961F72B7637AB7BE(__this, L_27, /*hidden argument*/NULL);
|
|
V_6 = L_28;
|
|
Type_t * L_29 = V_6;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_30 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_29, (Type_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_30)
|
|
{
|
|
goto IL_0094;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_31 = V_6;
|
|
RuntimeObject * L_32 = PropertyDescriptor_CreateInstance_m7032F927CEC5E78B323B439DAB07E3D813C1DD90(__this, L_31, /*hidden argument*/NULL);
|
|
V_0 = L_32;
|
|
goto IL_00a1;
|
|
}
|
|
|
|
IL_0094:
|
|
{
|
|
int32_t L_33 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1));
|
|
}
|
|
|
|
IL_0098:
|
|
{
|
|
int32_t L_34 = V_3;
|
|
AttributeCollection_tBE6941BB802EDE34B7F986C14A7D7E3A4E135EBE * L_35 = V_1;
|
|
NullCheck(L_35);
|
|
int32_t L_36 = AttributeCollection_get_Count_m18B4E5D1755D27754C9B3C7C89B4BD91B1458EC4(L_35, /*hidden argument*/NULL);
|
|
if ((((int32_t)L_34) < ((int32_t)L_36)))
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
|
|
IL_00a1:
|
|
{
|
|
RuntimeObject * L_37 = V_0;
|
|
if (L_37)
|
|
{
|
|
goto IL_00b1;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_38 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.PropertyDescriptor::get_PropertyType() */, __this);
|
|
Type_t * L_39 = ___editorBaseType0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
|
|
RuntimeObject * L_40 = TypeDescriptor_GetEditor_m66F3C5F1EF83D37BD530FDBC91EACCDD6E339611(L_38, L_39, /*hidden argument*/NULL);
|
|
V_0 = L_40;
|
|
}
|
|
|
|
IL_00b1:
|
|
{
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_41 = __this->get_editorTypes_15();
|
|
if (L_41)
|
|
{
|
|
goto IL_00d1;
|
|
}
|
|
}
|
|
{
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_42 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)5);
|
|
__this->set_editorTypes_15(L_42);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_43 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)5);
|
|
__this->set_editors_14(L_43);
|
|
}
|
|
|
|
IL_00d1:
|
|
{
|
|
int32_t L_44 = __this->get_editorCount_16();
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_45 = __this->get_editorTypes_15();
|
|
NullCheck(L_45);
|
|
if ((((int32_t)L_44) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_45)->max_length)))))))
|
|
{
|
|
goto IL_013d;
|
|
}
|
|
}
|
|
{
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_46 = __this->get_editorTypes_15();
|
|
NullCheck(L_46);
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_47 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_46)->max_length)))), (int32_t)2)));
|
|
V_7 = L_47;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_48 = __this->get_editors_14();
|
|
NullCheck(L_48);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_49 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_48)->max_length)))), (int32_t)2)));
|
|
V_8 = L_49;
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_50 = __this->get_editorTypes_15();
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_51 = V_7;
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_52 = __this->get_editorTypes_15();
|
|
NullCheck(L_52);
|
|
Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434((RuntimeArray *)(RuntimeArray *)L_50, (RuntimeArray *)(RuntimeArray *)L_51, (((int32_t)((int32_t)(((RuntimeArray*)L_52)->max_length)))), /*hidden argument*/NULL);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_53 = __this->get_editors_14();
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_54 = V_8;
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_55 = __this->get_editors_14();
|
|
NullCheck(L_55);
|
|
Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434((RuntimeArray *)(RuntimeArray *)L_53, (RuntimeArray *)(RuntimeArray *)L_54, (((int32_t)((int32_t)(((RuntimeArray*)L_55)->max_length)))), /*hidden argument*/NULL);
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_56 = V_7;
|
|
__this->set_editorTypes_15(L_56);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_57 = V_8;
|
|
__this->set_editors_14(L_57);
|
|
}
|
|
|
|
IL_013d:
|
|
{
|
|
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_58 = __this->get_editorTypes_15();
|
|
int32_t L_59 = __this->get_editorCount_16();
|
|
Type_t * L_60 = ___editorBaseType0;
|
|
NullCheck(L_58);
|
|
ArrayElementTypeCheck (L_58, L_60);
|
|
(L_58)->SetAt(static_cast<il2cpp_array_size_t>(L_59), (Type_t *)L_60);
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_61 = __this->get_editors_14();
|
|
int32_t L_62 = __this->get_editorCount_16();
|
|
V_9 = L_62;
|
|
int32_t L_63 = V_9;
|
|
__this->set_editorCount_16(((int32_t)il2cpp_codegen_add((int32_t)L_63, (int32_t)1)));
|
|
int32_t L_64 = V_9;
|
|
RuntimeObject * L_65 = V_0;
|
|
NullCheck(L_61);
|
|
ArrayElementTypeCheck (L_61, L_65);
|
|
(L_61)->SetAt(static_cast<il2cpp_array_size_t>(L_64), (RuntimeObject *)L_65);
|
|
}
|
|
|
|
IL_0167:
|
|
{
|
|
RuntimeObject * L_66 = V_0;
|
|
return L_66;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.PropertyDescriptor::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PropertyDescriptor_GetHashCode_mF36CC7A4B3F53BE7EE8DB89B7E4B2E4C3F7A3075 (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(11 /* System.Int32 System.ComponentModel.MemberDescriptor::get_NameHashCode() */, __this);
|
|
Type_t * L_1 = VirtFuncInvoker0< Type_t * >::Invoke(21 /* System.Type System.ComponentModel.PropertyDescriptor::get_PropertyType() */, __this);
|
|
NullCheck(L_1);
|
|
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_1);
|
|
return ((int32_t)((int32_t)L_0^(int32_t)L_2));
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.PropertyDescriptor::GetInvocationTarget(System.Type,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * PropertyDescriptor_GetInvocationTarget_m33C99B5B6A6670C495EF184164EC8D549EB6D601 (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, Type_t * ___type0, RuntimeObject * ___instance1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptor_GetInvocationTarget_m33C99B5B6A6670C495EF184164EC8D549EB6D601_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject * V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
{
|
|
Type_t * L_0 = ___type0;
|
|
RuntimeObject * L_1 = ___instance1;
|
|
RuntimeObject * L_2 = MemberDescriptor_GetInvocationTarget_m18F13C7801A10F9E0E1649E7356C49F2797BE543(__this, L_0, L_1, /*hidden argument*/NULL);
|
|
V_0 = L_2;
|
|
RuntimeObject * L_3 = V_0;
|
|
V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_3, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_5 = V_1;
|
|
NullCheck(L_5);
|
|
RuntimeObject * L_6 = InterfaceFuncInvoker1< RuntimeObject *, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * >::Invoke(11 /* System.Object System.ComponentModel.ICustomTypeDescriptor::GetPropertyOwner(System.ComponentModel.PropertyDescriptor) */, ICustomTypeDescriptor_tAF366F5EE1A787B4D24D9570FFFFE6C5DC27C384_il2cpp_TypeInfo_var, L_5, __this);
|
|
V_0 = L_6;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
RuntimeObject * L_7 = V_0;
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.Type System.ComponentModel.PropertyDescriptor::GetTypeFromName(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * PropertyDescriptor_GetTypeFromName_mBD141AA5AB01356D6A8664AE961F72B7637AB7BE (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, String_t* ___typeName0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptor_GetTypeFromName_mBD141AA5AB01356D6A8664AE961F72B7637AB7BE_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Type_t * V_0 = NULL;
|
|
Type_t * V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
Type_t * G_B11_0 = NULL;
|
|
Type_t * G_B10_0 = NULL;
|
|
{
|
|
String_t* L_0 = ___typeName0;
|
|
if (!L_0)
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_1 = ___typeName0;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_1, /*hidden argument*/NULL);
|
|
if (L_2)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
return (Type_t *)NULL;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
String_t* L_3 = ___typeName0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t * L_4 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_mCF0A3B28889C9FFB9987C8D30C23DF0912E7C00C, L_3, "System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e");
|
|
V_0 = L_4;
|
|
V_1 = (Type_t *)NULL;
|
|
Type_t * L_5 = VirtFuncInvoker0< Type_t * >::Invoke(17 /* System.Type System.ComponentModel.PropertyDescriptor::get_ComponentType() */, __this);
|
|
bool L_6 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_5, (Type_t *)NULL, /*hidden argument*/NULL);
|
|
if (!L_6)
|
|
{
|
|
goto IL_0078;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_7 = V_0;
|
|
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_8 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_7, (Type_t *)NULL, /*hidden argument*/NULL);
|
|
if (L_8)
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_9 = VirtFuncInvoker0< Type_t * >::Invoke(17 /* System.Type System.ComponentModel.PropertyDescriptor::get_ComponentType() */, __this);
|
|
NullCheck(L_9);
|
|
Assembly_t * L_10 = VirtFuncInvoker0< Assembly_t * >::Invoke(27 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_9);
|
|
NullCheck(L_10);
|
|
String_t* L_11 = VirtFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Reflection.Assembly::get_FullName() */, L_10);
|
|
Type_t * L_12 = V_0;
|
|
NullCheck(L_12);
|
|
Assembly_t * L_13 = VirtFuncInvoker0< Assembly_t * >::Invoke(27 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_12);
|
|
NullCheck(L_13);
|
|
String_t* L_14 = VirtFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Reflection.Assembly::get_FullName() */, L_13);
|
|
NullCheck(L_11);
|
|
bool L_15 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_11, L_14, /*hidden argument*/NULL);
|
|
if (!L_15)
|
|
{
|
|
goto IL_0078;
|
|
}
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
String_t* L_16 = ___typeName0;
|
|
NullCheck(L_16);
|
|
int32_t L_17 = String_IndexOf_m2909B8CF585E1BD0C81E11ACA2F48012156FD5BD(L_16, ((int32_t)44), /*hidden argument*/NULL);
|
|
V_2 = L_17;
|
|
int32_t L_18 = V_2;
|
|
if ((((int32_t)L_18) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0066;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_19 = ___typeName0;
|
|
int32_t L_20 = V_2;
|
|
NullCheck(L_19);
|
|
String_t* L_21 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_19, 0, L_20, /*hidden argument*/NULL);
|
|
___typeName0 = L_21;
|
|
}
|
|
|
|
IL_0066:
|
|
{
|
|
Type_t * L_22 = VirtFuncInvoker0< Type_t * >::Invoke(17 /* System.Type System.ComponentModel.PropertyDescriptor::get_ComponentType() */, __this);
|
|
NullCheck(L_22);
|
|
Assembly_t * L_23 = VirtFuncInvoker0< Assembly_t * >::Invoke(27 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_22);
|
|
String_t* L_24 = ___typeName0;
|
|
NullCheck(L_23);
|
|
Type_t * L_25 = VirtFuncInvoker1< Type_t *, String_t* >::Invoke(18 /* System.Type System.Reflection.Assembly::GetType(System.String) */, L_23, L_24);
|
|
V_1 = L_25;
|
|
}
|
|
|
|
IL_0078:
|
|
{
|
|
Type_t * L_26 = V_1;
|
|
Type_t * L_27 = L_26;
|
|
G_B10_0 = L_27;
|
|
if (L_27)
|
|
{
|
|
G_B11_0 = L_27;
|
|
goto IL_007e;
|
|
}
|
|
}
|
|
{
|
|
Type_t * L_28 = V_0;
|
|
G_B11_0 = L_28;
|
|
}
|
|
|
|
IL_007e:
|
|
{
|
|
return G_B11_0;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.PropertyDescriptor::OnValueChanged(System.Object,System.EventArgs)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptor_OnValueChanged_m78CADBEDC8B71F0BDBA91762452C418391C0B592 (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, RuntimeObject * ___component0, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * ___e1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptor_OnValueChanged_m78CADBEDC8B71F0BDBA91762452C418391C0B592_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * V_0 = NULL;
|
|
{
|
|
RuntimeObject * L_0 = ___component0;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = __this->get_valueChangedHandlers_13();
|
|
if (!L_1)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_2 = __this->get_valueChangedHandlers_13();
|
|
RuntimeObject * L_3 = ___component0;
|
|
NullCheck(L_2);
|
|
RuntimeObject * L_4 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_2, L_3);
|
|
V_0 = ((EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C *)CastclassSealed((RuntimeObject*)L_4, EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C_il2cpp_TypeInfo_var));
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_5 = V_0;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_6 = V_0;
|
|
RuntimeObject * L_7 = ___component0;
|
|
EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * L_8 = ___e1;
|
|
NullCheck(L_6);
|
|
EventHandler_Invoke_mD23D5EFEA562A05C5EACDD3E91EEDD2BF6C22800(L_6, L_7, L_8, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.PropertyDescriptor::RemoveValueChanged(System.Object,System.EventHandler)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptor_RemoveValueChanged_m198AA1C23F7EB535433044BE34E76F83C0EFB830 (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, RuntimeObject * ___component0, EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * ___handler1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptor_RemoveValueChanged_m198AA1C23F7EB535433044BE34E76F83C0EFB830_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * V_0 = NULL;
|
|
{
|
|
RuntimeObject * L_0 = ___component0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral335C4C1E2F05B5297A56769D8DE75AD9C4874CD3, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, PropertyDescriptor_RemoveValueChanged_m198AA1C23F7EB535433044BE34E76F83C0EFB830_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_2 = ___handler1;
|
|
if (L_2)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
|
|
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, _stringLiteral31A81EC93DB3740EE3984FC40E34A60B0412643D, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, PropertyDescriptor_RemoveValueChanged_m198AA1C23F7EB535433044BE34E76F83C0EFB830_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_4 = __this->get_valueChangedHandlers_13();
|
|
if (!L_4)
|
|
{
|
|
goto IL_0060;
|
|
}
|
|
}
|
|
{
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_5 = __this->get_valueChangedHandlers_13();
|
|
RuntimeObject * L_6 = ___component0;
|
|
NullCheck(L_5);
|
|
RuntimeObject * L_7 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_5, L_6);
|
|
V_0 = ((EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C *)CastclassSealed((RuntimeObject*)L_7, EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C_il2cpp_TypeInfo_var));
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_8 = V_0;
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_9 = ___handler1;
|
|
Delegate_t * L_10 = Delegate_Remove_m0B0DB7D1B3AF96B71AFAA72BA0EFE32FBBC2932D(L_8, L_9, /*hidden argument*/NULL);
|
|
V_0 = ((EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C *)CastclassSealed((RuntimeObject*)L_10, EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C_il2cpp_TypeInfo_var));
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_11 = V_0;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0054;
|
|
}
|
|
}
|
|
{
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_12 = __this->get_valueChangedHandlers_13();
|
|
RuntimeObject * L_13 = ___component0;
|
|
EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_14 = V_0;
|
|
NullCheck(L_12);
|
|
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(31 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_12, L_13, L_14);
|
|
return;
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_15 = __this->get_valueChangedHandlers_13();
|
|
RuntimeObject * L_16 = ___component0;
|
|
NullCheck(L_15);
|
|
VirtActionInvoker1< RuntimeObject * >::Invoke(40 /* System.Void System.Collections.Hashtable::Remove(System.Object) */, L_15, L_16);
|
|
}
|
|
|
|
IL_0060:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.EventHandler System.ComponentModel.PropertyDescriptor::GetValueChangedHandler(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * PropertyDescriptor_GetValueChangedHandler_m1574AF743125BF015F9DDB577AE0559684063000 (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, RuntimeObject * ___component0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptor_GetValueChangedHandler_m1574AF743125BF015F9DDB577AE0559684063000_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject * L_0 = ___component0;
|
|
if (!L_0)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = __this->get_valueChangedHandlers_13();
|
|
if (!L_1)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_2 = __this->get_valueChangedHandlers_13();
|
|
RuntimeObject * L_3 = ___component0;
|
|
NullCheck(L_2);
|
|
RuntimeObject * L_4 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_2, L_3);
|
|
return ((EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C *)CastclassSealed((RuntimeObject*)L_4, EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C_il2cpp_TypeInfo_var));
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
return (EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C *)NULL;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.PropertyDescriptor::get_SupportsChangeEvents()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PropertyDescriptor_get_SupportsChangeEvents_m4119C8BD06CC913C84E416A1DB201F70EC4AB8CA (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::.ctor(System.ComponentModel.PropertyDescriptor[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection__ctor_m132BE5B53DC73850841F2AB9A6633F4626C538BC (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* ___properties0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection__ctor_m132BE5B53DC73850841F2AB9A6633F4626C538BC_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
__this->set_propsOwned_7((bool)1);
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_0 = ___properties0;
|
|
__this->set_properties_3(L_0);
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_1 = ___properties0;
|
|
if (L_1)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_2 = (PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)SZArrayNew(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F_il2cpp_TypeInfo_var, (uint32_t)0);
|
|
__this->set_properties_3(L_2);
|
|
__this->set_propCount_4(0);
|
|
goto IL_0035;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_3 = ___properties0;
|
|
NullCheck(L_3);
|
|
__this->set_propCount_4((((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))));
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
__this->set_propsOwned_7((bool)1);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::.ctor(System.ComponentModel.PropertyDescriptor[],System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection__ctor_m7DDFDE6996940ED1E0BF5073548E5C5B058D6D6D (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* ___properties0, bool ___readOnly1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_0 = ___properties0;
|
|
PropertyDescriptorCollection__ctor_m132BE5B53DC73850841F2AB9A6633F4626C538BC(__this, L_0, /*hidden argument*/NULL);
|
|
bool L_1 = ___readOnly1;
|
|
__this->set_readOnly_9(L_1);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::.ctor(System.ComponentModel.PropertyDescriptor[],System.Int32,System.String[],System.Collections.IComparer)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection__ctor_m0BD142D7B2CAD889393CC69ADA2233984768DABB (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* ___properties0, int32_t ___propCount1, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___namedSort2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection__ctor_m0BD142D7B2CAD889393CC69ADA2233984768DABB_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
__this->set_propsOwned_7((bool)1);
|
|
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
|
|
__this->set_propsOwned_7((bool)0);
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_0 = ___namedSort2;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_1 = ___namedSort2;
|
|
NullCheck((RuntimeArray *)(RuntimeArray *)L_1);
|
|
RuntimeObject * L_2 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_1, /*hidden argument*/NULL);
|
|
__this->set_namedSort_5(((StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)Castclass((RuntimeObject*)L_2, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var)));
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
RuntimeObject* L_3 = ___comparer3;
|
|
__this->set_comparer_6(L_3);
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_4 = ___properties0;
|
|
__this->set_properties_3(L_4);
|
|
int32_t L_5 = ___propCount1;
|
|
__this->set_propCount_4(L_5);
|
|
__this->set_needSort_8((bool)1);
|
|
return;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.PropertyDescriptorCollection::get_Count()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PropertyDescriptorCollection_get_Count_mAA1EA8D4BE590EE7F7E469876FB503F2A0F0E4B0 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->get_propCount_4();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.ComponentModel.PropertyDescriptor System.ComponentModel.PropertyDescriptorCollection::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * PropertyDescriptorCollection_get_Item_mD0F537639842BDFC56F142C00A4041CF598D26C2 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection_get_Item_mD0F537639842BDFC56F142C00A4041CF598D26C2_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = ___index0;
|
|
int32_t L_1 = __this->get_propCount_4();
|
|
if ((((int32_t)L_0) < ((int32_t)L_1)))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * L_2 = (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF *)il2cpp_codegen_object_new(IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var);
|
|
IndexOutOfRangeException__ctor_m17448AB4B27BC9D8AEB4605CDB0EA053626ABEC1(L_2, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, PropertyDescriptorCollection_get_Item_mD0F537639842BDFC56F142C00A4041CF598D26C2_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
PropertyDescriptorCollection_EnsurePropsOwned_mA7CDF7318480D4512B76733D3E1DF9EAE6C378A1(__this, /*hidden argument*/NULL);
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_3 = __this->get_properties_3();
|
|
int32_t L_4 = ___index0;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.ComponentModel.PropertyDescriptor System.ComponentModel.PropertyDescriptorCollection::get_Item(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * PropertyDescriptorCollection_get_Item_m2FEEB6EF3922067EC403A4261D4FB6E77843F628 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, String_t* ___name0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___name0;
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_1 = VirtFuncInvoker2< PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *, String_t*, bool >::Invoke(33 /* System.ComponentModel.PropertyDescriptor System.ComponentModel.PropertyDescriptorCollection::Find(System.String,System.Boolean) */, __this, L_0, (bool)0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.PropertyDescriptorCollection::Add(System.ComponentModel.PropertyDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PropertyDescriptorCollection_Add_m4EC994159DE3EC1B05CCD9186099D7935FF3ED33 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection_Add_m4EC994159DE3EC1B05CCD9186099D7935FF3ED33_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
bool L_0 = __this->get_readOnly_9();
|
|
if (!L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_1 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
|
|
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_1, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, PropertyDescriptorCollection_Add_m4EC994159DE3EC1B05CCD9186099D7935FF3ED33_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t L_2 = __this->get_propCount_4();
|
|
PropertyDescriptorCollection_EnsureSize_mCCF9502C5BE2212F88FDC6507E598175CF1298BA(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1)), /*hidden argument*/NULL);
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_3 = __this->get_properties_3();
|
|
int32_t L_4 = __this->get_propCount_4();
|
|
V_0 = L_4;
|
|
int32_t L_5 = V_0;
|
|
__this->set_propCount_4(((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)));
|
|
int32_t L_6 = V_0;
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_7 = ___value0;
|
|
NullCheck(L_3);
|
|
ArrayElementTypeCheck (L_3, L_7);
|
|
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)L_7);
|
|
int32_t L_8 = __this->get_propCount_4();
|
|
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1));
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::Clear()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection_Clear_mAD94D5BF4918591FEE475B3FC15A64729F89A3DE (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection_Clear_mAD94D5BF4918591FEE475B3FC15A64729F89A3DE_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
bool L_0 = __this->get_readOnly_9();
|
|
if (!L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_1 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
|
|
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_1, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, PropertyDescriptorCollection_Clear_mAD94D5BF4918591FEE475B3FC15A64729F89A3DE_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
__this->set_propCount_4(0);
|
|
__this->set_cachedFoundProperties_1((RuntimeObject*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.PropertyDescriptorCollection::Contains(System.ComponentModel.PropertyDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PropertyDescriptorCollection_Contains_m8262E7DEBA9D0C9496CE3DDA85BC1F1995F18DBA (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___value0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_0 = ___value0;
|
|
int32_t L_1 = PropertyDescriptorCollection_IndexOf_mFBCAE0B916F2BF733D494020EBA7EFEEEFC20A45(__this, L_0, /*hidden argument*/NULL);
|
|
return (bool)((((int32_t)((((int32_t)L_1) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::CopyTo(System.Array,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection_CopyTo_m7F65E93884A12E569B035774440FA977CB9D3A30 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
PropertyDescriptorCollection_EnsurePropsOwned_mA7CDF7318480D4512B76733D3E1DF9EAE6C378A1(__this, /*hidden argument*/NULL);
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_0 = __this->get_properties_3();
|
|
RuntimeArray * L_1 = ___array0;
|
|
int32_t L_2 = ___index1;
|
|
int32_t L_3 = PropertyDescriptorCollection_get_Count_mAA1EA8D4BE590EE7F7E469876FB503F2A0F0E4B0_inline(__this, /*hidden argument*/NULL);
|
|
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_0, 0, L_1, L_2, L_3, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::EnsurePropsOwned()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection_EnsurePropsOwned_mA7CDF7318480D4512B76733D3E1DF9EAE6C378A1 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection_EnsurePropsOwned_mA7CDF7318480D4512B76733D3E1DF9EAE6C378A1_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* V_0 = NULL;
|
|
{
|
|
bool L_0 = __this->get_propsOwned_7();
|
|
if (L_0)
|
|
{
|
|
goto IL_003e;
|
|
}
|
|
}
|
|
{
|
|
__this->set_propsOwned_7((bool)1);
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_1 = __this->get_properties_3();
|
|
if (!L_1)
|
|
{
|
|
goto IL_003e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = PropertyDescriptorCollection_get_Count_mAA1EA8D4BE590EE7F7E469876FB503F2A0F0E4B0_inline(__this, /*hidden argument*/NULL);
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_3 = (PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)SZArrayNew(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F_il2cpp_TypeInfo_var, (uint32_t)L_2);
|
|
V_0 = L_3;
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_4 = __this->get_properties_3();
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_5 = V_0;
|
|
int32_t L_6 = PropertyDescriptorCollection_get_Count_mAA1EA8D4BE590EE7F7E469876FB503F2A0F0E4B0_inline(__this, /*hidden argument*/NULL);
|
|
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_4, 0, (RuntimeArray *)(RuntimeArray *)L_5, 0, L_6, /*hidden argument*/NULL);
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_7 = V_0;
|
|
__this->set_properties_3(L_7);
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
bool L_8 = __this->get_needSort_8();
|
|
if (!L_8)
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
{
|
|
__this->set_needSort_8((bool)0);
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_9 = __this->get_namedSort_5();
|
|
PropertyDescriptorCollection_InternalSort_m5BEF1BE7A393A601E9E404644C037EB7552362C6(__this, L_9, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::EnsureSize(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection_EnsureSize_mCCF9502C5BE2212F88FDC6507E598175CF1298BA (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, int32_t ___sizeNeeded0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection_EnsureSize_mCCF9502C5BE2212F88FDC6507E598175CF1298BA_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* V_0 = NULL;
|
|
{
|
|
int32_t L_0 = ___sizeNeeded0;
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_1 = __this->get_properties_3();
|
|
NullCheck(L_1);
|
|
if ((((int32_t)L_0) > ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))))))
|
|
{
|
|
goto IL_000c;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_2 = __this->get_properties_3();
|
|
if (!L_2)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_3 = __this->get_properties_3();
|
|
NullCheck(L_3);
|
|
if ((((RuntimeArray*)L_3)->max_length))
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
__this->set_propCount_4(0);
|
|
int32_t L_4 = ___sizeNeeded0;
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_5 = (PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)SZArrayNew(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F_il2cpp_TypeInfo_var, (uint32_t)L_4);
|
|
__this->set_properties_3(L_5);
|
|
return;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
PropertyDescriptorCollection_EnsurePropsOwned_mA7CDF7318480D4512B76733D3E1DF9EAE6C378A1(__this, /*hidden argument*/NULL);
|
|
int32_t L_6 = ___sizeNeeded0;
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_7 = __this->get_properties_3();
|
|
NullCheck(L_7);
|
|
IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var);
|
|
int32_t L_8 = Math_Max_mA99E48BB021F2E4B62D4EA9F52EA6928EED618A2(L_6, ((int32_t)il2cpp_codegen_multiply((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))), (int32_t)2)), /*hidden argument*/NULL);
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_9 = (PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)SZArrayNew(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F_il2cpp_TypeInfo_var, (uint32_t)L_8);
|
|
V_0 = L_9;
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_10 = __this->get_properties_3();
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_11 = V_0;
|
|
int32_t L_12 = __this->get_propCount_4();
|
|
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_10, 0, (RuntimeArray *)(RuntimeArray *)L_11, 0, L_12, /*hidden argument*/NULL);
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_13 = V_0;
|
|
__this->set_properties_3(L_13);
|
|
return;
|
|
}
|
|
}
|
|
// System.ComponentModel.PropertyDescriptor System.ComponentModel.PropertyDescriptorCollection::Find(System.String,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * PropertyDescriptorCollection_Find_m5B0293378066DA6E64B89658470B49EC2767E3B8 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, String_t* ___name0, bool ___ignoreCase1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection_Find_m5B0293378066DA6E64B89658470B49EC2767E3B8_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * V_0 = NULL;
|
|
bool V_1 = false;
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * V_2 = NULL;
|
|
RuntimeObject * V_3 = NULL;
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * V_4 = NULL;
|
|
int32_t V_5 = 0;
|
|
Exception_t * __last_unhandled_exception = 0;
|
|
NO_UNUSED_WARNING (__last_unhandled_exception);
|
|
Exception_t * __exception_local = 0;
|
|
NO_UNUSED_WARNING (__exception_local);
|
|
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
|
|
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
|
|
NO_UNUSED_WARNING (__leave_targets);
|
|
{
|
|
V_0 = __this;
|
|
V_1 = (bool)0;
|
|
}
|
|
|
|
IL_0004:
|
|
try
|
|
{ // begin try (depth: 1)
|
|
{
|
|
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_0 = V_0;
|
|
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_0, (bool*)(&V_1), /*hidden argument*/NULL);
|
|
V_2 = (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)NULL;
|
|
RuntimeObject* L_1 = __this->get_cachedFoundProperties_1();
|
|
if (!L_1)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
bool L_2 = __this->get_cachedIgnoreCase_2();
|
|
bool L_3 = ___ignoreCase1;
|
|
if ((((int32_t)L_2) == ((int32_t)L_3)))
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
bool L_4 = ___ignoreCase1;
|
|
__this->set_cachedIgnoreCase_2(L_4);
|
|
bool L_5 = ___ignoreCase1;
|
|
HybridDictionary_t885F953154C575D3408650DCE5D0B76F1EE4E549 * L_6 = (HybridDictionary_t885F953154C575D3408650DCE5D0B76F1EE4E549 *)il2cpp_codegen_object_new(HybridDictionary_t885F953154C575D3408650DCE5D0B76F1EE4E549_il2cpp_TypeInfo_var);
|
|
HybridDictionary__ctor_mBA75388EDF5456916408D7D3954B6873D50BA2F1(L_6, L_5, /*hidden argument*/NULL);
|
|
__this->set_cachedFoundProperties_1(L_6);
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
RuntimeObject* L_7 = __this->get_cachedFoundProperties_1();
|
|
String_t* L_8 = ___name0;
|
|
NullCheck(L_7);
|
|
RuntimeObject * L_9 = InterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IDictionary::get_Item(System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_7, L_8);
|
|
V_3 = L_9;
|
|
RuntimeObject * L_10 = V_3;
|
|
if (!L_10)
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
RuntimeObject * L_11 = V_3;
|
|
V_4 = ((PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)CastclassClass((RuntimeObject*)L_11, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D_il2cpp_TypeInfo_var));
|
|
IL2CPP_LEAVE(0xE8, FINALLY_00de);
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
V_5 = 0;
|
|
goto IL_00cc;
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
bool L_12 = ___ignoreCase1;
|
|
if (!L_12)
|
|
{
|
|
goto IL_008f;
|
|
}
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_13 = __this->get_properties_3();
|
|
int32_t L_14 = V_5;
|
|
NullCheck(L_13);
|
|
int32_t L_15 = L_14;
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
|
|
NullCheck(L_16);
|
|
String_t* L_17 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, L_16);
|
|
String_t* L_18 = ___name0;
|
|
bool L_19 = String_Equals_m1A3302D7214F75FB06302101934BF3EE9282AA43(L_17, L_18, 5, /*hidden argument*/NULL);
|
|
if (!L_19)
|
|
{
|
|
goto IL_00c6;
|
|
}
|
|
}
|
|
|
|
IL_006e:
|
|
{
|
|
RuntimeObject* L_20 = __this->get_cachedFoundProperties_1();
|
|
String_t* L_21 = ___name0;
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_22 = __this->get_properties_3();
|
|
int32_t L_23 = V_5;
|
|
NullCheck(L_22);
|
|
int32_t L_24 = L_23;
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_25 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
|
|
NullCheck(L_20);
|
|
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(1 /* System.Void System.Collections.IDictionary::set_Item(System.Object,System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_20, L_21, L_25);
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_26 = __this->get_properties_3();
|
|
int32_t L_27 = V_5;
|
|
NullCheck(L_26);
|
|
int32_t L_28 = L_27;
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_29 = (L_26)->GetAt(static_cast<il2cpp_array_size_t>(L_28));
|
|
V_2 = L_29;
|
|
goto IL_00d9;
|
|
}
|
|
|
|
IL_008f:
|
|
{
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_30 = __this->get_properties_3();
|
|
int32_t L_31 = V_5;
|
|
NullCheck(L_30);
|
|
int32_t L_32 = L_31;
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_33 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_32));
|
|
NullCheck(L_33);
|
|
String_t* L_34 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, L_33);
|
|
String_t* L_35 = ___name0;
|
|
NullCheck(L_34);
|
|
bool L_36 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_34, L_35, /*hidden argument*/NULL);
|
|
if (!L_36)
|
|
{
|
|
goto IL_00c6;
|
|
}
|
|
}
|
|
|
|
IL_00a5:
|
|
{
|
|
RuntimeObject* L_37 = __this->get_cachedFoundProperties_1();
|
|
String_t* L_38 = ___name0;
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_39 = __this->get_properties_3();
|
|
int32_t L_40 = V_5;
|
|
NullCheck(L_39);
|
|
int32_t L_41 = L_40;
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_42 = (L_39)->GetAt(static_cast<il2cpp_array_size_t>(L_41));
|
|
NullCheck(L_37);
|
|
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(1 /* System.Void System.Collections.IDictionary::set_Item(System.Object,System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_37, L_38, L_42);
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_43 = __this->get_properties_3();
|
|
int32_t L_44 = V_5;
|
|
NullCheck(L_43);
|
|
int32_t L_45 = L_44;
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_46 = (L_43)->GetAt(static_cast<il2cpp_array_size_t>(L_45));
|
|
V_2 = L_46;
|
|
goto IL_00d9;
|
|
}
|
|
|
|
IL_00c6:
|
|
{
|
|
int32_t L_47 = V_5;
|
|
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_47, (int32_t)1));
|
|
}
|
|
|
|
IL_00cc:
|
|
{
|
|
int32_t L_48 = V_5;
|
|
int32_t L_49 = __this->get_propCount_4();
|
|
if ((((int32_t)L_48) < ((int32_t)L_49)))
|
|
{
|
|
goto IL_0054;
|
|
}
|
|
}
|
|
|
|
IL_00d9:
|
|
{
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_50 = V_2;
|
|
V_4 = L_50;
|
|
IL2CPP_LEAVE(0xE8, FINALLY_00de);
|
|
}
|
|
} // end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__last_unhandled_exception = (Exception_t *)e.ex;
|
|
goto FINALLY_00de;
|
|
}
|
|
|
|
FINALLY_00de:
|
|
{ // begin finally (depth: 1)
|
|
{
|
|
bool L_51 = V_1;
|
|
if (!L_51)
|
|
{
|
|
goto IL_00e7;
|
|
}
|
|
}
|
|
|
|
IL_00e1:
|
|
{
|
|
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_52 = V_0;
|
|
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_52, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_00e7:
|
|
{
|
|
IL2CPP_END_FINALLY(222)
|
|
}
|
|
} // end finally (depth: 1)
|
|
IL2CPP_CLEANUP(222)
|
|
{
|
|
IL2CPP_JUMP_TBL(0xE8, IL_00e8)
|
|
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
|
|
}
|
|
|
|
IL_00e8:
|
|
{
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_53 = V_4;
|
|
return L_53;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.PropertyDescriptorCollection::IndexOf(System.ComponentModel.PropertyDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PropertyDescriptorCollection_IndexOf_mFBCAE0B916F2BF733D494020EBA7EFEEEFC20A45 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection_IndexOf_mFBCAE0B916F2BF733D494020EBA7EFEEEFC20A45_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_0 = __this->get_properties_3();
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_1 = ___value0;
|
|
int32_t L_2 = __this->get_propCount_4();
|
|
int32_t L_3 = Array_IndexOf_TisPropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D_m6B97C4B67DCAF845EB45FF4CE843D62748AEB500(L_0, L_1, 0, L_2, /*hidden argument*/Array_IndexOf_TisPropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D_m6B97C4B67DCAF845EB45FF4CE843D62748AEB500_RuntimeMethod_var);
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::Insert(System.Int32,System.ComponentModel.PropertyDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection_Insert_m22DC9C6797AE20CFE2815DCB8C5A98A9A363BDCD (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, int32_t ___index0, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___value1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection_Insert_m22DC9C6797AE20CFE2815DCB8C5A98A9A363BDCD_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
bool L_0 = __this->get_readOnly_9();
|
|
if (!L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_1 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
|
|
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_1, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, PropertyDescriptorCollection_Insert_m22DC9C6797AE20CFE2815DCB8C5A98A9A363BDCD_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t L_2 = __this->get_propCount_4();
|
|
PropertyDescriptorCollection_EnsureSize_mCCF9502C5BE2212F88FDC6507E598175CF1298BA(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1)), /*hidden argument*/NULL);
|
|
int32_t L_3 = ___index0;
|
|
int32_t L_4 = __this->get_propCount_4();
|
|
if ((((int32_t)L_3) >= ((int32_t)L_4)))
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
{
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_5 = __this->get_properties_3();
|
|
int32_t L_6 = ___index0;
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_7 = __this->get_properties_3();
|
|
int32_t L_8 = ___index0;
|
|
int32_t L_9 = __this->get_propCount_4();
|
|
int32_t L_10 = ___index0;
|
|
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_5, L_6, (RuntimeArray *)(RuntimeArray *)L_7, ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)), ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)L_10)), /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_11 = __this->get_properties_3();
|
|
int32_t L_12 = ___index0;
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_13 = ___value1;
|
|
NullCheck(L_11);
|
|
ArrayElementTypeCheck (L_11, L_13);
|
|
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(L_12), (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)L_13);
|
|
int32_t L_14 = __this->get_propCount_4();
|
|
__this->set_propCount_4(((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)));
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::Remove(System.ComponentModel.PropertyDescriptor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection_Remove_mCFFC999272C8C7B4C325B6D32A9DA2FC6DABC997 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection_Remove_mCFFC999272C8C7B4C325B6D32A9DA2FC6DABC997_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
bool L_0 = __this->get_readOnly_9();
|
|
if (!L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_1 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
|
|
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_1, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, PropertyDescriptorCollection_Remove_mCFFC999272C8C7B4C325B6D32A9DA2FC6DABC997_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_2 = ___value0;
|
|
int32_t L_3 = PropertyDescriptorCollection_IndexOf_mFBCAE0B916F2BF733D494020EBA7EFEEEFC20A45(__this, L_2, /*hidden argument*/NULL);
|
|
V_0 = L_3;
|
|
int32_t L_4 = V_0;
|
|
if ((((int32_t)L_4) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = V_0;
|
|
PropertyDescriptorCollection_RemoveAt_m988ED89DD8C6F2D254BD664991461869786977F0(__this, L_5, /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::RemoveAt(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection_RemoveAt_m988ED89DD8C6F2D254BD664991461869786977F0 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection_RemoveAt_m988ED89DD8C6F2D254BD664991461869786977F0_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
bool L_0 = __this->get_readOnly_9();
|
|
if (!L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_1 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
|
|
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_1, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, PropertyDescriptorCollection_RemoveAt_m988ED89DD8C6F2D254BD664991461869786977F0_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t L_2 = ___index0;
|
|
int32_t L_3 = __this->get_propCount_4();
|
|
if ((((int32_t)L_2) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)1)))))
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
{
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_4 = __this->get_properties_3();
|
|
int32_t L_5 = ___index0;
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_6 = __this->get_properties_3();
|
|
int32_t L_7 = ___index0;
|
|
int32_t L_8 = __this->get_propCount_4();
|
|
int32_t L_9 = ___index0;
|
|
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_4, ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)), (RuntimeArray *)(RuntimeArray *)L_6, L_7, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)L_9)), (int32_t)1)), /*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_10 = __this->get_properties_3();
|
|
int32_t L_11 = __this->get_propCount_4();
|
|
NullCheck(L_10);
|
|
ArrayElementTypeCheck (L_10, NULL);
|
|
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)1))), (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)NULL);
|
|
int32_t L_12 = __this->get_propCount_4();
|
|
__this->set_propCount_4(((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)1)));
|
|
return;
|
|
}
|
|
}
|
|
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptorCollection::Sort()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * PropertyDescriptorCollection_Sort_m94911D9C6B8B6D56A156CC2508B673F360448E01 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection_Sort_m94911D9C6B8B6D56A156CC2508B673F360448E01_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_0 = __this->get_properties_3();
|
|
int32_t L_1 = __this->get_propCount_4();
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_2 = __this->get_namedSort_5();
|
|
RuntimeObject* L_3 = __this->get_comparer_6();
|
|
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_4 = (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *)il2cpp_codegen_object_new(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2_il2cpp_TypeInfo_var);
|
|
PropertyDescriptorCollection__ctor_m0BD142D7B2CAD889393CC69ADA2233984768DABB(L_4, L_0, L_1, L_2, L_3, /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptorCollection::Sort(System.String[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * PropertyDescriptorCollection_Sort_mCA6419FA5C73054D08EC62386E64C864D26C392A (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___names0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection_Sort_mCA6419FA5C73054D08EC62386E64C864D26C392A_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_0 = __this->get_properties_3();
|
|
int32_t L_1 = __this->get_propCount_4();
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_2 = ___names0;
|
|
RuntimeObject* L_3 = __this->get_comparer_6();
|
|
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_4 = (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *)il2cpp_codegen_object_new(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2_il2cpp_TypeInfo_var);
|
|
PropertyDescriptorCollection__ctor_m0BD142D7B2CAD889393CC69ADA2233984768DABB(L_4, L_0, L_1, L_2, L_3, /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptorCollection::Sort(System.String[],System.Collections.IComparer)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * PropertyDescriptorCollection_Sort_m1EE8AE69D539F93F80DC64F33DF486159E973FF6 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___names0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection_Sort_m1EE8AE69D539F93F80DC64F33DF486159E973FF6_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_0 = __this->get_properties_3();
|
|
int32_t L_1 = __this->get_propCount_4();
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_2 = ___names0;
|
|
RuntimeObject* L_3 = ___comparer1;
|
|
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_4 = (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *)il2cpp_codegen_object_new(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2_il2cpp_TypeInfo_var);
|
|
PropertyDescriptorCollection__ctor_m0BD142D7B2CAD889393CC69ADA2233984768DABB(L_4, L_0, L_1, L_2, L_3, /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptorCollection::Sort(System.Collections.IComparer)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * PropertyDescriptorCollection_Sort_m5D5FDFB82DC0E6343F47B64B185E70D8A349F974 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection_Sort_m5D5FDFB82DC0E6343F47B64B185E70D8A349F974_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_0 = __this->get_properties_3();
|
|
int32_t L_1 = __this->get_propCount_4();
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_2 = __this->get_namedSort_5();
|
|
RuntimeObject* L_3 = ___comparer0;
|
|
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_4 = (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *)il2cpp_codegen_object_new(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2_il2cpp_TypeInfo_var);
|
|
PropertyDescriptorCollection__ctor_m0BD142D7B2CAD889393CC69ADA2233984768DABB(L_4, L_0, L_1, L_2, L_3, /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::InternalSort(System.String[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection_InternalSort_m5BEF1BE7A393A601E9E404644C037EB7552362C6 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___names0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection_InternalSort_m5BEF1BE7A393A601E9E404644C037EB7552362C6_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * V_5 = NULL;
|
|
int32_t V_6 = 0;
|
|
{
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_0 = __this->get_properties_3();
|
|
if (!L_0)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_1 = __this->get_properties_3();
|
|
NullCheck(L_1);
|
|
if ((((RuntimeArray*)L_1)->max_length))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
RuntimeObject* L_2 = __this->get_comparer_6();
|
|
PropertyDescriptorCollection_InternalSort_m05765A385A5F324219F60E3880193230BCCE8863(__this, L_2, /*hidden argument*/NULL);
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_3 = ___names0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_00d0;
|
|
}
|
|
}
|
|
{
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_4 = ___names0;
|
|
NullCheck(L_4);
|
|
if (!(((RuntimeArray*)L_4)->max_length))
|
|
{
|
|
goto IL_00d0;
|
|
}
|
|
}
|
|
{
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_5 = __this->get_properties_3();
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_6 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
|
|
ArrayList__ctor_m5BD62A8348AB3A2F573860E81A181B5376AF8FA1(L_6, (RuntimeObject*)(RuntimeObject*)L_5, /*hidden argument*/NULL);
|
|
V_0 = L_6;
|
|
V_1 = 0;
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_7 = __this->get_properties_3();
|
|
NullCheck(L_7);
|
|
V_2 = (((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length))));
|
|
V_3 = 0;
|
|
goto IL_0097;
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
V_4 = 0;
|
|
goto IL_008e;
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_8 = V_0;
|
|
int32_t L_9 = V_4;
|
|
NullCheck(L_8);
|
|
RuntimeObject * L_10 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_8, L_9);
|
|
V_5 = ((PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)CastclassClass((RuntimeObject*)L_10, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D_il2cpp_TypeInfo_var));
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_11 = V_5;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0088;
|
|
}
|
|
}
|
|
{
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_12 = V_5;
|
|
NullCheck(L_12);
|
|
String_t* L_13 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, L_12);
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_14 = ___names0;
|
|
int32_t L_15 = V_3;
|
|
NullCheck(L_14);
|
|
int32_t L_16 = L_15;
|
|
String_t* L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
|
|
NullCheck(L_13);
|
|
bool L_18 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_13, L_17, /*hidden argument*/NULL);
|
|
if (!L_18)
|
|
{
|
|
goto IL_0088;
|
|
}
|
|
}
|
|
{
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_19 = __this->get_properties_3();
|
|
int32_t L_20 = V_1;
|
|
int32_t L_21 = L_20;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1));
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_22 = V_5;
|
|
NullCheck(L_19);
|
|
ArrayElementTypeCheck (L_19, L_22);
|
|
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(L_21), (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)L_22);
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_23 = V_0;
|
|
int32_t L_24 = V_4;
|
|
NullCheck(L_23);
|
|
VirtActionInvoker2< int32_t, RuntimeObject * >::Invoke(28 /* System.Void System.Collections.ArrayList::set_Item(System.Int32,System.Object) */, L_23, L_24, NULL);
|
|
goto IL_0093;
|
|
}
|
|
|
|
IL_0088:
|
|
{
|
|
int32_t L_25 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
|
|
}
|
|
|
|
IL_008e:
|
|
{
|
|
int32_t L_26 = V_4;
|
|
int32_t L_27 = V_2;
|
|
if ((((int32_t)L_26) < ((int32_t)L_27)))
|
|
{
|
|
goto IL_004b;
|
|
}
|
|
}
|
|
|
|
IL_0093:
|
|
{
|
|
int32_t L_28 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1));
|
|
}
|
|
|
|
IL_0097:
|
|
{
|
|
int32_t L_29 = V_3;
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_30 = ___names0;
|
|
NullCheck(L_30);
|
|
if ((((int32_t)L_29) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_30)->max_length)))))))
|
|
{
|
|
goto IL_0046;
|
|
}
|
|
}
|
|
{
|
|
V_6 = 0;
|
|
goto IL_00cb;
|
|
}
|
|
|
|
IL_00a2:
|
|
{
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_31 = V_0;
|
|
int32_t L_32 = V_6;
|
|
NullCheck(L_31);
|
|
RuntimeObject * L_33 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_31, L_32);
|
|
if (!L_33)
|
|
{
|
|
goto IL_00c5;
|
|
}
|
|
}
|
|
{
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_34 = __this->get_properties_3();
|
|
int32_t L_35 = V_1;
|
|
int32_t L_36 = L_35;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1));
|
|
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_37 = V_0;
|
|
int32_t L_38 = V_6;
|
|
NullCheck(L_37);
|
|
RuntimeObject * L_39 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_37, L_38);
|
|
NullCheck(L_34);
|
|
ArrayElementTypeCheck (L_34, ((PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)CastclassClass((RuntimeObject*)L_39, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D_il2cpp_TypeInfo_var)));
|
|
(L_34)->SetAt(static_cast<il2cpp_array_size_t>(L_36), (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)((PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)CastclassClass((RuntimeObject*)L_39, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D_il2cpp_TypeInfo_var)));
|
|
}
|
|
|
|
IL_00c5:
|
|
{
|
|
int32_t L_40 = V_6;
|
|
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)1));
|
|
}
|
|
|
|
IL_00cb:
|
|
{
|
|
int32_t L_41 = V_6;
|
|
int32_t L_42 = V_2;
|
|
if ((((int32_t)L_41) < ((int32_t)L_42)))
|
|
{
|
|
goto IL_00a2;
|
|
}
|
|
}
|
|
|
|
IL_00d0:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::InternalSort(System.Collections.IComparer)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection_InternalSort_m05765A385A5F324219F60E3880193230BCCE8863 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, RuntimeObject* ___sorter0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection_InternalSort_m05765A385A5F324219F60E3880193230BCCE8863_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = ___sorter0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
|
|
TypeDescriptor_SortDescriptorArray_mF1BF8FDE18108198B6E5CF6B31909A7F544F649C(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_1 = __this->get_properties_3();
|
|
RuntimeObject* L_2 = ___sorter0;
|
|
Array_Sort_mF1CCD5D84D8D9EF9872FAB34A474119942AD495A((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Collections.IEnumerator System.ComponentModel.PropertyDescriptorCollection::GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* PropertyDescriptorCollection_GetEnumerator_mFAB322230D6F91D8B5076910CF9D6107DBC768BD (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection_GetEnumerator_mFAB322230D6F91D8B5076910CF9D6107DBC768BD_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* V_0 = NULL;
|
|
{
|
|
PropertyDescriptorCollection_EnsurePropsOwned_mA7CDF7318480D4512B76733D3E1DF9EAE6C378A1(__this, /*hidden argument*/NULL);
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_0 = __this->get_properties_3();
|
|
NullCheck(L_0);
|
|
int32_t L_1 = __this->get_propCount_4();
|
|
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))))) == ((int32_t)L_1)))
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = __this->get_propCount_4();
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_3 = (PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)SZArrayNew(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F_il2cpp_TypeInfo_var, (uint32_t)L_2);
|
|
V_0 = L_3;
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_4 = __this->get_properties_3();
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_5 = V_0;
|
|
int32_t L_6 = __this->get_propCount_4();
|
|
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_4, 0, (RuntimeArray *)(RuntimeArray *)L_5, 0, L_6, /*hidden argument*/NULL);
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_7 = V_0;
|
|
NullCheck((RuntimeArray *)(RuntimeArray *)L_7);
|
|
RuntimeObject* L_8 = Array_GetEnumerator_m3BD9ACCA9512DA3687C8369BF999BA2916F0EA15((RuntimeArray *)(RuntimeArray *)L_7, /*hidden argument*/NULL);
|
|
return L_8;
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_9 = __this->get_properties_3();
|
|
NullCheck((RuntimeArray *)(RuntimeArray *)L_9);
|
|
RuntimeObject* L_10 = Array_GetEnumerator_m3BD9ACCA9512DA3687C8369BF999BA2916F0EA15((RuntimeArray *)(RuntimeArray *)L_9, /*hidden argument*/NULL);
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.PropertyDescriptorCollection::System.Collections.ICollection.get_Count()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PropertyDescriptorCollection_System_Collections_ICollection_get_Count_m4A8DC9D8BD368E2998FB84F1E764B746AB406C2D (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = PropertyDescriptorCollection_get_Count_mAA1EA8D4BE590EE7F7E469876FB503F2A0F0E4B0_inline(__this, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.PropertyDescriptorCollection::System.Collections.ICollection.get_IsSynchronized()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PropertyDescriptorCollection_System_Collections_ICollection_get_IsSynchronized_m5551D26F9CA60BEC4194DAEFDE8C34B016C84EB9 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.PropertyDescriptorCollection::System.Collections.ICollection.get_SyncRoot()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * PropertyDescriptorCollection_System_Collections_ICollection_get_SyncRoot_m0100C4A2C9B18F6E1A201E29C6F12D1F265DCA4A (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return NULL;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::System.Collections.IDictionary.Add(System.Object,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection_System_Collections_IDictionary_Add_m76AF67DE822D94A046E14382F1841C835EADA094 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection_System_Collections_IDictionary_Add_m76AF67DE822D94A046E14382F1841C835EADA094_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * V_0 = NULL;
|
|
{
|
|
RuntimeObject * L_0 = ___value1;
|
|
V_0 = ((PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)IsInstClass((RuntimeObject*)L_0, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D_il2cpp_TypeInfo_var));
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_1 = V_0;
|
|
if (L_1)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_2 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_2, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, PropertyDescriptorCollection_System_Collections_IDictionary_Add_m76AF67DE822D94A046E14382F1841C835EADA094_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_3 = V_0;
|
|
PropertyDescriptorCollection_Add_m4EC994159DE3EC1B05CCD9186099D7935FF3ED33(__this, L_3, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::System.Collections.IDictionary.Clear()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection_System_Collections_IDictionary_Clear_mCD2DED6F88201D0839F266BA27ADA4C9CDAD8E7C (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
PropertyDescriptorCollection_Clear_mAD94D5BF4918591FEE475B3FC15A64729F89A3DE(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.PropertyDescriptorCollection::System.Collections.IDictionary.Contains(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PropertyDescriptorCollection_System_Collections_IDictionary_Contains_m2BF92AB5B0E6DE71F06C21D6A79F40EEB66DE53A (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, RuntimeObject * ___key0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection_System_Collections_IDictionary_Contains_m2BF92AB5B0E6DE71F06C21D6A79F40EEB66DE53A_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject * L_0 = ___key0;
|
|
if (!((String_t*)IsInstSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_1 = ___key0;
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_2 = VirtFuncInvoker1< PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *, String_t* >::Invoke(32 /* System.ComponentModel.PropertyDescriptor System.ComponentModel.PropertyDescriptorCollection::get_Item(System.String) */, __this, ((String_t*)CastclassSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var)));
|
|
return (bool)((!(((RuntimeObject*)(PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)L_2) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Collections.IDictionaryEnumerator System.ComponentModel.PropertyDescriptorCollection::System.Collections.IDictionary.GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* PropertyDescriptorCollection_System_Collections_IDictionary_GetEnumerator_m8BAA6008671D58327735A8CAF9F5916EAFA4B2F2 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection_System_Collections_IDictionary_GetEnumerator_m8BAA6008671D58327735A8CAF9F5916EAFA4B2F2_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PropertyDescriptorEnumerator_t8DE08E0C89BAD17FE8FD71FD3159C80833CE2D9D * L_0 = (PropertyDescriptorEnumerator_t8DE08E0C89BAD17FE8FD71FD3159C80833CE2D9D *)il2cpp_codegen_object_new(PropertyDescriptorEnumerator_t8DE08E0C89BAD17FE8FD71FD3159C80833CE2D9D_il2cpp_TypeInfo_var);
|
|
PropertyDescriptorEnumerator__ctor_mD766982CCA3E90487BD77781B1EA0C29F9477B7D(L_0, __this, /*hidden argument*/NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.PropertyDescriptorCollection::System.Collections.IDictionary.get_IsFixedSize()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PropertyDescriptorCollection_System_Collections_IDictionary_get_IsFixedSize_m1386817891616EA92F2E88F2BA31DF67BF82E8B3 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->get_readOnly_9();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.PropertyDescriptorCollection::System.Collections.IDictionary.get_IsReadOnly()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PropertyDescriptorCollection_System_Collections_IDictionary_get_IsReadOnly_mCA0E47965BC12EE580E220E38B71BB97CC2807C9 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->get_readOnly_9();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.PropertyDescriptorCollection::System.Collections.IDictionary.get_Item(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * PropertyDescriptorCollection_System_Collections_IDictionary_get_Item_m55B7B06FCFD64E0549A25F402E880015FA39237D (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, RuntimeObject * ___key0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection_System_Collections_IDictionary_get_Item_m55B7B06FCFD64E0549A25F402E880015FA39237D_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject * L_0 = ___key0;
|
|
if (!((String_t*)IsInstSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_1 = ___key0;
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_2 = VirtFuncInvoker1< PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *, String_t* >::Invoke(32 /* System.ComponentModel.PropertyDescriptor System.ComponentModel.PropertyDescriptorCollection::get_Item(System.String) */, __this, ((String_t*)CastclassSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var)));
|
|
return L_2;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
return NULL;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::System.Collections.IDictionary.set_Item(System.Object,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection_System_Collections_IDictionary_set_Item_m45799DA37784A9840E8BCA5FA746535CDD86D696 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection_System_Collections_IDictionary_set_Item_m45799DA37784A9840E8BCA5FA746535CDD86D696_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
bool L_0 = __this->get_readOnly_9();
|
|
if (!L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_1 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
|
|
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_1, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, PropertyDescriptorCollection_System_Collections_IDictionary_set_Item_m45799DA37784A9840E8BCA5FA746535CDD86D696_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
RuntimeObject * L_2 = ___value1;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_3 = ___value1;
|
|
if (((PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)IsInstClass((RuntimeObject*)L_3, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_4, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, PropertyDescriptorCollection_System_Collections_IDictionary_set_Item_m45799DA37784A9840E8BCA5FA746535CDD86D696_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
V_0 = (-1);
|
|
RuntimeObject * L_5 = ___key0;
|
|
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_5, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_6 = ___key0;
|
|
V_0 = ((*(int32_t*)((int32_t*)UnBox(L_6, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var))));
|
|
int32_t L_7 = V_0;
|
|
if ((((int32_t)L_7) < ((int32_t)0)))
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_8 = V_0;
|
|
int32_t L_9 = __this->get_propCount_4();
|
|
if ((((int32_t)L_8) < ((int32_t)L_9)))
|
|
{
|
|
goto IL_008c;
|
|
}
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * L_10 = (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF *)il2cpp_codegen_object_new(IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var);
|
|
IndexOutOfRangeException__ctor_m17448AB4B27BC9D8AEB4605CDB0EA053626ABEC1(L_10, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, PropertyDescriptorCollection_System_Collections_IDictionary_set_Item_m45799DA37784A9840E8BCA5FA746535CDD86D696_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
RuntimeObject * L_11 = ___key0;
|
|
if (!((String_t*)IsInstSealed((RuntimeObject*)L_11, String_t_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0081;
|
|
}
|
|
}
|
|
{
|
|
V_1 = 0;
|
|
goto IL_0076;
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_12 = __this->get_properties_3();
|
|
int32_t L_13 = V_1;
|
|
NullCheck(L_12);
|
|
int32_t L_14 = L_13;
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
|
|
NullCheck(L_15);
|
|
String_t* L_16 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, L_15);
|
|
RuntimeObject * L_17 = ___key0;
|
|
NullCheck(L_16);
|
|
bool L_18 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_16, ((String_t*)CastclassSealed((RuntimeObject*)L_17, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
|
|
if (!L_18)
|
|
{
|
|
goto IL_0072;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_19 = V_1;
|
|
V_0 = L_19;
|
|
goto IL_008c;
|
|
}
|
|
|
|
IL_0072:
|
|
{
|
|
int32_t L_20 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1));
|
|
}
|
|
|
|
IL_0076:
|
|
{
|
|
int32_t L_21 = V_1;
|
|
int32_t L_22 = __this->get_propCount_4();
|
|
if ((((int32_t)L_21) < ((int32_t)L_22)))
|
|
{
|
|
goto IL_0054;
|
|
}
|
|
}
|
|
{
|
|
goto IL_008c;
|
|
}
|
|
|
|
IL_0081:
|
|
{
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_23 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_23, _stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_23, PropertyDescriptorCollection_System_Collections_IDictionary_set_Item_m45799DA37784A9840E8BCA5FA746535CDD86D696_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_008c:
|
|
{
|
|
int32_t L_24 = V_0;
|
|
if ((!(((uint32_t)L_24) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_009e;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_25 = ___value1;
|
|
PropertyDescriptorCollection_Add_m4EC994159DE3EC1B05CCD9186099D7935FF3ED33(__this, ((PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)CastclassClass((RuntimeObject*)L_25, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
|
|
IL_009e:
|
|
{
|
|
PropertyDescriptorCollection_EnsurePropsOwned_mA7CDF7318480D4512B76733D3E1DF9EAE6C378A1(__this, /*hidden argument*/NULL);
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_26 = __this->get_properties_3();
|
|
int32_t L_27 = V_0;
|
|
RuntimeObject * L_28 = ___value1;
|
|
NullCheck(L_26);
|
|
ArrayElementTypeCheck (L_26, ((PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)CastclassClass((RuntimeObject*)L_28, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D_il2cpp_TypeInfo_var)));
|
|
(L_26)->SetAt(static_cast<il2cpp_array_size_t>(L_27), (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)((PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)CastclassClass((RuntimeObject*)L_28, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D_il2cpp_TypeInfo_var)));
|
|
RuntimeObject* L_29 = __this->get_cachedFoundProperties_1();
|
|
if (!L_29)
|
|
{
|
|
goto IL_00cf;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_30 = ___key0;
|
|
if (!((String_t*)IsInstSealed((RuntimeObject*)L_30, String_t_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_00cf;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_31 = __this->get_cachedFoundProperties_1();
|
|
RuntimeObject * L_32 = ___key0;
|
|
RuntimeObject * L_33 = ___value1;
|
|
NullCheck(L_31);
|
|
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(1 /* System.Void System.Collections.IDictionary::set_Item(System.Object,System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_31, L_32, L_33);
|
|
}
|
|
|
|
IL_00cf:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Collections.ICollection System.ComponentModel.PropertyDescriptorCollection::System.Collections.IDictionary.get_Keys()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* PropertyDescriptorCollection_System_Collections_IDictionary_get_Keys_mB81D8CBB4D00C6C8588A02D1DAB7936E7A41DD48 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection_System_Collections_IDictionary_get_Keys_mB81D8CBB4D00C6C8588A02D1DAB7936E7A41DD48_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = __this->get_propCount_4();
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_1 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)L_0);
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_2 = V_0;
|
|
int32_t L_3 = V_1;
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_4 = __this->get_properties_3();
|
|
int32_t L_5 = V_1;
|
|
NullCheck(L_4);
|
|
int32_t L_6 = L_5;
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
|
|
NullCheck(L_7);
|
|
String_t* L_8 = VirtFuncInvoker0< String_t* >::Invoke(10 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, L_7);
|
|
NullCheck(L_2);
|
|
ArrayElementTypeCheck (L_2, L_8);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (String_t*)L_8);
|
|
int32_t L_9 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
int32_t L_10 = V_1;
|
|
int32_t L_11 = __this->get_propCount_4();
|
|
if ((((int32_t)L_10) < ((int32_t)L_11)))
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_12 = V_0;
|
|
return (RuntimeObject*)L_12;
|
|
}
|
|
}
|
|
// System.Collections.ICollection System.ComponentModel.PropertyDescriptorCollection::System.Collections.IDictionary.get_Values()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* PropertyDescriptorCollection_System_Collections_IDictionary_get_Values_m8753BBF5531A5623FDEB4BB961BCB0CBFC69EF24 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection_System_Collections_IDictionary_get_Values_m8753BBF5531A5623FDEB4BB961BCB0CBFC69EF24_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* V_0 = NULL;
|
|
{
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_0 = __this->get_properties_3();
|
|
NullCheck(L_0);
|
|
int32_t L_1 = __this->get_propCount_4();
|
|
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))))) == ((int32_t)L_1)))
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = __this->get_propCount_4();
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_3 = (PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)SZArrayNew(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F_il2cpp_TypeInfo_var, (uint32_t)L_2);
|
|
V_0 = L_3;
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_4 = __this->get_properties_3();
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_5 = V_0;
|
|
int32_t L_6 = __this->get_propCount_4();
|
|
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_4, 0, (RuntimeArray *)(RuntimeArray *)L_5, 0, L_6, /*hidden argument*/NULL);
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_7 = V_0;
|
|
return (RuntimeObject*)L_7;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_8 = __this->get_properties_3();
|
|
NullCheck((RuntimeArray *)(RuntimeArray *)L_8);
|
|
RuntimeObject * L_9 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_8, /*hidden argument*/NULL);
|
|
return ((RuntimeObject*)Castclass((RuntimeObject*)L_9, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var));
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::System.Collections.IDictionary.Remove(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection_System_Collections_IDictionary_Remove_mEE3E78216CC8C1192BEF19A0610D5345808B1D76 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, RuntimeObject * ___key0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection_System_Collections_IDictionary_Remove_mEE3E78216CC8C1192BEF19A0610D5345808B1D76_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * V_0 = NULL;
|
|
{
|
|
RuntimeObject * L_0 = ___key0;
|
|
if (!((String_t*)IsInstSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_1 = ___key0;
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_2 = VirtFuncInvoker1< PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *, String_t* >::Invoke(32 /* System.ComponentModel.PropertyDescriptor System.ComponentModel.PropertyDescriptorCollection::get_Item(System.String) */, __this, ((String_t*)CastclassSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var)));
|
|
V_0 = L_2;
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_4 = V_0;
|
|
InterfaceActionInvoker1< RuntimeObject * >::Invoke(9 /* System.Void System.Collections.IList::Remove(System.Object) */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, __this, L_4);
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Collections.IEnumerator System.ComponentModel.PropertyDescriptorCollection::System.Collections.IEnumerable.GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* PropertyDescriptorCollection_System_Collections_IEnumerable_GetEnumerator_m98DD98C01E84C0A8729E0C7EEDC9265A4911FB61 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = VirtFuncInvoker0< RuntimeObject* >::Invoke(38 /* System.Collections.IEnumerator System.ComponentModel.PropertyDescriptorCollection::GetEnumerator() */, __this);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.PropertyDescriptorCollection::System.Collections.IList.Add(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PropertyDescriptorCollection_System_Collections_IList_Add_m7805DEADF351C068D3397DB5C6D84C639452B874 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection_System_Collections_IList_Add_m7805DEADF351C068D3397DB5C6D84C639452B874_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject * L_0 = ___value0;
|
|
int32_t L_1 = PropertyDescriptorCollection_Add_m4EC994159DE3EC1B05CCD9186099D7935FF3ED33(__this, ((PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)CastclassClass((RuntimeObject*)L_0, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::System.Collections.IList.Clear()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection_System_Collections_IList_Clear_mB8004EB4547BD17A52732BB53EE9D54FAB27C638 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
PropertyDescriptorCollection_Clear_mAD94D5BF4918591FEE475B3FC15A64729F89A3DE(__this, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.PropertyDescriptorCollection::System.Collections.IList.Contains(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PropertyDescriptorCollection_System_Collections_IList_Contains_m480A973ED000ECA6482E3BE2970009A09ED545FA (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection_System_Collections_IList_Contains_m480A973ED000ECA6482E3BE2970009A09ED545FA_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject * L_0 = ___value0;
|
|
bool L_1 = PropertyDescriptorCollection_Contains_m8262E7DEBA9D0C9496CE3DDA85BC1F1995F18DBA(__this, ((PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)CastclassClass((RuntimeObject*)L_0, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Int32 System.ComponentModel.PropertyDescriptorCollection::System.Collections.IList.IndexOf(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PropertyDescriptorCollection_System_Collections_IList_IndexOf_m5784A077E0E4C9936D1DD476E58374AD27063CF7 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection_System_Collections_IList_IndexOf_m5784A077E0E4C9936D1DD476E58374AD27063CF7_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject * L_0 = ___value0;
|
|
int32_t L_1 = PropertyDescriptorCollection_IndexOf_mFBCAE0B916F2BF733D494020EBA7EFEEEFC20A45(__this, ((PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)CastclassClass((RuntimeObject*)L_0, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::System.Collections.IList.Insert(System.Int32,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection_System_Collections_IList_Insert_m8B356017EBDC3A70B466B4787016840F89074F0D (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection_System_Collections_IList_Insert_m8B356017EBDC3A70B466B4787016840F89074F0D_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = ___index0;
|
|
RuntimeObject * L_1 = ___value1;
|
|
PropertyDescriptorCollection_Insert_m22DC9C6797AE20CFE2815DCB8C5A98A9A363BDCD(__this, L_0, ((PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)CastclassClass((RuntimeObject*)L_1, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.PropertyDescriptorCollection::System.Collections.IList.get_IsReadOnly()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PropertyDescriptorCollection_System_Collections_IList_get_IsReadOnly_mC37BCD9B3BE2F5B9773062BF82C3AA5D6645F227 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->get_readOnly_9();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean System.ComponentModel.PropertyDescriptorCollection::System.Collections.IList.get_IsFixedSize()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PropertyDescriptorCollection_System_Collections_IList_get_IsFixedSize_m56B5321D84E8B06C5A557009E62A7335A4EFA018 (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->get_readOnly_9();
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::System.Collections.IList.Remove(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection_System_Collections_IList_Remove_m23C0000AD3979585B0659FEBCDE0B3EFF1207FEC (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection_System_Collections_IList_Remove_m23C0000AD3979585B0659FEBCDE0B3EFF1207FEC_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject * L_0 = ___value0;
|
|
PropertyDescriptorCollection_Remove_mCFFC999272C8C7B4C325B6D32A9DA2FC6DABC997(__this, ((PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)CastclassClass((RuntimeObject*)L_0, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::System.Collections.IList.RemoveAt(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection_System_Collections_IList_RemoveAt_m9FD20F8FDF9167173D07E0FE7C22E0D3A85B781D (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___index0;
|
|
PropertyDescriptorCollection_RemoveAt_m988ED89DD8C6F2D254BD664991461869786977F0(__this, L_0, /*hidden argument*/NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Object System.ComponentModel.PropertyDescriptorCollection::System.Collections.IList.get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * PropertyDescriptorCollection_System_Collections_IList_get_Item_m444F1383137CD08C6AE33B93743C22970975B68B (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___index0;
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_1 = VirtFuncInvoker1< PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *, int32_t >::Invoke(31 /* System.ComponentModel.PropertyDescriptor System.ComponentModel.PropertyDescriptorCollection::get_Item(System.Int32) */, __this, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::System.Collections.IList.set_Item(System.Int32,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection_System_Collections_IList_set_Item_mC9C9476E42ADB9166CFD8FC7C7AA379EBB8F8E4B (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection_System_Collections_IList_set_Item_mC9C9476E42ADB9166CFD8FC7C7AA379EBB8F8E4B_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
bool L_0 = __this->get_readOnly_9();
|
|
if (!L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_1 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
|
|
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_1, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, PropertyDescriptorCollection_System_Collections_IList_set_Item_mC9C9476E42ADB9166CFD8FC7C7AA379EBB8F8E4B_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t L_2 = ___index0;
|
|
int32_t L_3 = __this->get_propCount_4();
|
|
if ((((int32_t)L_2) < ((int32_t)L_3)))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * L_4 = (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF *)il2cpp_codegen_object_new(IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var);
|
|
IndexOutOfRangeException__ctor_m17448AB4B27BC9D8AEB4605CDB0EA053626ABEC1(L_4, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, PropertyDescriptorCollection_System_Collections_IList_set_Item_mC9C9476E42ADB9166CFD8FC7C7AA379EBB8F8E4B_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
RuntimeObject * L_5 = ___value1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject * L_6 = ___value1;
|
|
if (((PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)IsInstClass((RuntimeObject*)L_6, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
|
|
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_7, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, PropertyDescriptorCollection_System_Collections_IList_set_Item_mC9C9476E42ADB9166CFD8FC7C7AA379EBB8F8E4B_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
PropertyDescriptorCollection_EnsurePropsOwned_mA7CDF7318480D4512B76733D3E1DF9EAE6C378A1(__this, /*hidden argument*/NULL);
|
|
PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F* L_8 = __this->get_properties_3();
|
|
int32_t L_9 = ___index0;
|
|
RuntimeObject * L_10 = ___value1;
|
|
NullCheck(L_8);
|
|
ArrayElementTypeCheck (L_8, ((PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)CastclassClass((RuntimeObject*)L_10, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D_il2cpp_TypeInfo_var)));
|
|
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(L_9), (PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)((PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D *)CastclassClass((RuntimeObject*)L_10, PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D_il2cpp_TypeInfo_var)));
|
|
return;
|
|
}
|
|
}
|
|
// System.Void System.ComponentModel.PropertyDescriptorCollection::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection__cctor_m5DE8BDE158CD72E98E2ADD9DB3151F931CC9FB0F (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (PropertyDescriptorCollection__cctor_m5DE8BDE158CD72E98E2ADD9DB3151F931CC9FB0F_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * L_0 = (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 *)il2cpp_codegen_object_new(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2_il2cpp_TypeInfo_var);
|
|
PropertyDescriptorCollection__ctor_m7DDFDE6996940ED1E0BF5073548E5C5B058D6D6D(L_0, (PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)(PropertyDescriptorU5BU5D_tBC9023EDDB37EAAAA6FB719C13CEF781F74B2C1F*)NULL, (bool)1, /*hidden argument*/NULL);
|
|
((PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2_StaticFields*)il2cpp_codegen_static_fields_for(PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2_il2cpp_TypeInfo_var))->set_Empty_0(L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* DescriptionAttribute_get_DescriptionValue_mD892D328BECCFE526144A4B778DCC2B4BC8D45CD_inline (DescriptionAttribute_t112C5FEAA03342D05BF40C1713ABF1C1848DEE75 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_description_1();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* AppDomainSetup_get_LicenseFile_mF15AC0328CB9C99BB56183BE934B0CB208066C18_inline (AppDomainSetup_t80DF2915BB100D4BD515920B49C959E9FA451306 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_license_file_5();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* AssemblyName_get_Name_m6EA5C18D2FF050D3AF58D4A21ED39D161DFF218B_inline (AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_name_0();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject* CredentialCache_get_DefaultCredentials_m669684689D1F69432F33D9B1E0ECF53080BB8CDC_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (CredentialCache_get_DefaultCredentials_m669684689D1F69432F33D9B1E0ECF53080BB8CDCSystem2_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(SystemNetworkCredential_t99999F24C6F16257357D06725EC0365F1666875F_il2cpp_TypeInfo_var);
|
|
SystemNetworkCredential_t99999F24C6F16257357D06725EC0365F1666875F * L_0 = ((SystemNetworkCredential_t99999F24C6F16257357D06725EC0365F1666875F_StaticFields*)il2cpp_codegen_static_fields_for(SystemNetworkCredential_t99999F24C6F16257357D06725EC0365F1666875F_il2cpp_TypeInfo_var))->get_defaultCredential_3();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void WebClient_set_Credentials_mDF72650CD17893531D179F0BF2EBC33005CDF1C7_inline (WebClient_t0BFD938623FF98FA7EEE0031AB9E8293DD295F6A * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___value0;
|
|
__this->set_m_credentials_5(L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool DesignOnlyAttribute_get_IsDesignOnly_m68CBE6C4AD7154EE82ECD431849BA377756874CF_inline (DesignOnlyAttribute_tF2F25F5BECE1C4E68B1408838F04C5E096169D06 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->get_isDesignOnly_0();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool DesignTimeVisibleAttribute_get_Visible_m2C77A86E094E7B13E0D02EE77FE7AACC8C61A9BA_inline (DesignTimeVisibleAttribute_t4DD8962EAB8CFD8617D29303B7CFAD11E94B7466 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->get_visible_0();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* DesignerCategoryAttribute_get_Category_mDCB2D0B9A4F5FAD33260300979D52A4A9EC1C80D_inline (DesignerCategoryAttribute_tE79E5894EFE62D19C0CD24911AB16B9E996BA7FA * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_category_0();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t DesignerSerializationVisibilityAttribute_get_Visibility_mAE359C5749C4000C2A382C64B1DCFC3AC4B2FFC5_inline (DesignerSerializationVisibilityAttribute_tC50BBA28AF86896B3F34ECB9D56CB0A15BB4CBFA * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->get_visibility_4();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* DisplayNameAttribute_get_DisplayNameValue_m6A75B8CBDD8F55609180D19E79E74BF7656F9163_inline (DisplayNameAttribute_tE54161FBBAB6EF141BE2925404185B82B67C1BCE * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get__displayName_1();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool BrowsableAttribute_get_Browsable_m84931BFF3F51CB9F14D7B1D7548B796FE2DBB8D2_inline (BrowsableAttribute_t8A1A514FEE5735ADED64CCFE6E06A42E5CD872D1 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->get_browsable_3();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventDescriptorCollection_get_Count_mCAA673C0D2447E4823B34AE97D61BBC999A3E6BC_inline (EventDescriptorCollection_tB9FC461177F5D7FE0B79268C77569B36F4E1FF37 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->get_eventCount_5();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * ExtenderProvidedPropertyAttribute_get_ExtenderProperty_mB56FFEF61D8278AFFA0FB91710E1A37795738E47_inline (ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
PropertyDescriptor_tBF646D9949C932A92EEBD17E2EB6AD07D18B7C9D * L_0 = __this->get_extenderProperty_0();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject* ExtenderProvidedPropertyAttribute_get_Provider_m54BFFEFF3AF82BD3F36AC3A1D473FAC53CF368C6_inline (ExtenderProvidedPropertyAttribute_t6C2D566DED3E19650BDE6A721FB2ADF877670D68 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->get_provider_1();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline (String_t* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->get_m_stringLength_0();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool ImmutableObjectAttribute_get_Immutable_m3ABF9ED723E613F83942F47A4B2B3525430BD8A8_inline (ImmutableObjectAttribute_tEBEA4EFBB8E9D169AB4FFA9E7B4240969CD60492 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->get_immutable_3();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t InheritanceAttribute_get_InheritanceLevel_mA90C9C95D4B7D9AE8F4713F91A0ED806D68B06CC_inline (InheritanceAttribute_tBB0E10C86B9ECC652035969169FC556F1C6C8AC4 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->get_inheritanceLevel_0();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void Exception_set_HResult_m920DF8C728D8A0EC0759685FED890C775FA08B99_inline (Exception_t * __this, int32_t ___value0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___value0;
|
|
__this->set__HResult_11(L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Exception_t * Exception_get_InnerException_mCB68CC8CBF2540EF381CB17A4E4E3F6D0E33453F_inline (Exception_t * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Exception_t * L_0 = __this->get__innerException_4();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR intptr_t RuntimeTypeHandle_get_Value_m3277019DD9C1A7E5D22F075DDF8CBDFA4D146BC6_inline (RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
intptr_t L_0 = __this->get_value_0();
|
|
return (intptr_t)L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool ListBindableAttribute_get_ListBindable_m47F216E6B441C3BFA16C6A5AEAAB9F5B7A1C5968_inline (ListBindableAttribute_t455DF9EC6868D0DD6230ACF5C9094EBD078CE6F2 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->get_listBindable_3();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool LocalizableAttribute_get_IsLocalizable_m2160A758D5CD3DD22A533EDDA3CD6C6164047FDB_inline (LocalizableAttribute_t4436E5AD54CDF3F6ECB93A1EC4D23BA727C3B61F * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->get_isLocalizable_0();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* LookupBindingPropertiesAttribute_get_DataSource_mF21E618E0602FAB1E8976524DE0ACFDE66CFD589_inline (LookupBindingPropertiesAttribute_tFB30823108AD583FC2406504B9601C38AE83FD1B * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_dataSource_0();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool CultureInfo_get_IsReadOnly_m527F0337C516B57391AD20A70BF18FF7B0AC4849_inline (CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->get_m_isReadOnly_3();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_NumberDecimalSeparator_m1A9F946D267B5C2FC5982D34AF97D9AEB9C24A6E_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_numberDecimalSeparator_6();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_NumberGroupSeparator_mD995708E10C4CC55A19E7126E7A6C256A2DD1A35_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_numberGroupSeparator_7();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_TimeSeparator_m9D230E9D88CE3E2EBA24365775D2B4B2D5621C58_inline (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_timeSeparator_11();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* DateTimeFormatInfo_get_DateSeparator_m68C0C4E4320F22BAA7B6E6EFF7DD7349541D509C_inline (DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_dateSeparator_8();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* NumberFormatInfo_get_CurrencySymbol_mCF44B13A447FCDB66F697A9806635C02136A8A16_inline (NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_currencySymbol_10();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* MaskedTextProvider_get_Mask_m9074C064ACA7A4D2493E30218946B86BAFA028E5_inline (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_mask_25();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * MaskedTextProvider_get_Culture_mA9C9D928B88422DD51F7977FD7C6AAF45642E244_inline (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = __this->get_culture_19();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Il2CppChar MaskedTextProvider_get_PromptChar_m636160F1EE3A969F32E034B7FCD544D289DAA01A_inline (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppChar L_0 = __this->get_promptChar_27();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Il2CppChar MaskedTextProvider_get_PasswordChar_m0120F429F1FFA47566F840B17E557DFD6FDDD646_inline (MaskedTextProvider_t63841E659F7586B73FFADC5F0315F78E4D32B197 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppChar L_0 = __this->get_passwordChar_26();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t TypeDescriptor_get_MetadataVersion_m70C215D1B15DCBD67B58127EB0E6D7E6F5D020DC_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_method (TypeDescriptor_get_MetadataVersion_m70C215D1B15DCBD67B58127EB0E6D7E6F5D020DCSystem2_MetadataUsageId);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
IL2CPP_RUNTIME_CLASS_INIT(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var);
|
|
int32_t L_0 = ((TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_StaticFields*)il2cpp_codegen_static_fields_for(TypeDescriptor_tEA9B846104F636343B5CBF281E8E7BE6349843AF_il2cpp_TypeInfo_var))->get__metadataVersion_4();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool MergablePropertyAttribute_get_AllowMerge_m9E247DA31A96661FFC6A2D65AD98A2FC2E3EF9F1_inline (MergablePropertyAttribute_tB1134B55C33FBE33AD138D5E5CBDF4BAC6014909 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->get_allowMerge_3();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject* NestedContainer_get_Owner_mCAE82359E5FAC819D35995F5C15F42BE3C08F0C9_inline (NestedContainer_t08F11932945A6F531D1338CC5A05BAD8D99F8AE9 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->get__owner_6();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool NotifyParentPropertyAttribute_get_NotifyParent_mCAC54ACDD983201C0B33DD4028F3686E74AC2D0D_inline (NotifyParentPropertyAttribute_tCC257721622A29BC31EF1BFDC645E020EC7F4D68 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->get_notifyParent_3();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool ParenthesizePropertyNameAttribute_get_NeedParenthesis_mA9C52907633EF99582310AEA250035D4922DBBEA_inline (ParenthesizePropertyNameAttribute_t8C7EB4B9459246DAF7283E2D585D1D59F9886114 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->get_needParenthesis_1();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool PasswordPropertyTextAttribute_get_Password_mA428AA8DFBCEA6EFDEBC1C462E0C8615FF4BABCE_inline (PasswordPropertyTextAttribute_tF8F54903B400BCD43A3561510E32FA16FB1B33C1 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->get__password_3();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* TypeConverterAttribute_get_ConverterTypeName_m883941C77E14FC5B4A3E32DD8F59F11739D5D6D8_inline (TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_typeName_0();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* EditorAttribute_get_EditorBaseTypeName_m41C1E4DD17CF8A2C14A8C8A8E783687FF2C241D1_inline (EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_baseTypeName_0();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* EditorAttribute_get_EditorTypeName_m0C6CD2A9C2905C7E774825F77B26BF6D842C6090_inline (EditorAttribute_tD8A0A6A2F1AC5829C1C1CB563A83B1CD6D6273D5 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->get_typeName_1();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t PropertyDescriptorCollection_get_Count_mAA1EA8D4BE590EE7F7E469876FB503F2A0F0E4B0_inline (PropertyDescriptorCollection_t19FEFDD6CEF7609BB10282A4B52C3C09A04B41A2 * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->get_propCount_4();
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___index0;
|
|
int32_t L_1 = (int32_t)__this->get__size_2();
|
|
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentOutOfRangeException_mBA2AF20A35144E0C43CD721A22EAC9FCA15D6550(/*hidden argument*/NULL);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)__this->get__items_1();
|
|
int32_t L_3 = ___index0;
|
|
RuntimeObject * L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (int32_t)L_3);
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mD7829C7E8CFBEDD463B15A951CDE9B90A12CC55C_gshared_inline (Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD * __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject * L_0 = (RuntimeObject *)__this->get_current_3();
|
|
return L_0;
|
|
}
|
|
}
|