[Visual Basic .NET]
Public Function GetLogFile ( _
    ByVal fileName As String, _
    ByRef pDateCreated As DateTime&, _
    ByRef pDateModified As DateTime& _
) As String
[C#]
public string GetLogFile (
    string fileName,
    ref DateTime& pDateCreated,
    ref DateTime& pDateModified
);
[C++]
HRESULT GetLogFile(
  BSTR fileName,
  DATE* pDateCreated,
  DATE* pDateModified,
  BSTR* pLog
);
[C++]
Parameters
fileName [in]
  fileName is a parameter of type BSTR
pDateCreated [out]
  pDateCreated is a parameter of type DATE
pDateModified [out]
  pDateModified is a parameter of type DATE
pLog [out, retval]
  pLog is a parameter of type BSTR
 
Product Availability
Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server. 
See Also
IServerConfigurationStorage Interface