| LogFileHelperGetLogFileContents Method |
Gets the contents of the specified log file. For Jumbo internal use only.
Namespace:
Ookii.Jumbo
Assembly:
Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 2.0.0
Syntax public static string GetLogFileContents(
string serverName,
LogFileKind kind,
int maxSize
)
Public Shared Function GetLogFileContents (
serverName As String,
kind As LogFileKind,
maxSize As Integer
) As String
public:
static String^ GetLogFileContents(
String^ serverName,
LogFileKind kind,
int maxSize
)
static member GetLogFileContents :
serverName : string *
kind : LogFileKind *
maxSize : int -> string
Parameters
- serverName
- Type: SystemString
Name of the server whose log file to return. - kind
- Type: Ookii.JumboLogFileKind
The kind of log file. - maxSize
- Type: SystemInt32
The maximum size, or zero to return the entire log file..
Return Value
Type:
StringThe contents of the log file, or
if the log file doesn't exist.
See Also