ILogUIPlugin::OnProperties

The ILogUIPlugin::OnProperties method is invoked by IIS when the administrator clicks Properties... on the site tab of the server Properties dialog in the MMC.

virtual HRESULT STDMETHODCALLTYPE OnProperties(
  [IN] OLECHAR * pocMachineName,  // name of machine on which server is running
  [IN] OLECHAR * pocMetabasePath  // metabase path to server
); 
 

Parameters

pocMachineName
Pointer to a Unicode character array that specifies the name of the machine on which the server is running.
pocMetabasePath
Pointer to Unicode character array that specifies the metabase path to the Web or FTP server.

Remarks

After your implementation of ILogUIPlugin::OnProperties completes execution, IIS will reload the instance of your custom logging module that is assigned to the affected Web or FTP server. This reload, which includes invocation of the custom logging module's ILogPlugin::InitializeLog and ILogPlugin::QueryExtraLoggingFields methods, allows your logging module to re-initialize itself with any values in the metabase that might have been changed by the user interface module.

See Also

ILogPlugin::InitializeLog, ILogPlugin::QueryExtraLoggingFields