Notify

The Notify method is called by the Server Engine to notify an exit module that an event has occurred.

[VB] void Notify(
  long Event,  
  long Context 
);
 
  int Event,  
  int Context 
);
 
[C++] HRESULT Notify(
  LONG Event,  // in
  LONG Context // in
);
 

Parameters

[VB][JAVA][C++] Event
A mask indicating the kind of event that has occurred. The mask can have one of the following flag-bits set.
Name Description
EXITEVENT_INVALID Invalid event
EXITEVENT_CERTISSUED Certificate issued
EXITEVENT_CERTPENDING Certificate pending
EXITEVENT_CERTDENIED Certificate denied
EXITEVENT_CERTREVOKED Certificate revoked
EXITEVENT_CERTRETRIEVEPENDING Retrieval of pending certificate successful.
EXITEVENT_CRLISSUED CRL issued
EXITEVENT_SHUTDOWN Certificate Server shutdown


[VB][JAVA][C++] Context
Specifies a context handle that can be used to get properties associated with the event from the ICertServerExit interface.

Return Values

This method does not return a value.


© 1997 by Microsoft Corporation. All rights reserved.