# C1.WPF.Grid.Extensions.LoadExcelAsync

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="C1_WPF_Grid_Extensions_LoadExcelAsync_" data-uid="C1.WPF.Grid.Extensions.LoadExcelAsync*">LoadExcelAsync Method
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="C1_WPF_Grid_Extensions_LoadExcelAsync_" data-uid="C1.WPF.Grid.Extensions.LoadExcelAsync*"></a>
<h4 id="C1_WPF_Grid_Extensions_LoadExcelAsync_C1_WPF_Grid_FlexGrid_System_String_" data-uid="C1.WPF.Grid.Extensions.LoadExcelAsync(C1.WPF.Grid.FlexGrid,System.String)">LoadExcelAsync(FlexGrid, string)</h4>
<div class="markdown level1 summary"><p>Loads data from an Excel file into the specified grid asynchronously.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public static Task LoadExcelAsync(this FlexGrid grid, string fileName)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Shared Function LoadExcelAsync(grid As FlexGrid, fileName As String) As Task</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="../C1.WPF.Grid/C1.WPF.Grid.FlexGrid.html">FlexGrid</a></td>
      <td><span class="parametername">grid</span></td>
      <td><p>Instance of the <a class="xref" href="../C1.WPF.Grid/C1.WPF.Grid.FlexGrid.html">FlexGrid</a> to load the data into.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
      <td><span class="parametername">fileName</span></td>
      <td><p>The path to the Excel file.</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.threading.tasks.task">Task</a></td>
      <td><p>A <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.threading.tasks.task">Task</a> representing the asynchronous operation.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 id="C1_WPF_Grid_Extensions_LoadExcelAsync_C1_WPF_Grid_FlexGrid_System_String__examples">Examples</h5>
<pre><code class="lang-csharp">var grid = new FlexGrid();
await grid.LoadExcel("ExcelFileSample.xlsx");</code></pre>

<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></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.argumentnullexception">ArgumentNullException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.pathtoolongexception">PathTooLongException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.directorynotfoundexception">DirectoryNotFoundException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.unauthorizedaccessexception">UnauthorizedAccessException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception">FileNotFoundException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.notsupportedexception">NotSupportedException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.ioexception">IOException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception">ArgumentOutOfRangeException</a></td>
      <td></td>
    </tr>
  </tbody>
</table>


<a id="C1_WPF_Grid_Extensions_LoadExcelAsync_" data-uid="C1.WPF.Grid.Extensions.LoadExcelAsync*"></a>
<h4 id="C1_WPF_Grid_Extensions_LoadExcelAsync_C1_WPF_Grid_FlexGrid_System_String_System_String_" data-uid="C1.WPF.Grid.Extensions.LoadExcelAsync(C1.WPF.Grid.FlexGrid,System.String,System.String)">LoadExcelAsync(FlexGrid, string, string)</h4>
<div class="markdown level1 summary"><p>Loads data from an Excel file into the specified grid asynchronously.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public static Task LoadExcelAsync(this FlexGrid grid, string fileName, string sheetName)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Shared Function LoadExcelAsync(grid As FlexGrid, fileName As String, sheetName As String) As Task</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="../C1.WPF.Grid/C1.WPF.Grid.FlexGrid.html">FlexGrid</a></td>
      <td><span class="parametername">grid</span></td>
      <td><p>Instance of the <a class="xref" href="../C1.WPF.Grid/C1.WPF.Grid.FlexGrid.html">FlexGrid</a> to load the data into.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
      <td><span class="parametername">fileName</span></td>
      <td><p>The path to the Excel file.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
      <td><span class="parametername">sheetName</span></td>
      <td><p>The name of the Excel sheet to load. If null, the first sheet will be loaded by default.</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.threading.tasks.task">Task</a></td>
      <td><p>A <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.threading.tasks.task">Task</a> representing the asynchronous operation.</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></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.argumentnullexception">ArgumentNullException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.pathtoolongexception">PathTooLongException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.directorynotfoundexception">DirectoryNotFoundException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.unauthorizedaccessexception">UnauthorizedAccessException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception">FileNotFoundException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.notsupportedexception">NotSupportedException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.ioexception">IOException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception">ArgumentOutOfRangeException</a></td>
      <td></td>
    </tr>
  </tbody>
