Skip to content

Commit

Permalink
docs: Removed MLAPI URL prefix in API reference
Browse files Browse the repository at this point in the history
  • Loading branch information
TwoTenPvP committed Aug 9, 2019
1 parent 55f2113 commit c5fd679
Show file tree
Hide file tree
Showing 154 changed files with 7,578 additions and 7,578 deletions.
Binary file modified Libraries/Internal/ApiParser/ApiParser.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/_api/BitReader.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ permalink: /api/bit-reader/
<div>
<h3>Public Constructors</h3>
<div style="line-height: 1; ">
<h4 markdown="1"><b>public [``BitReader``](/MLAPI/api/bit-reader/)(``Stream`` stream);</b></h4>
<h4 markdown="1"><b>public [``BitReader``](/api/bit-reader/)(``Stream`` stream);</b></h4>
<p>Creates a new BitReader backed by a given stream</p>
</div>
<h5><b>Parameters</b></h5>
Expand Down
8 changes: 4 additions & 4 deletions docs/_api/BitReaderPool.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,25 +14,25 @@ permalink: /api/bit-reader-pool/
<div>
<h3 markdown="1">Public Static Methods</h3>
<div style="line-height: 1;">
<h4 markdown="1"><b>public static [``PooledBitReader``](/MLAPI/api/pooled-bit-reader/) GetReader(``Stream`` stream);</b></h4>
<h4 markdown="1"><b>public static [``PooledBitReader``](/api/pooled-bit-reader/) GetReader(``Stream`` stream);</b></h4>
<p>Retrieves a PooledBitReader</p>
<h5><b>Parameters</b></h5>
<div>
<p style="font-size: 20px; color: #444;" markdown="1">``Stream`` stream</p>
<p>The stream the reader should read from</p>
</div>
<h5 markdown="1"><b>Returns [``PooledBitReader``](/MLAPI/api/pooled-bit-reader/)</b></h5>
<h5 markdown="1"><b>Returns [``PooledBitReader``](/api/pooled-bit-reader/)</b></h5>
<div>
<p>A PooledBitReader</p>
</div>
</div>
<br>
<div style="line-height: 1;">
<h4 markdown="1"><b>public static ``void`` PutBackInPool([``PooledBitReader``](/MLAPI/api/pooled-bit-reader/) reader);</b></h4>
<h4 markdown="1"><b>public static ``void`` PutBackInPool([``PooledBitReader``](/api/pooled-bit-reader/) reader);</b></h4>
<p>Puts a PooledBitReader back into the pool</p>
<h5><b>Parameters</b></h5>
<div>
<p style="font-size: 20px; color: #444;" markdown="1">[``PooledBitReader``](/MLAPI/api/pooled-bit-reader/) reader</p>
<p style="font-size: 20px; color: #444;" markdown="1">[``PooledBitReader``](/api/pooled-bit-reader/) reader</p>
<p>The reader to put in the pool</p>
</div>
</div>
Expand Down
14 changes: 7 additions & 7 deletions docs/_api/BitStream.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ permalink: /api/bit-stream/
<div>
<h3>Public Constructors</h3>
<div style="line-height: 1; ">
<h4 markdown="1"><b>public [``BitStream``](/MLAPI/api/bit-stream/)(``int`` capacity, ``float`` growthFactor);</b></h4>
<h4 markdown="1"><b>public [``BitStream``](/api/bit-stream/)(``int`` capacity, ``float`` growthFactor);</b></h4>
<p>A stream that supports writing data smaller than a single byte. This stream also has a built-in compression algorithm that can (optionally) be used to write compressed data.</p>
</div>
<h5><b>Parameters</b></h5>
Expand All @@ -95,7 +95,7 @@ permalink: /api/bit-stream/
<p>Factor by which buffer should grow when necessary.</p>
</div>
<div style="line-height: 1; ">
<h4 markdown="1"><b>public [``BitStream``](/MLAPI/api/bit-stream/)(``float`` growthFactor);</b></h4>
<h4 markdown="1"><b>public [``BitStream``](/api/bit-stream/)(``float`` growthFactor);</b></h4>
<p>A stream that supports writing data smaller than a single byte. This stream also has a built-in compression algorithm that can (optionally) be used to write compressed data.</p>
</div>
<h5><b>Parameters</b></h5>
Expand All @@ -104,7 +104,7 @@ permalink: /api/bit-stream/
<p>Factor by which buffer should grow when necessary.</p>
</div>
<div style="line-height: 1; ">
<h4 markdown="1"><b>public [``BitStream``](/MLAPI/api/bit-stream/)(``int`` capacity);</b></h4>
<h4 markdown="1"><b>public [``BitStream``](/api/bit-stream/)(``int`` capacity);</b></h4>
<p>A stream that supports writing data smaller than a single byte. This stream also has a built-in compression algorithm that can (optionally) be used to write compressed data.</p>
</div>
<h5><b>Parameters</b></h5>
Expand All @@ -113,11 +113,11 @@ permalink: /api/bit-stream/
<p></p>
</div>
<div style="line-height: 1; ">
<h4 markdown="1"><b>public [``BitStream``](/MLAPI/api/bit-stream/)();</b></h4>
<h4 markdown="1"><b>public [``BitStream``](/api/bit-stream/)();</b></h4>
<p>A stream that supports writing data smaller than a single byte. This stream also has a built-in compression algorithm that can (optionally) be used to write compressed data.</p>
</div>
<div style="line-height: 1; ">
<h4 markdown="1"><b>public [``BitStream``](/MLAPI/api/bit-stream/)(``byte[]`` target);</b></h4>
<h4 markdown="1"><b>public [``BitStream``](/api/bit-stream/)(``byte[]`` target);</b></h4>
<p>A stream that supports writing data smaller than a single byte. This stream also has a built-in compression algorithm that can (optionally) be used to write compressed data.
NOTE: when using a pre-allocated buffer, the stream will not grow!</p>
</div>
Expand Down Expand Up @@ -303,11 +303,11 @@ permalink: /api/bit-stream/
</div>
<br>
<div style="line-height: 1;">
<h4 markdown="1"><b>public ``void`` CopyFrom([``BitStream``](/MLAPI/api/bit-stream/) stream, ``int`` dataCount, ``bool`` copyBits);</b></h4>
<h4 markdown="1"><b>public ``void`` CopyFrom([``BitStream``](/api/bit-stream/) stream, ``int`` dataCount, ``bool`` copyBits);</b></h4>
<p>Copys the bits from the provided BitStream</p>
<h5><b>Parameters</b></h5>
<div>
<p style="font-size: 20px; color: #444;" markdown="1">[``BitStream``](/MLAPI/api/bit-stream/) stream</p>
<p style="font-size: 20px; color: #444;" markdown="1">[``BitStream``](/api/bit-stream/) stream</p>
<p>The stream to copy from</p>
</div>
<div>
Expand Down
8 changes: 4 additions & 4 deletions docs/_api/BitStreamPool.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,20 @@ permalink: /api/bit-stream-pool/
<div>
<h3 markdown="1">Public Static Methods</h3>
<div style="line-height: 1;">
<h4 markdown="1"><b>public static [``PooledBitStream``](/MLAPI/api/pooled-bit-stream/) GetStream();</b></h4>
<h4 markdown="1"><b>public static [``PooledBitStream``](/api/pooled-bit-stream/) GetStream();</b></h4>
<p>Retrieves an expandable PooledBitStream from the pool</p>
<h5 markdown="1"><b>Returns [``PooledBitStream``](/MLAPI/api/pooled-bit-stream/)</b></h5>
<h5 markdown="1"><b>Returns [``PooledBitStream``](/api/pooled-bit-stream/)</b></h5>
<div>
<p>An expandable PooledBitStream</p>
</div>
</div>
<br>
<div style="line-height: 1;">
<h4 markdown="1"><b>public static ``void`` PutBackInPool([``PooledBitStream``](/MLAPI/api/pooled-bit-stream/) stream);</b></h4>
<h4 markdown="1"><b>public static ``void`` PutBackInPool([``PooledBitStream``](/api/pooled-bit-stream/) stream);</b></h4>
<p>Puts a PooledBitStream back into the pool</p>
<h5><b>Parameters</b></h5>
<div>
<p style="font-size: 20px; color: #444;" markdown="1">[``PooledBitStream``](/MLAPI/api/pooled-bit-stream/) stream</p>
<p style="font-size: 20px; color: #444;" markdown="1">[``PooledBitStream``](/api/pooled-bit-stream/) stream</p>
<p>The stream to put in the pool</p>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/_api/BitWriter.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ permalink: /api/bit-writer/
<div>
<h3>Public Constructors</h3>
<div style="line-height: 1; ">
<h4 markdown="1"><b>public [``BitWriter``](/MLAPI/api/bit-writer/)(``Stream`` stream);</b></h4>
<h4 markdown="1"><b>public [``BitWriter``](/api/bit-writer/)(``Stream`` stream);</b></h4>
<p>Creates a new BitWriter backed by a given stream</p>
</div>
<h5><b>Parameters</b></h5>
Expand Down
8 changes: 4 additions & 4 deletions docs/_api/BitWriterPool.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,25 +14,25 @@ permalink: /api/bit-writer-pool/
<div>
<h3 markdown="1">Public Static Methods</h3>
<div style="line-height: 1;">
<h4 markdown="1"><b>public static [``PooledBitWriter``](/MLAPI/api/pooled-bit-writer/) GetWriter(``Stream`` stream);</b></h4>
<h4 markdown="1"><b>public static [``PooledBitWriter``](/api/pooled-bit-writer/) GetWriter(``Stream`` stream);</b></h4>
<p>Retrieves a PooledBitWriter</p>
<h5><b>Parameters</b></h5>
<div>
<p style="font-size: 20px; color: #444;" markdown="1">``Stream`` stream</p>
<p>The stream the writer should write to</p>
</div>
<h5 markdown="1"><b>Returns [``PooledBitWriter``](/MLAPI/api/pooled-bit-writer/)</b></h5>
<h5 markdown="1"><b>Returns [``PooledBitWriter``](/api/pooled-bit-writer/)</b></h5>
<div>
<p>A PooledBitWriter</p>
</div>
</div>
<br>
<div style="line-height: 1;">
<h4 markdown="1"><b>public static ``void`` PutBackInPool([``PooledBitWriter``](/MLAPI/api/pooled-bit-writer/) writer);</b></h4>
<h4 markdown="1"><b>public static ``void`` PutBackInPool([``PooledBitWriter``](/api/pooled-bit-writer/) writer);</b></h4>
<p>Puts a PooledBitWriter back into the pool</p>
<h5><b>Parameters</b></h5>
<div>
<p style="font-size: 20px; color: #444;" markdown="1">[``PooledBitWriter``](/MLAPI/api/pooled-bit-writer/) writer</p>
<p style="font-size: 20px; color: #444;" markdown="1">[``PooledBitWriter``](/api/pooled-bit-writer/) writer</p>
<p>The writer to put in the pool</p>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/_api/ClientRPCAttribute.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ permalink: /api/client-rpcattribute/
<div>
<h3>Public Constructors</h3>
<div style="line-height: 1; ">
<h4 markdown="1"><b>public [``ClientRPCAttribute``](/MLAPI/api/client-rpcattribute/)();</b></h4>
<h4 markdown="1"><b>public [``ClientRPCAttribute``](/api/client-rpcattribute/)();</b></h4>
</div>
</div>
<br>
Expand Down
2 changes: 1 addition & 1 deletion docs/_api/ConnectionApprovedDelegate.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ permalink: /api/connection-approved-delegate/
<div>
<h3>Public Constructors</h3>
<div style="line-height: 1; ">
<h4 markdown="1"><b>public [``ConnectionApprovedDelegate``](/MLAPI/api/connection-approved-delegate/)(``object`` object, ``IntPtr`` method);</b></h4>
<h4 markdown="1"><b>public [``ConnectionApprovedDelegate``](/api/connection-approved-delegate/)(``object`` object, ``IntPtr`` method);</b></h4>
</div>
<h5><b>Parameters</b></h5>
<div>
Expand Down
2 changes: 1 addition & 1 deletion docs/_api/CryptographyHelper.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ permalink: /api/cryptography-helper/
<div>
<h3 markdown="1">Public Fields</h3>
<div style="line-height: 1;">
<h4 markdown="1"><b>public [``VerifyCertificateDelegate``](/MLAPI/api/verify-certificate-delegate/) OnValidateCertificateCallback;</b></h4>
<h4 markdown="1"><b>public [``VerifyCertificateDelegate``](/api/verify-certificate-delegate/) OnValidateCertificateCallback;</b></h4>
<p>The delegate to invoke to validate the certificates</p>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/_api/CustomDeserializationDelegate_T_.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ permalink: /api/custom-deserialization-delegate%3C-t%3E/
<div>
<h3>Public Constructors</h3>
<div style="line-height: 1; ">
<h4 markdown="1"><b>public [``CustomDeserializationDelegate<T>``](/MLAPI/api/custom-deserialization-delegate%3C-t%3E/)(``object`` object, ``IntPtr`` method);</b></h4>
<h4 markdown="1"><b>public [``CustomDeserializationDelegate<T>``](/api/custom-deserialization-delegate%3C-t%3E/)(``object`` object, ``IntPtr`` method);</b></h4>
</div>
<h5><b>Parameters</b></h5>
<div>
Expand Down
24 changes: 12 additions & 12 deletions docs/_api/CustomMessagingManager.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,65 +15,65 @@ permalink: /api/custom-messaging-manager/
<div>
<h3 markdown="1">Public Static Methods</h3>
<div style="line-height: 1;">
<h4 markdown="1"><b>public static ``void`` SendUnnamedMessage(``List<ulong>`` clientIds, [``BitStream``](/MLAPI/api/bit-stream/) stream, ``string`` channel, [``SecuritySendFlags``](/MLAPI/api/security-send-flags/) security);</b></h4>
<h4 markdown="1"><b>public static ``void`` SendUnnamedMessage(``List<ulong>`` clientIds, [``BitStream``](/api/bit-stream/) stream, ``string`` channel, [``SecuritySendFlags``](/api/security-send-flags/) security);</b></h4>
<p>Sends unnamed message to a list of clients</p>
<h5><b>Parameters</b></h5>
<div>
<p style="font-size: 20px; color: #444;" markdown="1">``List<ulong>`` clientIds</p>
<p>The clients to send to, sends to everyone if null</p>
</div>
<div>
<p style="font-size: 20px; color: #444;" markdown="1">[``BitStream``](/MLAPI/api/bit-stream/) stream</p>
<p style="font-size: 20px; color: #444;" markdown="1">[``BitStream``](/api/bit-stream/) stream</p>
<p>The message stream containing the data</p>
</div>
<div>
<p style="font-size: 20px; color: #444;" markdown="1">``string`` channel</p>
<p>The channel to send the data on</p>
</div>
<div>
<p style="font-size: 20px; color: #444;" markdown="1">[``SecuritySendFlags``](/MLAPI/api/security-send-flags/) security</p>
<p style="font-size: 20px; color: #444;" markdown="1">[``SecuritySendFlags``](/api/security-send-flags/) security</p>
<p>The security settings to apply to the message</p>
</div>
</div>
<br>
<div style="line-height: 1;">
<h4 markdown="1"><b>public static ``void`` SendUnnamedMessage(``ulong`` clientId, [``BitStream``](/MLAPI/api/bit-stream/) stream, ``string`` channel, [``SecuritySendFlags``](/MLAPI/api/security-send-flags/) security);</b></h4>
<h4 markdown="1"><b>public static ``void`` SendUnnamedMessage(``ulong`` clientId, [``BitStream``](/api/bit-stream/) stream, ``string`` channel, [``SecuritySendFlags``](/api/security-send-flags/) security);</b></h4>
<p>Sends a unnamed message to a specific client</p>
<h5><b>Parameters</b></h5>
<div>
<p style="font-size: 20px; color: #444;" markdown="1">``ulong`` clientId</p>
<p>The client to send the message to</p>
</div>
<div>
<p style="font-size: 20px; color: #444;" markdown="1">[``BitStream``](/MLAPI/api/bit-stream/) stream</p>
<p style="font-size: 20px; color: #444;" markdown="1">[``BitStream``](/api/bit-stream/) stream</p>
<p>The message stream containing the data</p>
</div>
<div>
<p style="font-size: 20px; color: #444;" markdown="1">``string`` channel</p>
<p>The channel tos end the data on</p>
</div>
<div>
<p style="font-size: 20px; color: #444;" markdown="1">[``SecuritySendFlags``](/MLAPI/api/security-send-flags/) security</p>
<p style="font-size: 20px; color: #444;" markdown="1">[``SecuritySendFlags``](/api/security-send-flags/) security</p>
<p>The security settings to apply to the message</p>
</div>
</div>
<br>
<div style="line-height: 1;">
<h4 markdown="1"><b>public static ``void`` RegisterNamedMessageHandler(``string`` name, [``HandleNamedMessageDelegate``](/MLAPI/api/handle-named-message-delegate/) callback);</b></h4>
<h4 markdown="1"><b>public static ``void`` RegisterNamedMessageHandler(``string`` name, [``HandleNamedMessageDelegate``](/api/handle-named-message-delegate/) callback);</b></h4>
<p>Registers a named message handler delegate.</p>
<h5><b>Parameters</b></h5>
<div>
<p style="font-size: 20px; color: #444;" markdown="1">``string`` name</p>
<p>Name of the message.</p>
</div>
<div>
<p style="font-size: 20px; color: #444;" markdown="1">[``HandleNamedMessageDelegate``](/MLAPI/api/handle-named-message-delegate/) callback</p>
<p style="font-size: 20px; color: #444;" markdown="1">[``HandleNamedMessageDelegate``](/api/handle-named-message-delegate/) callback</p>
<p>The callback to run when a named message is received.</p>
</div>
</div>
<br>
<div style="line-height: 1;">
<h4 markdown="1"><b>public static ``void`` SendNamedMessage(``string`` name, ``ulong`` clientId, ``Stream`` stream, ``string`` channel, [``SecuritySendFlags``](/MLAPI/api/security-send-flags/) security);</b></h4>
<h4 markdown="1"><b>public static ``void`` SendNamedMessage(``string`` name, ``ulong`` clientId, ``Stream`` stream, ``string`` channel, [``SecuritySendFlags``](/api/security-send-flags/) security);</b></h4>
<p>Sends a named message</p>
<h5><b>Parameters</b></h5>
<div>
Expand All @@ -93,13 +93,13 @@ permalink: /api/custom-messaging-manager/
<p>The channel tos end the data on</p>
</div>
<div>
<p style="font-size: 20px; color: #444;" markdown="1">[``SecuritySendFlags``](/MLAPI/api/security-send-flags/) security</p>
<p style="font-size: 20px; color: #444;" markdown="1">[``SecuritySendFlags``](/api/security-send-flags/) security</p>
<p>The security settings to apply to the message</p>
</div>
</div>
<br>
<div style="line-height: 1;">
<h4 markdown="1"><b>public static ``void`` SendNamedMessage(``string`` name, ``List<ulong>`` clientIds, ``Stream`` stream, ``string`` channel, [``SecuritySendFlags``](/MLAPI/api/security-send-flags/) security);</b></h4>
<h4 markdown="1"><b>public static ``void`` SendNamedMessage(``string`` name, ``List<ulong>`` clientIds, ``Stream`` stream, ``string`` channel, [``SecuritySendFlags``](/api/security-send-flags/) security);</b></h4>
<p>Sends the named message</p>
<h5><b>Parameters</b></h5>
<div>
Expand All @@ -119,7 +119,7 @@ permalink: /api/custom-messaging-manager/
<p>The channel to send the data on</p>
</div>
<div>
<p style="font-size: 20px; color: #444;" markdown="1">[``SecuritySendFlags``](/MLAPI/api/security-send-flags/) security</p>
<p style="font-size: 20px; color: #444;" markdown="1">[``SecuritySendFlags``](/api/security-send-flags/) security</p>
<p>The security settings to apply to the message</p>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/_api/CustomSerializationDelegate_T_.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ permalink: /api/custom-serialization-delegate%3C-t%3E/
<div>
<h3>Public Constructors</h3>
<div style="line-height: 1; ">
<h4 markdown="1"><b>public [``CustomSerializationDelegate<T>``](/MLAPI/api/custom-serialization-delegate%3C-t%3E/)(``object`` object, ``IntPtr`` method);</b></h4>
<h4 markdown="1"><b>public [``CustomSerializationDelegate<T>``](/api/custom-serialization-delegate%3C-t%3E/)(``object`` object, ``IntPtr`` method);</b></h4>
</div>
<h5><b>Parameters</b></h5>
<div>
Expand Down
10 changes: 5 additions & 5 deletions docs/_api/DestroyHandlerDelegate.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ permalink: /api/destroy-handler-delegate/
<div>
<h3>Public Constructors</h3>
<div style="line-height: 1; ">
<h4 markdown="1"><b>public [``DestroyHandlerDelegate``](/MLAPI/api/destroy-handler-delegate/)(``object`` object, ``IntPtr`` method);</b></h4>
<h4 markdown="1"><b>public [``DestroyHandlerDelegate``](/api/destroy-handler-delegate/)(``object`` object, ``IntPtr`` method);</b></h4>
</div>
<h5><b>Parameters</b></h5>
<div>
Expand All @@ -40,18 +40,18 @@ permalink: /api/destroy-handler-delegate/
<div>
<h3 markdown="1">Public Methods</h3>
<div style="line-height: 1;">
<h4 markdown="1"><b>public ``void`` Invoke([``NetworkedObject``](/MLAPI/api/networked-object/) networkedObject);</b></h4>
<h4 markdown="1"><b>public ``void`` Invoke([``NetworkedObject``](/api/networked-object/) networkedObject);</b></h4>
<h5><b>Parameters</b></h5>
<div>
<p style="font-size: 20px; color: #444;" markdown="1">[``NetworkedObject``](/MLAPI/api/networked-object/) networkedObject</p>
<p style="font-size: 20px; color: #444;" markdown="1">[``NetworkedObject``](/api/networked-object/) networkedObject</p>
</div>
</div>
<br>
<div style="line-height: 1;">
<h4 markdown="1"><b>public ``IAsyncResult`` BeginInvoke([``NetworkedObject``](/MLAPI/api/networked-object/) networkedObject, ``AsyncCallback`` callback, ``object`` object);</b></h4>
<h4 markdown="1"><b>public ``IAsyncResult`` BeginInvoke([``NetworkedObject``](/api/networked-object/) networkedObject, ``AsyncCallback`` callback, ``object`` object);</b></h4>
<h5><b>Parameters</b></h5>
<div>
<p style="font-size: 20px; color: #444;" markdown="1">[``NetworkedObject``](/MLAPI/api/networked-object/) networkedObject</p>
<p style="font-size: 20px; color: #444;" markdown="1">[``NetworkedObject``](/api/networked-object/) networkedObject</p>
</div>
<div>
<p style="font-size: 20px; color: #444;" markdown="1">``AsyncCallback`` callback</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/_api/FixedQueue_T_.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ permalink: /api/fixed-queue%3C-t%3E/
<div>
<h3>Public Constructors</h3>
<div style="line-height: 1; ">
<h4 markdown="1"><b>public [``FixedQueue<T>``](/MLAPI/api/fixed-queue%3C-t%3E/)(``int`` maxSize);</b></h4>
<h4 markdown="1"><b>public [``FixedQueue<T>``](/api/fixed-queue%3C-t%3E/)(``int`` maxSize);</b></h4>
<p>Creates a new FixedQueue with a given size</p>
</div>
<h5><b>Parameters</b></h5>
Expand Down
2 changes: 1 addition & 1 deletion docs/_api/HandleNamedMessageDelegate.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ permalink: /api/handle-named-message-delegate/
<div>
<h3>Public Constructors</h3>
<div style="line-height: 1; ">
<h4 markdown="1"><b>public [``HandleNamedMessageDelegate``](/MLAPI/api/handle-named-message-delegate/)(``object`` object, ``IntPtr`` method);</b></h4>
<h4 markdown="1"><b>public [``HandleNamedMessageDelegate``](/api/handle-named-message-delegate/)(``object`` object, ``IntPtr`` method);</b></h4>
</div>
<h5><b>Parameters</b></h5>
<div>
Expand Down
Loading

0 comments on commit c5fd679

Please sign in to comment.