ILogPlugin::GetConfig

The ILogPlugin::GetConfig method is a private method and is used only for compatibility reasons to support RPC-based server interfaces from previous releases of IIS.

virtual HRESULT STDMETHODCALLTYPE GetConfig(
  IN DWORD cbSize,   //the size of the log configuration object
  PBYTE Log          //a pointer to the configuration information
);
 

Parameters

cbsize
The size of the log configuration object.
Log
Points to the configuration information.

Remarks

This is a private interface method used by IIS when it calls the built-in logging modules. Custom logging modules should return FALSE when this method is called.

See Also

ILogPlugin::SetConfig