</table>


<a id="C1_WPF_Grid_Extensions_LoadExcelAsync_" data-uid="C1.WPF.Grid.Extensions.LoadExcelAsync*"></a>
<h4 id="C1_WPF_Grid_Extensions_LoadExcelAsync_C1_WPF_Grid_FlexGrid_System_String_C1_WPF_Grid_LoadExcelOptions_" data-uid="C1.WPF.Grid.Extensions.LoadExcelAsync(C1.WPF.Grid.FlexGrid,System.String,C1.WPF.Grid.LoadExcelOptions)">LoadExcelAsync(FlexGrid, string, LoadExcelOptions)</h4>
<div class="markdown level1 summary"><p>Loads data from an Excel file into the specified grid asynchronously.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public static Task LoadExcelAsync(this FlexGrid grid, string fileName, LoadExcelOptions options)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Shared Function LoadExcelAsync(grid As FlexGrid, fileName As String, options As LoadExcelOptions) As Task</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="../C1.WPF.Grid/C1.WPF.Grid.FlexGrid.html">FlexGrid</a></td>
      <td><span class="parametername">grid</span></td>
      <td><p>Instance of the <a class="xref" href="../C1.WPF.Grid/C1.WPF.Grid.FlexGrid.html">FlexGrid</a> to load the data into.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
      <td><span class="parametername">fileName</span></td>
      <td><p>The path to the Excel file.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="C1.WPF.Grid.LoadExcelOptions.html">LoadExcelOptions</a></td>
      <td><span class="parametername">options</span></td>
      <td><p>A <a class="xref" href="C1.WPF.Grid.LoadExcelOptions.html">LoadExcelOptions</a> loading options.</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.threading.tasks.task">Task</a></td>
      <td><p>A <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.threading.tasks.task">Task</a> representing the asynchronous operation.</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></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.argumentnullexception">ArgumentNullException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.pathtoolongexception">PathTooLongException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.directorynotfoundexception">DirectoryNotFoundException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.unauthorizedaccessexception">UnauthorizedAccessException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception">FileNotFoundException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.notsupportedexception">NotSupportedException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.ioexception">IOException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception">ArgumentOutOfRangeException</a></td>
      <td></td>
    </tr>
  </tbody>
</table>


<a id="C1_WPF_Grid_Extensions_LoadExcelAsync_" data-uid="C1.WPF.Grid.Extensions.LoadExcelAsync*"></a>
<h4 id="C1_WPF_Grid_Extensions_LoadExcelAsync_C1_WPF_Grid_FlexGrid_System_String_System_String_C1_WPF_Grid_LoadExcelOptions_" data-uid="C1.WPF.Grid.Extensions.LoadExcelAsync(C1.WPF.Grid.FlexGrid,System.String,System.String,C1.WPF.Grid.LoadExcelOptions)">LoadExcelAsync(FlexGrid, string, string, LoadExcelOptions)</h4>
<div class="markdown level1 summary"><p>Loads data from an Excel file into the specified grid asynchronously.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public static Task LoadExcelAsync(this FlexGrid grid, string fileName, string sheetName, LoadExcelOptions options)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Shared Function LoadExcelAsync(grid As FlexGrid, fileName As String, sheetName As String, options As LoadExcelOptions) As Task</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="../C1.WPF.Grid/C1.WPF.Grid.FlexGrid.html">FlexGrid</a></td>
      <td><span class="parametername">grid</span></td>
      <td><p>Instance of the <a class="xref" href="../C1.WPF.Grid/C1.WPF.Grid.FlexGrid.html">FlexGrid</a> to load the data into.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
      <td><span class="parametername">fileName</span></td>
      <td><p>The path to the Excel file.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
      <td><span class="parametername">sheetName</span></td>
      <td><p>The name of the Excel sheet to load. If null, the first sheet will be loaded by default.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="C1.WPF.Grid.LoadExcelOptions.html">LoadExcelOptions</a></td>
      <td><span class="parametername">options</span></td>
      <td><p>A <a class="xref" href="C1.WPF.Grid.LoadExcelOptions.html">LoadExcelOptions</a> loading options.</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.threading.tasks.task">Task</a></td>
      <td><p>A <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.threading.tasks.task">Task</a> representing the asynchronous operation.</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></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.argumentnullexception">ArgumentNullException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.pathtoolongexception">PathTooLongException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.directorynotfoundexception">DirectoryNotFoundException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.unauthorizedaccessexception">UnauthorizedAccessException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception">FileNotFoundException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.notsupportedexception">NotSupportedException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.ioexception">IOException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception">ArgumentOutOfRangeException</a></td>
      <td></td>
    </tr>
  </tbody>
