Menu

Retrieves a collection of Application Verifier stops that are associated with the check.

Copy Code
HRESULT 
    get_Stops
   (
    IAppVerifierImageStops**  
    ppStops
  
);

Parameters

ppStops

[out] Points to a collection of Application Verifier stops.

Return Value

The following list includes the most like return values. However, other return values are possible.

S_OK

The method succeeded.

E_FAIL

Procedure failed.

E_POINTER

Pointer is invalid.

E_OUTOFMEMORY

Ran out of memory during procedure.

Remarks

If the image check is not enabled, IAppVerifierImageCheck::get_Properties and IAppVerifierImageCheck::get_Stops will fail and return E_FAIL. Therefore, you should determine that the check is enabled before using these methods. This is especially true when you are using a language that supports the FOR EACH construct to enumerate the checks collection.

See Also