Skip to content

Commit 1b4ac92

Browse files
authored
Merge pull request #148 from MidLevel/api-docs
Api docs
2 parents eaaaf46 + 2429e9e commit 1b4ac92

File tree

138 files changed

+131678
-5
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

138 files changed

+131678
-5
lines changed

GenerateApi.ps1

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
$myPath = (Get-Item -Path ".\").FullName;
2+
$myPath = $myPath.Replace("\", "/")
3+
$executablePath = -join ($myPath, "/Libraries/Internal/ApiParser/ApiParser.exe")
4+
5+
$argList = "./MLAPI/bin/Debug/MLAPI.dll ./MLAPI/bin/Debug/MLAPI.xml ./docs/_data/api.yml ./docs/_api/"
6+
7+
Start-Process -FilePath $executablePath -ArgumentList $argList
26.5 KB
Binary file not shown.

docs/_api/Action.md

Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
---
2+
title: Action
3+
permalink: /api/action/
4+
---
5+
6+
<div style="line-height: 1;">
7+
<h2 markdown="1">Action ``class``</h2>
8+
<p style="font-size: 20px;"><b>Namespace:</b> MLAPI</p>
9+
<p style="font-size: 20px;"><b>Assembly:</b> MLAPI.dll</p>
10+
</div>
11+
<div>
12+
<h3 markdown="1">Inherited Properties</h3>
13+
<div style="line-height: 1;">
14+
<h4 markdown="1"><b>public ``MethodInfo`` Method { get; }</b></h4>
15+
<h5 markdown="1">Inherited from: ``Delegate``</h5>
16+
</div>
17+
<div style="line-height: 1;">
18+
<h4 markdown="1"><b>public ``object`` Target { get; }</b></h4>
19+
<h5 markdown="1">Inherited from: ``Delegate``</h5>
20+
</div>
21+
</div>
22+
<br>
23+
<div>
24+
<h3>Public Constructors</h3>
25+
<div style="line-height: 1; ">
26+
<h4 markdown="1"><b>public [``Action``](/MLAPI/api/action/)(``object`` object, ``IntPtr`` method);</b></h4>
27+
</div>
28+
<h5><b>Parameters</b></h5>
29+
<div>
30+
<p style="font-size: 20px; color: #444;" markdown="1">``object`` object</p>
31+
</div>
32+
<div>
33+
<p style="font-size: 20px; color: #444;" markdown="1">``IntPtr`` method</p>
34+
</div>
35+
</div>
36+
<br>
37+
<div>
38+
<h3 markdown="1">Public Methods</h3>
39+
<div style="line-height: 1;">
40+
<h4 markdown="1"><b>public ``void`` Invoke();</b></h4>
41+
</div>
42+
<br>
43+
<div style="line-height: 1;">
44+
<h4 markdown="1"><b>public ``IAsyncResult`` BeginInvoke(``AsyncCallback`` callback, ``object`` object);</b></h4>
45+
<h5><b>Parameters</b></h5>
46+
<div>
47+
<p style="font-size: 20px; color: #444;" markdown="1">``AsyncCallback`` callback</p>
48+
</div>
49+
<div>
50+
<p style="font-size: 20px; color: #444;" markdown="1">``object`` object</p>
51+
</div>
52+
</div>
53+
<br>
54+
<div style="line-height: 1;">
55+
<h4 markdown="1"><b>public ``void`` EndInvoke(``IAsyncResult`` result);</b></h4>
56+
<h5><b>Parameters</b></h5>
57+
<div>
58+
<p style="font-size: 20px; color: #444;" markdown="1">``IAsyncResult`` result</p>
59+
</div>
60+
</div>
61+
<br>
62+
</div>
63+
<br>
64+
<div>
65+
<h3 markdown="1">Inherited Methods</h3>
66+
<div style="line-height: 1;">
67+
<h4 markdown="1"><b>public ``void`` GetObjectData(``SerializationInfo`` info, ``StreamingContext`` context);</b></h4>
68+
<h5 markdown="1">Inherited from: ``MulticastDelegate``</h5>
69+
<h5><b>Parameters</b></h5>
70+
<div>
71+
<p style="font-size: 20px; color: #444;" markdown="1">``SerializationInfo`` info</p>
72+
</div>
73+
<div>
74+
<p style="font-size: 20px; color: #444;" markdown="1">``StreamingContext`` context</p>
75+
</div>
76+
</div>
77+
<br>
78+
<div style="line-height: 1;">
79+
<h4 markdown="1"><b>public ``bool`` Equals(``object`` obj);</b></h4>
80+
<h5 markdown="1">Inherited from: ``MulticastDelegate``</h5>
81+
<h5><b>Parameters</b></h5>
82+
<div>
83+
<p style="font-size: 20px; color: #444;" markdown="1">``object`` obj</p>
84+
</div>
85+
</div>
86+
<br>
87+
<div style="line-height: 1;">
88+
<h4 markdown="1"><b>public ``Delegate[]`` GetInvocationList();</b></h4>
89+
<h5 markdown="1">Inherited from: ``MulticastDelegate``</h5>
90+
</div>
91+
<br>
92+
<div style="line-height: 1;">
93+
<h4 markdown="1"><b>public ``int`` GetHashCode();</b></h4>
94+
<h5 markdown="1">Inherited from: ``MulticastDelegate``</h5>
95+
</div>
96+
<br>
97+
<div style="line-height: 1;">
98+
<h4 markdown="1"><b>public ``object`` DynamicInvoke(``object[]`` args);</b></h4>
99+
<h5 markdown="1">Inherited from: ``Delegate``</h5>
100+
<h5><b>Parameters</b></h5>
101+
<div>
102+
<p style="font-size: 20px; color: #444;" markdown="1">``object[]`` args</p>
103+
</div>
104+
</div>
105+
<br>
106+
<div style="line-height: 1;">
107+
<h4 markdown="1"><b>public ``object`` Clone();</b></h4>
108+
<h5 markdown="1">Inherited from: ``Delegate``</h5>
109+
</div>
110+
<br>
111+
<div style="line-height: 1;">
112+
<h4 markdown="1"><b>public ``string`` ToString();</b></h4>
113+
<h5 markdown="1">Inherited from: ``object``</h5>
114+
</div>
115+
<br>
116+
<div style="line-height: 1;">
117+
<h4 markdown="1"><b>public ``Type`` GetType();</b></h4>
118+
<h5 markdown="1">Inherited from: ``object``</h5>
119+
</div>
120+
</div>
121+
<br>

0 commit comments

Comments
 (0)