Skip to content

Commit

Permalink
index.mdの最後にリポジトリへのリンクを追加した。
Browse files Browse the repository at this point in the history
  • Loading branch information
shimodateakira committed Sep 25, 2024
1 parent d0773ad commit d3f6002
Show file tree
Hide file tree
Showing 42 changed files with 1,045 additions and 729 deletions.
119 changes: 119 additions & 0 deletions docs/api/AkiraNetwork.VirtualStorageLibrary.VirtualDirectory.html
Original file line number Diff line number Diff line change
Expand Up @@ -796,6 +796,76 @@ <h5 class="typeParameters">Type Parameters</h5>
<tr>
<td><span class="parametername">T</span></td>
<td><p>The data type of the item.</p>
</td>
</tr>
</tbody>
</table>
<a id="AkiraNetwork_VirtualStorageLibrary_VirtualDirectory_AddRange_" data-uid="AkiraNetwork.VirtualStorageLibrary.VirtualDirectory.AddRange*"></a>
<h4 id="AkiraNetwork_VirtualStorageLibrary_VirtualDirectory_AddRange_System_Collections_Generic_IEnumerable_AkiraNetwork_VirtualStorageLibrary_VirtualNode__System_Boolean_" data-uid="AkiraNetwork.VirtualStorageLibrary.VirtualDirectory.AddRange(System.Collections.Generic.IEnumerable{AkiraNetwork.VirtualStorageLibrary.VirtualNode},System.Boolean)">AddRange(IEnumerable&lt;VirtualNode&gt;, bool)</h4>
<div class="markdown level1 summary"><p>Adds multiple nodes to the directory.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public IList&lt;VirtualNode&gt; AddRange(IEnumerable&lt;VirtualNode&gt; nodes, bool allowOverwrite = false)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1">IEnumerable</a>&lt;<a class="xref" href="AkiraNetwork.VirtualStorageLibrary.VirtualNode.html">VirtualNode</a>&gt;</td>
<td><span class="parametername">nodes</span></td>
<td><p>The nodes to add.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.boolean">bool</a></td>
<td><span class="parametername">allowOverwrite</span></td>
<td><p>If true, allows overwriting existing nodes with the same names.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1">IList</a>&lt;<a class="xref" href="AkiraNetwork.VirtualStorageLibrary.VirtualNode.html">VirtualNode</a>&gt;</td>
<td><p>A list of the added nodes. If a node was cloned, the cloned instance is returned in the list.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="exceptions">Exceptions</h5>
<table class="table table-bordered table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Condition</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.argumentexception">ArgumentException</a></td>
<td><p>Thrown if an invalid node name is specified in any of the nodes.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.invalidoperationexception">InvalidOperationException</a></td>
<td><p>Thrown if a node with the same name already exists and overwriting is not allowed.</p>
</td>
</tr>
</tbody>
Expand Down Expand Up @@ -1590,6 +1660,55 @@ <h5 class="returns">Returns</h5>
<tr>
<td><a class="xref" href="AkiraNetwork.VirtualStorageLibrary.VirtualDirectory.html">VirtualDirectory</a></td>
<td><p>The directory with the added node.</p>
</td>
</tr>
</tbody>
</table>
<a id="AkiraNetwork_VirtualStorageLibrary_VirtualDirectory_op_Addition_" data-uid="AkiraNetwork.VirtualStorageLibrary.VirtualDirectory.op_Addition*"></a>
<h4 id="AkiraNetwork_VirtualStorageLibrary_VirtualDirectory_op_Addition_AkiraNetwork_VirtualStorageLibrary_VirtualDirectory_System_Collections_Generic_IList_AkiraNetwork_VirtualStorageLibrary_VirtualNode__" data-uid="AkiraNetwork.VirtualStorageLibrary.VirtualDirectory.op_Addition(AkiraNetwork.VirtualStorageLibrary.VirtualDirectory,System.Collections.Generic.IList{AkiraNetwork.VirtualStorageLibrary.VirtualNode})">operator +(VirtualDirectory, IList&lt;VirtualNode&gt;)</h4>
<div class="markdown level1 summary"><p>Overloads the addition operator to add multiple nodes to the directory using AddRange.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static VirtualDirectory operator +(VirtualDirectory directory, IList&lt;VirtualNode&gt; nodes)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="AkiraNetwork.VirtualStorageLibrary.VirtualDirectory.html">VirtualDirectory</a></td>
<td><span class="parametername">directory</span></td>
<td><p>The directory to which the nodes are added.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1">IList</a>&lt;<a class="xref" href="AkiraNetwork.VirtualStorageLibrary.VirtualNode.html">VirtualNode</a>&gt;</td>
<td><span class="parametername">nodes</span></td>
<td><p>The nodes to add.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="AkiraNetwork.VirtualStorageLibrary.VirtualDirectory.html">VirtualDirectory</a></td>
<td><p>The directory with the added nodes.</p>
</td>
</tr>
</tbody>
Expand Down
2 changes: 2 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,8 @@ <h2 id="documentation">Documentation</h2>
tools, CSS, etc., used.</p>
</li>
</ul>
<h2 id="repository">Repository</h2>
<p><a href="https://github.com/AkiraNetwork/VirtualStorageLibrary">VirtualStorageLibrary GitHub</a></p>

</article>
</div>
Expand Down
2 changes: 2 additions & 0 deletions docs/index.ja.html
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,8 @@ <h2 id="ドキュメント">ドキュメント</h2>
このライブラリのライセンスと使用しているライブラリ、ツール、CSS等のライセンスについて情報を提供しています。</p>
</li>
</ul>
<h2 id="リポジトリ">リポジトリ</h2>
<p><a href="https://github.com/AkiraNetwork/VirtualStorageLibrary">VirtualStorageLibrary GitHub</a></p>

</article>
</div>
Expand Down
Loading

0 comments on commit d3f6002

Please sign in to comment.