<div class="content" name="NewEnum" uuid="47b2ec93-1b77-49d7-b68a-ab5dc4cc8628"><p>The _NewEnum method creates a copy of the collection.</p><dl>
<dd>
<div><pre> [propget, id(DISPID_NEWENUM)] HRESULT _NewEnum(
   [out, retval] IUnknown** pVal
 );
</pre></div>
</dd></dl><p><b>pVal: </b>A pointer to a pointer to the <b>IUnknown</b>
interface of a new copy of the collection.</p><p><b>Return Values: </b>A signed 32-bit value
indicating return status. This method MUST return zero to indicate success, or
an <a href="../ms-dtyp/a9046ed2-bfb2-4d56-a719-2824afce59ac" data-linktype="relative-path">HRESULT</a>
error value (as specified in <a href="../ms-erref/1bc92ddf-b79e-413c-bbaa-99a5281a6c90" data-linktype="relative-path">[MS-ERREF]</a>
section <a href="../ms-erref/705fb797-2175-4a90-b5a3-3918024b10b8" data-linktype="relative-path">2.1.1</a>)
to indicate failure.</p><dl>
<dd>
<table><thead>
  <tr>
   <th>
   <p>Return value/code</p>
   </th>
   <th>
   <p>Description</p>
   </th>
  </tr>
 </thead><tbody><tr>
  <td>0x00000000 S_OK</td>
  <td>The call was successful.</td>
 </tr><tr>
  <td>0x80004003 E_POINTER</td>
  <td>The method failed due to an invalid pointer.</td>
 </tr><tr>
  <td>0x8007000E E_OUTOFMEMORY</td>
  <td>The method was unable to allocate required memory.</td>
 </tr></tbody></table>
</dd></dl><p><b>Exceptions Thrown:</b></p><p>No exceptions are thrown beyond those thrown by the
underlying <a href="1ef0b4e0-d88e-4b60-bc24-c983bec1e088#gt_8a7f6700-8311-45bc-af10-82e10accd331" data-linktype="relative-path">RPC</a> protocol <a href="../ms-rpce/290c38b1-92fe-4229-91e6-4fc376610c15" data-linktype="relative-path">[MS-RPCE]</a>.</p></div>