mirror of
https://github.com/pardeike/Harmony
synced 2026-06-08 16:40:38 +00:00
313 lines
9.9 KiB
HTML
313 lines
9.9 KiB
HTML
<!DOCTYPE html>
|
|
<!--[if IE]><![endif]-->
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<title>Enum MethodType
|
|
</title>
|
|
<meta name="viewport" content="width=device-width">
|
|
<meta name="title" content="Enum MethodType
|
|
">
|
|
<meta name="generator" content="docfx 2.48.1.0">
|
|
|
|
<link rel="shortcut icon" href="../favicon.ico">
|
|
<link rel="stylesheet" href="../styles/docfx.vendor.css">
|
|
<link rel="stylesheet" href="../styles/docfx.css">
|
|
<link rel="stylesheet" href="../styles/main.css">
|
|
<meta property="docfx:navrel" content="../toc.html">
|
|
<meta property="docfx:tocrel" content="toc.html">
|
|
|
|
|
|
|
|
</head>
|
|
<body data-spy="scroll" data-target="#affix" data-offset="120">
|
|
<div id="wrapper">
|
|
<header>
|
|
|
|
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
|
|
<div class="container">
|
|
<div class="navbar-header">
|
|
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
|
|
<span class="sr-only">Toggle navigation</span>
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
</button>
|
|
|
|
<a class="navbar-brand" href="../index.html">
|
|
<img id="logo" class="svg" src="../logo.svg" alt="">
|
|
</a>
|
|
</div>
|
|
<div class="collapse navbar-collapse" id="navbar">
|
|
<form class="navbar-form navbar-right" role="search" id="search">
|
|
<div class="form-group">
|
|
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<div class="subnav navbar navbar-default">
|
|
<div class="container hide-when-search" id="breadcrumb">
|
|
<ul class="breadcrumb">
|
|
<li></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
<div role="main" class="container body-content hide-when-search">
|
|
|
|
<div class="sidenav hide-when-search">
|
|
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
|
|
<div class="sidetoggle collapse" id="sidetoggle">
|
|
<div id="sidetoc"></div>
|
|
</div>
|
|
</div>
|
|
<div class="article row grid-right">
|
|
<div class="col-md-10">
|
|
<article class="content wrap" id="_content" data-uid="HarmonyLib.MethodType">
|
|
|
|
|
|
<h1 id="HarmonyLib_MethodType" data-uid="HarmonyLib.MethodType" class="text-break">Enum MethodType
|
|
</h1>
|
|
<div class="markdown level0 summary"><p>Specifies the type of method</p>
|
|
</div>
|
|
<div class="markdown level0 conceptual"></div>
|
|
<h6><strong>Namespace</strong>: <a class="xref" href="HarmonyLib.html">HarmonyLib</a></h6>
|
|
<h6><strong>Assembly</strong>: 0Harmony.dll</h6>
|
|
<h5 id="HarmonyLib_MethodType_syntax">Syntax</h5>
|
|
<div class="codewrapper">
|
|
<pre><code class="lang-csharp hljs">public enum MethodType</code></pre>
|
|
</div>
|
|
<h3 id="fields">Fields
|
|
</h3>
|
|
<table class="table table-bordered table-striped table-condensed">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
<thead>
|
|
<tbody>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_Constructor">Constructor</td>
|
|
<td><p>This is a constructor</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_Enumerator">Enumerator</td>
|
|
<td><p>This targets the MoveNext method of the enumerator result, that actually contains the method's implementation</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_EventAdd">EventAdd</td>
|
|
<td><p>This is a add event method</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_EventRemove">EventRemove</td>
|
|
<td><p>This is a remove event method</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_Finalizer">Finalizer</td>
|
|
<td><p>Finalize</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_Getter">Getter</td>
|
|
<td><p>This is a getter</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_Normal">Normal</td>
|
|
<td><p>This is a normal method</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_OperatorAddition">OperatorAddition</td>
|
|
<td><p>This is a op_Addition</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_OperatorBitwiseAnd">OperatorBitwiseAnd</td>
|
|
<td><p>This is a op_BitwiseAnd</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_OperatorBitwiseOr">OperatorBitwiseOr</td>
|
|
<td><p>This is a op_BitwiseOr</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_OperatorComma">OperatorComma</td>
|
|
<td><p>This is a op_Comma</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_OperatorDecrement">OperatorDecrement</td>
|
|
<td><p>This is a op_Decrement</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_OperatorDivision">OperatorDivision</td>
|
|
<td><p>This is a op_Division</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_OperatorEquality">OperatorEquality</td>
|
|
<td><p>This is a op_Equality</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_OperatorExclusiveOr">OperatorExclusiveOr</td>
|
|
<td><p>This is a op_ExclusiveOr</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_OperatorExplicit">OperatorExplicit</td>
|
|
<td><p>This is a op_Explicit</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_OperatorFalse">OperatorFalse</td>
|
|
<td><p>This is a op_False</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_OperatorGreaterThan">OperatorGreaterThan</td>
|
|
<td><p>This is a op_GreaterThan</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_OperatorGreaterThanOrEqual">OperatorGreaterThanOrEqual</td>
|
|
<td><p>This is a op_GreaterThanOrEqual</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_OperatorImplicit">OperatorImplicit</td>
|
|
<td><p>This is a op_Implicit</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_OperatorIncrement">OperatorIncrement</td>
|
|
<td><p>This is a op_Increment</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_OperatorInequality">OperatorInequality</td>
|
|
<td><p>This is a op_Inequality</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_OperatorLeftShift">OperatorLeftShift</td>
|
|
<td><p>This is a op_LeftShift</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_OperatorLessThan">OperatorLessThan</td>
|
|
<td><p>This is a op_LessThan</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_OperatorLessThanOrEqual">OperatorLessThanOrEqual</td>
|
|
<td><p>This is a op_LessThanOrEqual</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_OperatorLogicalNot">OperatorLogicalNot</td>
|
|
<td><p>This is a op_LogicalNot</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_OperatorModulus">OperatorModulus</td>
|
|
<td><p>This is a op_Modulus</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_OperatorMultiply">OperatorMultiply</td>
|
|
<td><p>This is a op_Multiply</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_OperatorOnesComplement">OperatorOnesComplement</td>
|
|
<td><p>This is a op_OnesComplement</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_OperatorRightShift">OperatorRightShift</td>
|
|
<td><p>This is a op_RightShift</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_OperatorSubtraction">OperatorSubtraction</td>
|
|
<td><p>This is a op_Subtraction</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_OperatorTrue">OperatorTrue</td>
|
|
<td><p>This is a op_True</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_OperatorUnaryNegation">OperatorUnaryNegation</td>
|
|
<td><p>This is a op_UnaryNegation</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_OperatorUnaryPlus">OperatorUnaryPlus</td>
|
|
<td><p>This is a op_UnaryPlus</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_Setter">Setter</td>
|
|
<td><p>This is a setter</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="HarmonyLib_MethodType_StaticConstructor">StaticConstructor</td>
|
|
<td><p>This is a static constructor</p>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</thead></thead></table>
|
|
</article>
|
|
</div>
|
|
|
|
<div class="hidden-sm col-md-2" role="complementary">
|
|
<div class="sideaffix">
|
|
<div class="contribution">
|
|
<ul class="nav">
|
|
</ul>
|
|
</div>
|
|
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
|
|
<!-- <p><a class="back-to-top" href="#top">Back to top</a><p> -->
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<footer>
|
|
<div class="grad-bottom"></div>
|
|
<div class="footer">
|
|
<div class="container">
|
|
<span class="pull-right">
|
|
<a href="#top">Back to top</a>
|
|
</span>
|
|
|
|
<span>Generated by <strong>DocFX</strong></span>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
|
|
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
|
|
<script type="text/javascript" src="../styles/docfx.js"></script>
|
|
<script type="text/javascript" src="../styles/main.js"></script>
|
|
</body>
|
|
</html>
|