# C1.Util.DX.Storage.NativeFileShare

## Content

<div class="doc-site-dotnet-api-container">




  <h1 id="C1_Util_DX_Storage_NativeFileShare" data-uid="C1.Util.DX.Storage.NativeFileShare" class="text-break">NativeFileShare Enum
</h1>
  <div class="markdown level0 summary"><p>Native file share.</p>
</div>
  <div class="markdown level0 conceptual"></div>
  <h6><strong>Namespace</strong>: <a class="xref" href="C1.Util.DX.Storage.html">C1.Util.DX.Storage</a></h6>
  <h6><strong>Assembly</strong>: C1.Win.DX.10.dll</h6>
  <h5 id="C1_Util_DX_Storage_NativeFileShare_syntax">Syntax</h5>
  <div class="codewrapper">
    <pre><code class="lang-csharp hljs">[Flags]
public enum NativeFileShare</code></pre>
  </div>
  <div class="codewrapper">
    <pre><code class="lang-vbnet hljs">&lt;Flags&gt;
Public Enum NativeFileShare</code></pre>
  </div>
  <h3 id="fields">Fields
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    <thead>
    </thead></thead><tbody>
      <tr>
        <td id="C1_Util_DX_Storage_NativeFileShare_Delete">Delete</td>
        <td><p>Enables subsequent open operations on an object to request delete access.
Otherwise, other processes cannot open the object if they request delete access.
If this flag is not specified, but the object has been opened for delete access, the function fails.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Util_DX_Storage_NativeFileShare_None">None</td>
        <td><p>None flag.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Util_DX_Storage_NativeFileShare_Read">Read</td>
        <td><p>Enables subsequent open operations on an object to request read access.
Otherwise, other processes cannot open the object if they request read access.
If this flag is not specified, but the object has been opened for read access, the function fails.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Util_DX_Storage_NativeFileShare_ReadWrite">ReadWrite</td>
        <td><p>Read and Write flags.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Util_DX_Storage_NativeFileShare_Write">Write</td>
        <td><p>Enables subsequent open operations on an object to request write access.
Otherwise, other processes cannot open the object if they request write access.
If this flag is not specified, but the object has been opened for write access, the function fails.</p>
</td>
      </tr>
    </tbody>
  </table>
</div>
