3.2.4.2.23.6 NonMembers (get) (Opnum 16)

The NonMembers (get) method returns the non-members of the file group.

 [propget, id(FSRM_PROPERTY(FSRM_DISPID_FILEGROUP | 0x03))] HRESULT NonMembers(
   [out, retval] IFsrmMutableCollection** nonMembers
 );

nonMembers: Pointer to an IFsrmMutableCollection interface pointer (section 3.2.4.2.2) that upon completion contains a list of all the file name patterns that are non-members of the file group. A caller MUST release the collection received when it is done with it.

Return Values: The method MUST return zero on success, or a nonzero error code on failure.

Return value/code

Description

0x80070057

E_INVALIDARG

This code is returned for the following reasons:

  • The nonMembers parameter is NULL.

  • The nonMembers parameter contains non-valid characters or is NULL. The following are considered invalid characters: comma (,), single quote ('), double quote ("), vertical bar (|).

Upon receiving this message, the server MUST validate parameters:

  • Verify that nonMembers is not NULL.

If any validation fails, the server MUST terminate processing and return a nonzero error code.

The server MUST populate nonMembers with the list of file name patterns that are non-members of the file group.