# C1.DataCollection.ISupportRangeEditing-1

## Content

<div class="doc-site-dotnet-api-container">



  <h1 id="C1_DataCollection_ISupportRangeEditing_1" data-uid="C1.DataCollection.ISupportRangeEditing`1" class="text-break">ISupportRangeEditing&lt;T&gt; Interface
</h1>
  <div class="markdown level0 summary"><p>Specifies a calling contract for collections that support range editing.</p>
</div>
  <div class="markdown level0 conceptual"></div>
  <h6><strong>Namespace</strong>: <a class="xref" href="C1.DataCollection.html">C1.DataCollection</a></h6>
  <h6><strong>Assembly</strong>: C1.DataCollection.dll</h6>
  <h5 id="C1_DataCollection_ISupportRangeEditing_1_syntax">Syntax</h5>
  <div class="codewrapper">
    <pre><code class="lang-csharp hljs">public interface ISupportRangeEditing&lt;in T&gt; : ISupportEditing&lt;T&gt;</code></pre>
  </div>
  <div class="codewrapper">
    <pre><code class="lang-vbnet hljs">Public Interface ISupportRangeEditing(Of In T)
    Inherits ISupportEditing(Of T)</code></pre>
  </div>
  <h5 class="typeParameters">Type Parameters</h5>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td><span class="parametername">T</span></td>
        <td></td>
      </tr>
    </tbody>
  </table>
  <h3 id="methods">Methods
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_DataCollection_ISupportRangeEditing_1_CanInsertRange_System_Int32_System_Collections_Generic_IEnumerable__0__" data-uid="C1.DataCollection.ISupportRangeEditing`1.CanInsertRange(System.Int32,System.Collections.Generic.IEnumerable{`0})">
          <a class="xref" href="C1.DataCollection.ISupportRangeEditing-1.CanInsertRange.html#C1_DataCollection_ISupportRangeEditing_1_CanInsertRange_System_Int32_System_Collections_Generic_IEnumerable__0__">CanInsertRange(int, IEnumerable&lt;T&gt;)</a>
        </td>
        <td class="markdown level1 summary"><p>Determines whether a new range of items can be inserted in the collection at the specified <code class="paramref">startingIndex</code>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_DataCollection_ISupportRangeEditing_1_CanMoveRange_System_Int32_System_Int32_System_Int32_" data-uid="C1.DataCollection.ISupportRangeEditing`1.CanMoveRange(System.Int32,System.Int32,System.Int32)">
          <a class="xref" href="C1.DataCollection.ISupportRangeEditing-1.CanMoveRange.html#C1_DataCollection_ISupportRangeEditing_1_CanMoveRange_System_Int32_System_Int32_System_Int32_">CanMoveRange(int, int, int)</a>
        </td>
        <td class="markdown level1 summary"><p>Determines whether the item at <code class="paramref">fromIndex</code> can be moved to <code class="paramref">toIndex</code>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_DataCollection_ISupportRangeEditing_1_CanRemoveRange_System_Int32_System_Int32_" data-uid="C1.DataCollection.ISupportRangeEditing`1.CanRemoveRange(System.Int32,System.Int32)">
          <a class="xref" href="C1.DataCollection.ISupportRangeEditing-1.CanRemoveRange.html#C1_DataCollection_ISupportRangeEditing_1_CanRemoveRange_System_Int32_System_Int32_">CanRemoveRange(int, int)</a>
        </td>
        <td class="markdown level1 summary"><p>Determines whether a range of items at the specified <code class="paramref">startingIndex</code> can be removed from the collection.</p>
</td>
      </tr>
      <tr>
        <td id="C1_DataCollection_ISupportRangeEditing_1_CanReplaceRange_System_Int32_System_Collections_Generic_IEnumerable__0__" data-uid="C1.DataCollection.ISupportRangeEditing`1.CanReplaceRange(System.Int32,System.Collections.Generic.IEnumerable{`0})">
          <a class="xref" href="C1.DataCollection.ISupportRangeEditing-1.CanReplaceRange.html#C1_DataCollection_ISupportRangeEditing_1_CanReplaceRange_System_Int32_System_Collections_Generic_IEnumerable__0__">CanReplaceRange(int, IEnumerable&lt;T&gt;)</a>
        </td>
        <td class="markdown level1 summary"><p>Determines whether the items starting at the specified <code class="paramref">startingIndex</code> can be replaced in the collection.</p>