</table>


<a id="C1_WPF_Grid_Extensions_LoadExcelAsync_" data-uid="C1.WPF.Grid.Extensions.LoadExcelAsync*"></a>
<h4 id="C1_WPF_Grid_Extensions_LoadExcelAsync_C1_WPF_Grid_FlexGrid_System_String_C1_WPF_Grid_ExcelFileFormat_System_String_C1_WPF_Grid_LoadExcelOptions_System_Threading_CancellationToken_" data-uid="C1.WPF.Grid.Extensions.LoadExcelAsync(C1.WPF.Grid.FlexGrid,System.String,C1.WPF.Grid.ExcelFileFormat,System.String,C1.WPF.Grid.LoadExcelOptions,System.Threading.CancellationToken)">LoadExcelAsync(FlexGrid, string, ExcelFileFormat, string, LoadExcelOptions, CancellationToken)</h4>
<div class="markdown level1 summary"><p>Loads data from an Excel file into the specified grid asynchronously.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public static Task LoadExcelAsync(this FlexGrid grid, string fileName, ExcelFileFormat fileFormat, string sheetName, LoadExcelOptions options, CancellationToken cancellationToken)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Shared Function LoadExcelAsync(grid As FlexGrid, fileName As String, fileFormat As ExcelFileFormat, sheetName As String, options As LoadExcelOptions, cancellationToken As CancellationToken) As Task</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="../C1.WPF.Grid/C1.WPF.Grid.FlexGrid.html">FlexGrid</a></td>
      <td><span class="parametername">grid</span></td>
      <td><p>Instance of the <a class="xref" href="../C1.WPF.Grid/C1.WPF.Grid.FlexGrid.html">FlexGrid</a> to load the data into.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
      <td><span class="parametername">fileName</span></td>
      <td><p>The path to the Excel file.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="C1.WPF.Grid.ExcelFileFormat.html">ExcelFileFormat</a></td>
      <td><span class="parametername">fileFormat</span></td>
      <td><p>A <a class="xref" href="C1.WPF.Grid.ExcelFileFormat.html">ExcelFileFormat</a> file format.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
      <td><span class="parametername">sheetName</span></td>
      <td><p>The name of the Excel sheet to load. If null, the first sheet will be loaded by default.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="C1.WPF.Grid.LoadExcelOptions.html">LoadExcelOptions</a></td>
      <td><span class="parametername">options</span></td>
      <td><p>A <a class="xref" href="C1.WPF.Grid.LoadExcelOptions.html">LoadExcelOptions</a> loading options.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.threading.cancellationtoken">CancellationToken</a></td>
      <td><span class="parametername">cancellationToken</span></td>
      <td><p>The token to monitor for cancellation requests.</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.threading.tasks.task">Task</a></td>
      <td><p>A <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.threading.tasks.task">Task</a> representing the asynchronous operation.</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></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.argumentnullexception">ArgumentNullException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.pathtoolongexception">PathTooLongException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.directorynotfoundexception">DirectoryNotFoundException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.unauthorizedaccessexception">UnauthorizedAccessException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.filenotfoundexception">FileNotFoundException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.notsupportedexception">NotSupportedException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.ioexception">IOException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception">ArgumentOutOfRangeException</a></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.operationcanceledexception">OperationCanceledException</a></td>
      <td></td>
    </tr>
  </tbody>
</table>
</div>
