Historical Content Alert

This is a historical content for Windows NT 4.0 product and is presented for informative purposes only. All content in this directory is copyrighted and owned by Microsoft.

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.


Share this article: