<div class="content" name="DeleteConfigSection" uuid="f5690b96-ae50-4e3c-ad4f-7fc8fbcc0e8b"><p>The DeleteConfigSection method is received by the server in
an RPC_REQUEST packet. In response, the server attempts to delete the <a href="59774887-09e3-4de5-ad8e-4794f404b123" data-linktype="relative-path">IAppHostElement</a> of the
specified index.</p><dl>
<dd>
<div><pre> HRESULT DeleteConfigSection(
   [in] VARIANT cIndex
 );
</pre></div>
</dd></dl><p><b>cIndex: </b>A <a href="../ms-oaut/a6a540af-38ac-48be-bd40-92e2c01e9aa6" data-linktype="relative-path">VARIANT</a>,
which is used to specify the IAppHostElement object to delete. If the VARIANT
is of type integer, the index is a zero-based index to the collection of
IAppHostElement objects, where 0 indicates the first IAppHostElement object, 1
the second, and so on. If the VARIANT is of type string, the index is the name
of the IAppHostElement object being retrieved.</p><p><b>Return Values: </b>The server MUST return zero if
it successfully processes the message that is received from the client. If
processing fails, the server MUST return a nonzero <a href="../ms-dtyp/a9046ed2-bfb2-4d56-a719-2824afce59ac" data-linktype="relative-path">HRESULT</a>
code as defined in <a href="../ms-erref/1bc92ddf-b79e-413c-bbaa-99a5281a6c90" data-linktype="relative-path">[MS-ERREF]</a>.
The following table describes the error conditions that MUST be handled and the
corresponding error codes. A server MAY return additional
implementation-specific error codes.</p><dl>
<dd>
<table><thead>
  <tr>
   <th>
   <p>Return value/code</p>
   </th>
   <th>
   <p>Description</p>
   </th>
  </tr>
 </thead><tbody><tr>
  <td>0X00000000 NO_ERROR</td>
  <td>The operation completed successfully.</td>
 </tr><tr>
  <td>0X80070057 ERROR_INVALID_PARAMETER</td>
  <td>One or more parameters are incorrect or null.</td>
 </tr><tr>
  <td>0X80070013 ERROR_INVALID_DATA</td>
  <td>Configuration data or schema on the server are malformed or corrupted.</td>
 </tr><tr>
  <td>0X80070021 ERROR_LOCK_VIOLATION</td>
  <td>The instance is not editable.</td>
 </tr><tr>
  <td>0X80070585 ERROR_INVALID_INDEX</td>
  <td>The integer index specified by cIndex is invalid, or the element with name specified by cIndex could not be found.</td>
 </tr><tr>
  <td>0X00000008 ERROR_NOT_ENOUGH_MEMORY</td>
  <td>Not enough memory is available to process this command.</td>
 </tr></tbody></table>
</dd></dl><p> </p></div>