diff options
| author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2021-07-13 09:14:07 -0400 |
|---|---|---|
| committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2021-07-13 09:14:07 -0400 |
| commit | 8df578edb6d135796a48b219ecc7a7291c7ef460 (patch) | |
| tree | 3b52286c16465a10722399350e9e3dc1a2bc0a73 /build | |
| parent | bd20c2e1375ed5e32315ef5e292802bccc42f530 (diff) | |
| download | SMAPI-8df578edb6d135796a48b219ecc7a7291c7ef460.tar.gz SMAPI-8df578edb6d135796a48b219ecc7a7291c7ef460.tar.bz2 SMAPI-8df578edb6d135796a48b219ecc7a7291c7ef460.zip | |
migrate to Harmony 2.1 (#711)
Diffstat (limited to 'build')
| -rw-r--r-- | build/0Harmony.dll | bin | 115200 -> 802816 bytes | |||
| -rw-r--r-- | build/0Harmony.xml | 3130 | ||||
| -rw-r--r-- | build/common.targets | 1 | ||||
| -rw-r--r-- | build/prepare-install-package.targets | 1 |
4 files changed, 3132 insertions, 0 deletions
diff --git a/build/0Harmony.dll b/build/0Harmony.dll Binary files differindex 2e893d0e..1c5b9c09 100644 --- a/build/0Harmony.dll +++ b/build/0Harmony.dll diff --git a/build/0Harmony.xml b/build/0Harmony.xml new file mode 100644 index 00000000..ba2f340e --- /dev/null +++ b/build/0Harmony.xml @@ -0,0 +1,3130 @@ +<?xml version="1.0"?> +<doc> + <assembly> + <name>0Harmony</name> + </assembly> + <members> + <member name="T:HarmonyLib.DelegateTypeFactory"> + <summary>A factory to create delegate types</summary> + </member> + <member name="M:HarmonyLib.DelegateTypeFactory.#ctor"> + <summary>Default constructor</summary> + </member> + <member name="M:HarmonyLib.DelegateTypeFactory.CreateDelegateType(System.Reflection.MethodInfo)"> + <summary>Creates a delegate type for a method</summary> + <param name="method">The method</param> + <returns>The new delegate type</returns> + + </member> + <member name="T:HarmonyLib.GetterHandler`2"> + <summary>A getter delegate type</summary> + <typeparam name="T">Type that getter gets field/property value from</typeparam> + <typeparam name="S">Type of the value that getter gets</typeparam> + <param name="source">The instance get getter uses</param> + <returns>An delegate</returns> + + </member> + <member name="T:HarmonyLib.SetterHandler`2"> + <summary>A setter delegate type</summary> + <typeparam name="T">Type that setter sets field/property value for</typeparam> + <typeparam name="S">Type of the value that setter sets</typeparam> + <param name="source">The instance the setter uses</param> + <param name="value">The value the setter uses</param> + <returns>An delegate</returns> + + </member> + <member name="T:HarmonyLib.InstantiationHandler`1"> + <summary>A constructor delegate type</summary> + <typeparam name="T">Type that constructor creates</typeparam> + <returns>An delegate</returns> + + </member> + <member name="T:HarmonyLib.FastAccess"> + <summary>A helper class for fast access to getters and setters</summary> + </member> + <member name="M:HarmonyLib.FastAccess.CreateInstantiationHandler``1"> + <summary>Creates an instantiation delegate</summary> + <typeparam name="T">Type that constructor creates</typeparam> + <returns>The new instantiation delegate</returns> + + </member> + <member name="M:HarmonyLib.FastAccess.CreateGetterHandler``2(System.Reflection.PropertyInfo)"> + <summary>Creates an getter delegate for a property</summary> + <typeparam name="T">Type that getter reads property from</typeparam> + <typeparam name="S">Type of the property that gets accessed</typeparam> + <param name="propertyInfo">The property</param> + <returns>The new getter delegate</returns> + + </member> + <member name="M:HarmonyLib.FastAccess.CreateGetterHandler``2(System.Reflection.FieldInfo)"> + <summary>Creates an getter delegate for a field</summary> + <typeparam name="T">Type that getter reads field from</typeparam> + <typeparam name="S">Type of the field that gets accessed</typeparam> + <param name="fieldInfo">The field</param> + <returns>The new getter delegate</returns> + + </member> + <member name="M:HarmonyLib.FastAccess.CreateFieldGetter``2(System.String[])"> + <summary>Creates an getter delegate for a field (with a list of possible field names)</summary> + <typeparam name="T">Type that getter reads field/property from</typeparam> + <typeparam name="S">Type of the field/property that gets accessed</typeparam> + <param name="names">A list of possible field names</param> + <returns>The new getter delegate</returns> + + </member> + <member name="M:HarmonyLib.FastAccess.CreateSetterHandler``2(System.Reflection.PropertyInfo)"> + <summary>Creates an setter delegate</summary> + <typeparam name="T">Type that setter assigns property value to</typeparam> + <typeparam name="S">Type of the property that gets assigned</typeparam> + <param name="propertyInfo">The property</param> + <returns>The new setter delegate</returns> + + </member> + <member name="M:HarmonyLib.FastAccess.CreateSetterHandler``2(System.Reflection.FieldInfo)"> + <summary>Creates an setter delegate for a field</summary> + <typeparam name="T">Type that setter assigns field value to</typeparam> + <typeparam name="S">Type of the field that gets assigned</typeparam> + <param name="fieldInfo">The field</param> + <returns>The new getter delegate</returns> + + </member> + <member name="T:HarmonyLib.FastInvokeHandler"> + <summary>A delegate to invoke a method</summary> + <param name="target">The instance</param> + <param name="parameters">The method parameters</param> + <returns>The method result</returns> + </member> + <member name="T:HarmonyLib.MethodInvoker"> + <summary>A helper class to invoke method with delegates</summary> + </member> + <member name="M:HarmonyLib.MethodInvoker.GetHandler(System.Reflection.MethodInfo,System.Boolean)"> + <summary>Creates a fast invocation handler from a method</summary> + <param name="methodInfo">The method to invoke</param> + <param name="directBoxValueAccess">Controls if boxed value object is accessed/updated directly</param> + <returns>The <see cref="T:HarmonyLib.FastInvokeHandler"/></returns> + <remarks> + <para> + The <c>directBoxValueAccess</c> option controls how value types passed by reference (e.g. ref int, out my_struct) are handled in the arguments array + passed to the fast invocation handler. + Since the arguments array is an object array, any value types contained within it are actually references to a boxed value object. + Like any other object, there can be other references to such boxed value objects, other than the reference within the arguments array. + <example>For example, + <code> + var val = 5; + var box = (object)val; + var arr = new object[] { box }; + handler(arr); // for a method with parameter signature: ref/out/in int + </code> + </example> + </para> + <para> + If <c>directBoxValueAccess</c> is <c>true</c>, the boxed value object is accessed (and potentially updated) directly when the handler is called, + such that all references to the boxed object reflect the potentially updated value. + In the above example, if the method associated with the handler updates the passed (boxed) value to 10, both <c>box</c> and <c>arr[0]</c> + now reflect the value 10. Note that the original <c>val</c> is not updated, since boxing always copies the value into the new boxed value object. + </para> + <para> + If <c>directBoxValueAccess</c> is <c>false</c> (default), the boxed value object in the arguments array is replaced with a "reboxed" value object, + such that potential updates to the value are reflected only in the arguments array. + In the above example, if the method associated with the handler updates the passed (boxed) value to 10, only <c>arr[0]</c> now reflects the value 10. + </para> + </remarks> + </member> + <member name="T:HarmonyLib.Memory"> + <summary>A low level memory helper</summary> + + </member> + <member name="M:HarmonyLib.Memory.MarkForNoInlining(System.Reflection.MethodBase)"> + <summary>Mark method for no inlining (currently only works on Mono)</summary> + <param name="method">The method/constructor to change</param> + + </member> + <member name="M:HarmonyLib.Memory.DetourMethod(System.Reflection.MethodBase,System.Reflection.MethodBase)"> + <summary>Detours a method</summary> + <param name="original">The original method/constructor</param> + <param name="replacement">The replacement method/constructor</param> + <returns>An error string</returns> + + </member> + <member name="M:HarmonyLib.Memory.WriteJump(System.Int64,System.Int64)"> + <summary>Writes a jump to memory</summary> + <param name="memory">The memory address</param> + <param name="destination">Jump destination</param> + <returns>An error string</returns> + + </member> + <member name="M:HarmonyLib.Memory.GetMethodStart(System.Reflection.MethodBase,System.Exception@)"> + <summary>Gets the start of a method in memory</summary> + <param name="method">The method/constructor</param> + <param name="exception">[out] Details of the exception</param> + <returns>The method start address</returns> + + </member> + <member name="F:HarmonyLib.MethodPatcher.INSTANCE_PARAM"> + special parameter names that can be used in prefix and postfix methods + </member> + <member name="T:HarmonyLib.PatchFunctions"> + <summary>Patch function helpers</summary> + </member> + <member name="M:HarmonyLib.PatchFunctions.GetSortedPatchMethods(System.Reflection.MethodBase,HarmonyLib.Patch[],System.Boolean)"> + <summary>Sorts patch methods by their priority rules</summary> + <param name="original">The original method</param> + <param name="patches">Patches to sort</param> + <param name="debug">Use debug mode</param> + <returns>The sorted patch methods</returns> + + </member> + <member name="M:HarmonyLib.PatchFunctions.UpdateWrapper(System.Reflection.MethodBase,HarmonyLib.PatchInfo)"> + <summary>Creates new replacement method with the latest patches and detours the original method</summary> + <param name="original">The original method</param> + <param name="patchInfo">Information describing the patches</param> + <returns>The newly created replacement method</returns> + + </member> + <member name="M:HarmonyLib.PatchSorter.#ctor(HarmonyLib.Patch[],System.Boolean)"> + <summary>Creates a patch sorter</summary> + <param name="patches">Array of patches that will be sorted</param> + <param name="debug">Use debugging</param> + </member> + <member name="M:HarmonyLib.PatchSorter.Sort(System.Reflection.MethodBase)"> + <summary>Sorts internal PatchSortingWrapper collection and caches the results. + After first run the result is provided from the cache.</summary> + <param name="original">The original method</param> + <returns>The sorted patch methods</returns> + </member> + <member name="M:HarmonyLib.PatchSorter.ComparePatchLists(HarmonyLib.Patch[])"> + <summary>Checks if the sorter was created with the same patch list and as a result can be reused to + get the sorted order of the patches.</summary> + <param name="patches">List of patches to check against</param> + <returns>true if equal</returns> + </member> + <member name="M:HarmonyLib.PatchSorter.CullDependency"> + <summary>Removes one unresolved dependency from the least important patch.</summary> + </member> + <member name="M:HarmonyLib.PatchSorter.ProcessWaitingList"> + <summary>Outputs all unblocked patches from the waiting list to results list</summary> + </member> + <member name="M:HarmonyLib.PatchSorter.AddNodeToResult(HarmonyLib.PatchSorter.PatchSortingWrapper)"> + <summary>Adds patch to both results list and handled patches set</summary> + <param name="node">Patch to add</param> + </member> + <member name="T:HarmonyLib.PatchSorter.PatchSortingWrapper"> + <summary>Wrapper used over the Patch object to allow faster dependency access and + dependency removal in case of cyclic dependencies</summary> + </member> + <member name="M:HarmonyLib.PatchSorter.PatchSortingWrapper.#ctor(HarmonyLib.Patch)"> + <summary>Create patch wrapper object used for sorting</summary> + <param name="patch">Patch to wrap</param> + </member> + <member name="M:HarmonyLib.PatchSorter.PatchSortingWrapper.CompareTo(System.Object)"> + <summary>Determines how patches sort</summary> + <param name="obj">The other patch</param> + <returns>integer to define sort order (-1, 0, 1)</returns> + </member> + <member name="M:HarmonyLib.PatchSorter.PatchSortingWrapper.Equals(System.Object)"> + <summary>Determines whether patches are equal</summary> + <param name="obj">The other patch</param> + <returns>true if equal</returns> + </member> + <member name="M:HarmonyLib.PatchSorter.PatchSortingWrapper.GetHashCode"> + <summary>Hash function</summary> + <returns>A hash code</returns> + </member> + <member name="M:HarmonyLib.PatchSorter.PatchSortingWrapper.AddBeforeDependency(System.Collections.Generic.IEnumerable{HarmonyLib.PatchSorter.PatchSortingWrapper})"> + <summary>Bidirectionally registers Patches as after dependencies</summary> + <param name="dependencies">List of dependencies to register</param> + </member> + <member name="M:HarmonyLib.PatchSorter.PatchSortingWrapper.AddAfterDependency(System.Collections.Generic.IEnumerable{HarmonyLib.PatchSorter.PatchSortingWrapper})"> + <summary>Bidirectionally registers Patches as before dependencies</summary> + <param name="dependencies">List of dependencies to register</param> + </member> + <member name="M:HarmonyLib.PatchSorter.PatchSortingWrapper.RemoveAfterDependency(HarmonyLib.PatchSorter.PatchSortingWrapper)"> + <summary>Bidirectionally removes Patch from after dependencies</summary> + <param name="afterNode">Patch to remove</param> + </member> + <member name="M:HarmonyLib.PatchSorter.PatchSortingWrapper.RemoveBeforeDependency(HarmonyLib.PatchSorter.PatchSortingWrapper)"> + <summary>Bidirectionally removes Patch from before dependencies</summary> + <param name="beforeNode">Patch to remove</param> + </member> + <member name="T:HarmonyLib.MethodType"> + <summary>Specifies the type of method</summary> + + </member> + <member name="F:HarmonyLib.MethodType.Normal"> + <summary>This is a normal method</summary> + </member> + <member name="F:HarmonyLib.MethodType.Getter"> + <summary>This is a getter</summary> + </member> + <member name="F:HarmonyLib.MethodType.Setter"> + <summary>This is a setter</summary> + </member> + <member name="F:HarmonyLib.MethodType.Constructor"> + <summary>This is a constructor</summary> + </member> + <member name="F:HarmonyLib.MethodType.StaticConstructor"> + <summary>This is a static constructor</summary> + </member> + <member name="T:HarmonyLib.ArgumentType"> + <summary>Specifies the type of argument</summary> + + </member> + <member name="F:HarmonyLib.ArgumentType.Normal"> + <summary>This is a normal argument</summary> + </member> + <member name="F:HarmonyLib.ArgumentType.Ref"> + <summary>This is a reference argument (ref)</summary> + </member> + <member name="F:HarmonyLib.ArgumentType.Out"> + <summary>This is an out argument (out)</summary> + </member> + <member name="F:HarmonyLib.ArgumentType.Pointer"> + <summary>This is a pointer argument (&)</summary> + </member> + <member name="T:HarmonyLib.HarmonyPatchType"> + <summary>Specifies the type of patch</summary> + + </member> + <member name="F:HarmonyLib.HarmonyPatchType.All"> + <summary>Any patch</summary> + </member> + <member name="F:HarmonyLib.HarmonyPatchType.Prefix"> + <summary>A prefix patch</summary> + </member> + <member name="F:HarmonyLib.HarmonyPatchType.Postfix"> + <summary>A postfix patch</summary> + </member> + <member name="F:HarmonyLib.HarmonyPatchType.Transpiler"> + <summary>A transpiler</summary> + </member> + <member name="F:HarmonyLib.HarmonyPatchType.Finalizer"> + <summary>A finalizer</summary> + </member> + <member name="F:HarmonyLib.HarmonyPatchType.ReversePatch"> + <summary>A reverse patch</summary> + </member> + <member name="T:HarmonyLib.HarmonyReversePatchType"> + <summary>Specifies the type of reverse patch</summary> + + </member> + <member name="F:HarmonyLib.HarmonyReversePatchType.Original"> + <summary>Use the unmodified original method (directly from IL)</summary> + </member> + <member name="F:HarmonyLib.HarmonyReversePatchType.Snapshot"> + <summary>Use the original as it is right now including previous patches but excluding future ones</summary> + </member> + <member name="T:HarmonyLib.MethodDispatchType"> + <summary>Specifies the type of method call dispatching mechanics</summary> + + </member> + <member name="F:HarmonyLib.MethodDispatchType.VirtualCall"> + <summary>Call the method using dynamic dispatching if method is virtual (including overriden)</summary> + <remarks> + <para> + This is the built-in form of late binding (a.k.a. dynamic binding) and is the default dispatching mechanic in C#. + This directly corresponds with the <see cref="F:System.Reflection.Emit.OpCodes.Callvirt"/> instruction. + </para> + <para> + For virtual (including overriden) methods, the instance type's most-derived/overriden implementation of the method is called. + For non-virtual (including static) methods, same behavior as <see cref="F:HarmonyLib.MethodDispatchType.Call"/>: the exact specified method implementation is called. + </para> + <para> + Note: This is not a fully dynamic dispatch, since non-virtual (including static) methods are still called non-virtually. + A fully dynamic dispatch in C# involves using + the <see href="https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/builtin-types/reference-types#the-dynamic-type"><c>dynamic</c> type</see> + (actually a fully dynamic binding, since even the name and overload resolution happens at runtime), which <see cref="T:HarmonyLib.MethodDispatchType"/> does not support. + </para> + </remarks> + </member> + <member name="F:HarmonyLib.MethodDispatchType.Call"> + <summary>Call the method using static dispatching, regardless of whether method is virtual (including overriden) or non-virtual (including static)</summary> + <remarks> + <para> + a.k.a. non-virtual dispatching, early binding, or static binding. + This directly corresponds with the <see cref="F:System.Reflection.Emit.OpCodes.Call"/> instruction. + </para> + <para> + For both virtual (including overriden) and non-virtual (including static) methods, the exact specified method implementation is called, without virtual/override mechanics. + </para> + </remarks> + </member> + <member name="T:HarmonyLib.HarmonyAttribute"> + <summary>The base class for all Harmony annotations (not meant to be used directly)</summary> + + </member> + <member name="F:HarmonyLib.HarmonyAttribute.info"> + <summary>The common information for all attributes</summary> + </member> + <member name="T:HarmonyLib.HarmonyPatch"> + <summary>Annotation to define your Harmony patch methods</summary> + + </member> + <member name="M:HarmonyLib.HarmonyPatch.#ctor"> + <summary>An empty annotation can be used together with TargetMethod(s)</summary> + + </member> + <member name="M:HarmonyLib.HarmonyPatch.#ctor(System.Type)"> + <summary>An annotation that specifies a class to patch</summary> + <param name="declaringType">The declaring class/type</param> + + </member> + <member name="M:HarmonyLib.HarmonyPatch.#ctor(System.Type,System.Type[])"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="declaringType">The declaring class/type</param> + <param name="argumentTypes">The argument types of the method or constructor to patch</param> + + </member> + <member name="M:HarmonyLib.HarmonyPatch.#ctor(System.Type,System.String)"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="declaringType">The declaring class/type</param> + <param name="methodName">The name of the method, property or constructor to patch</param> + + </member> + <member name="M:HarmonyLib.HarmonyPatch.#ctor(System.Type,System.String,System.Type[])"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="declaringType">The declaring class/type</param> + <param name="methodName">The name of the method, property or constructor to patch</param> + <param name="argumentTypes">An array of argument types to target overloads</param> + + </member> + <member name="M:HarmonyLib.HarmonyPatch.#ctor(System.Type,System.String,System.Type[],HarmonyLib.ArgumentType[])"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="declaringType">The declaring class/type</param> + <param name="methodName">The name of the method, property or constructor to patch</param> + <param name="argumentTypes">An array of argument types to target overloads</param> + <param name="argumentVariations">Array of <see cref="T:HarmonyLib.ArgumentType"/></param> + + </member> + <member name="M:HarmonyLib.HarmonyPatch.#ctor(System.Type,HarmonyLib.MethodType)"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="declaringType">The declaring class/type</param> + <param name="methodType">The <see cref="T:HarmonyLib.MethodType"/></param> + + </member> + <member name="M:HarmonyLib.HarmonyPatch.#ctor(System.Type,HarmonyLib.MethodType,System.Type[])"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="declaringType">The declaring class/type</param> + <param name="methodType">The <see cref="T:HarmonyLib.MethodType"/></param> + <param name="argumentTypes">An array of argument types to target overloads</param> + + </member> + <member name="M:HarmonyLib.HarmonyPatch.#ctor(System.Type,HarmonyLib.MethodType,System.Type[],HarmonyLib.ArgumentType[])"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="declaringType">The declaring class/type</param> + <param name="methodType">The <see cref="T:HarmonyLib.MethodType"/></param> + <param name="argumentTypes">An array of argument types to target overloads</param> + <param name="argumentVariations">Array of <see cref="T:HarmonyLib.ArgumentType"/></param> + + </member> + <member name="M:HarmonyLib.HarmonyPatch.#ctor(System.Type,System.String,HarmonyLib.MethodType)"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="declaringType">The declaring class/type</param> + <param name="methodName">The name of the method, property or constructor to patch</param> + <param name="methodType">The <see cref="T:HarmonyLib.MethodType"/></param> + + </member> + <member name="M:HarmonyLib.HarmonyPatch.#ctor(System.String)"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="methodName">The name of the method, property or constructor to patch</param> + + </member> + <member name="M:HarmonyLib.HarmonyPatch.#ctor(System.String,System.Type[])"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="methodName">The name of the method, property or constructor to patch</param> + <param name="argumentTypes">An array of argument types to target overloads</param> + + </member> + <member name="M:HarmonyLib.HarmonyPatch.#ctor(System.String,System.Type[],HarmonyLib.ArgumentType[])"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="methodName">The name of the method, property or constructor to patch</param> + <param name="argumentTypes">An array of argument types to target overloads</param> + <param name="argumentVariations">An array of <see cref="T:HarmonyLib.ArgumentType"/></param> + + </member> + <member name="M:HarmonyLib.HarmonyPatch.#ctor(System.String,HarmonyLib.MethodType)"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="methodName">The name of the method, property or constructor to patch</param> + <param name="methodType">The <see cref="T:HarmonyLib.MethodType"/></param> + + </member> + <member name="M:HarmonyLib.HarmonyPatch.#ctor(HarmonyLib.MethodType)"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="methodType">The <see cref="T:HarmonyLib.MethodType"/></param> + + </member> + <member name="M:HarmonyLib.HarmonyPatch.#ctor(HarmonyLib.MethodType,System.Type[])"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="methodType">The <see cref="T:HarmonyLib.MethodType"/></param> + <param name="argumentTypes">An array of argument types to target overloads</param> + + </member> + <member name="M:HarmonyLib.HarmonyPatch.#ctor(HarmonyLib.MethodType,System.Type[],HarmonyLib.ArgumentType[])"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="methodType">The <see cref="T:HarmonyLib.MethodType"/></param> + <param name="argumentTypes">An array of argument types to target overloads</param> + <param name="argumentVariations">An array of <see cref="T:HarmonyLib.ArgumentType"/></param> + + </member> + <member name="M:HarmonyLib.HarmonyPatch.#ctor(System.Type[])"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="argumentTypes">An array of argument types to target overloads</param> + + </member> + <member name="M:HarmonyLib.HarmonyPatch.#ctor(System.Type[],HarmonyLib.ArgumentType[])"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="argumentTypes">An array of argument types to target overloads</param> + <param name="argumentVariations">An array of <see cref="T:HarmonyLib.ArgumentType"/></param> + + </member> + <member name="T:HarmonyLib.HarmonyDelegate"> + <summary>Annotation to define the original method for delegate injection</summary> + + </member> + <member name="M:HarmonyLib.HarmonyDelegate.#ctor(System.Type)"> + <summary>An annotation that specifies a class to patch</summary> + <param name="declaringType">The declaring class/type</param> + + </member> + <member name="M:HarmonyLib.HarmonyDelegate.#ctor(System.Type,System.Type[])"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="declaringType">The declaring class/type</param> + <param name="argumentTypes">The argument types of the method or constructor to patch</param> + + </member> + <member name="M:HarmonyLib.HarmonyDelegate.#ctor(System.Type,System.String)"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="declaringType">The declaring class/type</param> + <param name="methodName">The name of the method, property or constructor to patch</param> + + </member> + <member name="M:HarmonyLib.HarmonyDelegate.#ctor(System.Type,System.String,System.Type[])"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="declaringType">The declaring class/type</param> + <param name="methodName">The name of the method, property or constructor to patch</param> + <param name="argumentTypes">An array of argument types to target overloads</param> + + </member> + <member name="M:HarmonyLib.HarmonyDelegate.#ctor(System.Type,System.String,System.Type[],HarmonyLib.ArgumentType[])"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="declaringType">The declaring class/type</param> + <param name="methodName">The name of the method, property or constructor to patch</param> + <param name="argumentTypes">An array of argument types to target overloads</param> + <param name="argumentVariations">Array of <see cref="T:HarmonyLib.ArgumentType"/></param> + + </member> + <member name="M:HarmonyLib.HarmonyDelegate.#ctor(System.Type,HarmonyLib.MethodDispatchType)"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="declaringType">The declaring class/type</param> + <param name="methodDispatchType">The <see cref="T:HarmonyLib.MethodDispatchType"/></param> + + </member> + <member name="M:HarmonyLib.HarmonyDelegate.#ctor(System.Type,HarmonyLib.MethodDispatchType,System.Type[])"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="declaringType">The declaring class/type</param> + <param name="methodDispatchType">The <see cref="T:HarmonyLib.MethodDispatchType"/></param> + <param name="argumentTypes">An array of argument types to target overloads</param> + + </member> + <member name="M:HarmonyLib.HarmonyDelegate.#ctor(System.Type,HarmonyLib.MethodDispatchType,System.Type[],HarmonyLib.ArgumentType[])"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="declaringType">The declaring class/type</param> + <param name="methodDispatchType">The <see cref="T:HarmonyLib.MethodDispatchType"/></param> + <param name="argumentTypes">An array of argument types to target overloads</param> + <param name="argumentVariations">Array of <see cref="T:HarmonyLib.ArgumentType"/></param> + + </member> + <member name="M:HarmonyLib.HarmonyDelegate.#ctor(System.Type,System.String,HarmonyLib.MethodDispatchType)"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="declaringType">The declaring class/type</param> + <param name="methodName">The name of the method, property or constructor to patch</param> + <param name="methodDispatchType">The <see cref="T:HarmonyLib.MethodDispatchType"/></param> + + </member> + <member name="M:HarmonyLib.HarmonyDelegate.#ctor(System.String)"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="methodName">The name of the method, property or constructor to patch</param> + + </member> + <member name="M:HarmonyLib.HarmonyDelegate.#ctor(System.String,System.Type[])"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="methodName">The name of the method, property or constructor to patch</param> + <param name="argumentTypes">An array of argument types to target overloads</param> + + </member> + <member name="M:HarmonyLib.HarmonyDelegate.#ctor(System.String,System.Type[],HarmonyLib.ArgumentType[])"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="methodName">The name of the method, property or constructor to patch</param> + <param name="argumentTypes">An array of argument types to target overloads</param> + <param name="argumentVariations">An array of <see cref="T:HarmonyLib.ArgumentType"/></param> + + </member> + <member name="M:HarmonyLib.HarmonyDelegate.#ctor(System.String,HarmonyLib.MethodDispatchType)"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="methodName">The name of the method, property or constructor to patch</param> + <param name="methodDispatchType">The <see cref="T:HarmonyLib.MethodDispatchType"/></param> + + </member> + <member name="M:HarmonyLib.HarmonyDelegate.#ctor(HarmonyLib.MethodDispatchType)"> + <summary>An annotation that specifies call dispatching mechanics for the delegate</summary> + <param name="methodDispatchType">The <see cref="T:HarmonyLib.MethodDispatchType"/></param> + + </member> + <member name="M:HarmonyLib.HarmonyDelegate.#ctor(HarmonyLib.MethodDispatchType,System.Type[])"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="methodDispatchType">The <see cref="T:HarmonyLib.MethodDispatchType"/></param> + <param name="argumentTypes">An array of argument types to target overloads</param> + + </member> + <member name="M:HarmonyLib.HarmonyDelegate.#ctor(HarmonyLib.MethodDispatchType,System.Type[],HarmonyLib.ArgumentType[])"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="methodDispatchType">The <see cref="T:HarmonyLib.MethodDispatchType"/></param> + <param name="argumentTypes">An array of argument types to target overloads</param> + <param name="argumentVariations">An array of <see cref="T:HarmonyLib.ArgumentType"/></param> + + </member> + <member name="M:HarmonyLib.HarmonyDelegate.#ctor(System.Type[])"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="argumentTypes">An array of argument types to target overloads</param> + + </member> + <member name="M:HarmonyLib.HarmonyDelegate.#ctor(System.Type[],HarmonyLib.ArgumentType[])"> + <summary>An annotation that specifies a method, property or constructor to patch</summary> + <param name="argumentTypes">An array of argument types to target overloads</param> + <param name="argumentVariations">An array of <see cref="T:HarmonyLib.ArgumentType"/></param> + + </member> + <member name="T:HarmonyLib.HarmonyReversePatch"> + <summary>Annotation to define your standin methods for reverse patching</summary> + + </member> + <member name="M:HarmonyLib.HarmonyReversePatch.#ctor(HarmonyLib.HarmonyReversePatchType)"> + <summary>An annotation that specifies the type of reverse patching</summary> + <param name="type">The <see cref="T:HarmonyLib.HarmonyReversePatchType"/> of the reverse patch</param> + + </member> + <member name="T:HarmonyLib.HarmonyPatchAll"> + <summary>A Harmony annotation to define that all methods in a class are to be patched</summary> + + </member> + <member name="T:HarmonyLib.HarmonyPriority"> + <summary>A Harmony annotation</summary> + + </member> + <member name="M:HarmonyLib.HarmonyPriority.#ctor(System.Int32)"> + <summary>A Harmony annotation to define patch priority</summary> + <param name="priority">The priority</param&g |