</td>
      </tr>
      <tr>
        <td id="C1_DataCollection_ISupportRangeEditing_1_InsertRangeAsync_System_Int32_System_Collections_Generic_IEnumerable__0__System_Threading_CancellationToken_" data-uid="C1.DataCollection.ISupportRangeEditing`1.InsertRangeAsync(System.Int32,System.Collections.Generic.IEnumerable{`0},System.Threading.CancellationToken)">
          <a class="xref" href="C1.DataCollection.ISupportRangeEditing-1.InsertRangeAsync.html#C1_DataCollection_ISupportRangeEditing_1_InsertRangeAsync_System_Int32_System_Collections_Generic_IEnumerable__0__System_Threading_CancellationToken_">InsertRangeAsync(int, IEnumerable&lt;T&gt;, CancellationToken)</a>
        </td>
        <td class="markdown level1 summary"><p>Inserts the specified <code class="paramref">items</code> at the specified <code class="paramref">startingIndex</code> in the collection.</p>
</td>
      </tr>
      <tr>
        <td id="C1_DataCollection_ISupportRangeEditing_1_MoveRangeAsync_System_Int32_System_Int32_System_Int32_System_Threading_CancellationToken_" data-uid="C1.DataCollection.ISupportRangeEditing`1.MoveRangeAsync(System.Int32,System.Int32,System.Int32,System.Threading.CancellationToken)">
          <a class="xref" href="C1.DataCollection.ISupportRangeEditing-1.MoveRangeAsync.html#C1_DataCollection_ISupportRangeEditing_1_MoveRangeAsync_System_Int32_System_Int32_System_Int32_System_Threading_CancellationToken_">MoveRangeAsync(int, int, int, CancellationToken)</a>
        </td>
        <td class="markdown level1 summary"><p>Moves the items starting at the specified <code class="paramref">fromIndex</code> to <code class="paramref">toIndex</code>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_DataCollection_ISupportRangeEditing_1_RemoveRangeAsync_System_Int32_System_Int32_System_Threading_CancellationToken_" data-uid="C1.DataCollection.ISupportRangeEditing`1.RemoveRangeAsync(System.Int32,System.Int32,System.Threading.CancellationToken)">
          <a class="xref" href="C1.DataCollection.ISupportRangeEditing-1.RemoveRangeAsync.html#C1_DataCollection_ISupportRangeEditing_1_RemoveRangeAsync_System_Int32_System_Int32_System_Threading_CancellationToken_">RemoveRangeAsync(int, int, CancellationToken)</a>
        </td>
        <td class="markdown level1 summary"><p>Removes the items at the specified <code class="paramref">startingIndex</code> from the collection.</p>
</td>
      </tr>
      <tr>
        <td id="C1_DataCollection_ISupportRangeEditing_1_ReplaceRangeAsync_System_Int32_System_Collections_Generic_IEnumerable__0__System_Threading_CancellationToken_" data-uid="C1.DataCollection.ISupportRangeEditing`1.ReplaceRangeAsync(System.Int32,System.Collections.Generic.IEnumerable{`0},System.Threading.CancellationToken)">
          <a class="xref" href="C1.DataCollection.ISupportRangeEditing-1.ReplaceRangeAsync.html#C1_DataCollection_ISupportRangeEditing_1_ReplaceRangeAsync_System_Int32_System_Collections_Generic_IEnumerable__0__System_Threading_CancellationToken_">ReplaceRangeAsync(int, IEnumerable&lt;T&gt;, CancellationToken)</a>
        </td>
        <td class="markdown level1 summary"><p>Replaces the items starting at the specified <code class="paramref">startingIndex</code> by the specified <code class="paramref">items</code>.</p>
</td>
      </tr>
    </tbody>
  </table>

</div>
