EventLogSession.ExportLogAndMessages 方法

定义

将事件及其消息导出到外部日志文件。

重载

ExportLogAndMessages(String, PathType, String, String)

将事件及其消息导出到外部日志文件。

ExportLogAndMessages(String, PathType, String, String, Boolean, CultureInfo)

将事件及其消息导出到外部日志文件。 可以设置标记来指示即使对某些日志的指定查询失败此方法仍将继续导出事件。 将使用指定语言导出事件消息。

ExportLogAndMessages(String, PathType, String, String)

Source:
EventLogSession.cs
Source:
EventLogSession.cs
Source:
EventLogSession.cs

将事件及其消息导出到外部日志文件。

public:
 void ExportLogAndMessages(System::String ^ path, System::Diagnostics::Eventing::Reader::PathType pathType, System::String ^ query, System::String ^ targetFilePath);
public void ExportLogAndMessages (string path, System.Diagnostics.Eventing.Reader.PathType pathType, string query, string targetFilePath);
member this.ExportLogAndMessages : string * System.Diagnostics.Eventing.Reader.PathType * string * string -> unit
Public Sub ExportLogAndMessages (path As String, pathType As PathType, query As String, targetFilePath As String)

参数

path
String

要从其中导出事件的事件日志名称,或要从其中导出事件的事件日志文件的路径。

pathType
PathType

指定路径参数中使用的字符串是否指定事件日志的名称或事件日志文件的路径。

query
String

用于选择要导出的事件的查询。 将仅导出从查询返回的事件。

targetFilePath
String

执行此方法后存储导出事件的日志文件(以 .evtx 结尾)的路径。

示例

有关使用此类的示例代码,请参阅 如何:导出、存档和清除事件日志

注解

事件消息以默认语言导出。

另请参阅

适用于

ExportLogAndMessages(String, PathType, String, String, Boolean, CultureInfo)

Source:
EventLogSession.cs
Source:
EventLogSession.cs
Source:
EventLogSession.cs

将事件及其消息导出到外部日志文件。 可以设置标记来指示即使对某些日志的指定查询失败此方法仍将继续导出事件。 将使用指定语言导出事件消息。

public:
 void ExportLogAndMessages(System::String ^ path, System::Diagnostics::Eventing::Reader::PathType pathType, System::String ^ query, System::String ^ targetFilePath, bool tolerateQueryErrors, System::Globalization::CultureInfo ^ targetCultureInfo);
public void ExportLogAndMessages (string path, System.Diagnostics.Eventing.Reader.PathType pathType, string query, string targetFilePath, bool tolerateQueryErrors, System.Globalization.CultureInfo targetCultureInfo);
member this.ExportLogAndMessages : string * System.Diagnostics.Eventing.Reader.PathType * string * string * bool * System.Globalization.CultureInfo -> unit
Public Sub ExportLogAndMessages (path As String, pathType As PathType, query As String, targetFilePath As String, tolerateQueryErrors As Boolean, targetCultureInfo As CultureInfo)

参数

path
String

要从其中导出事件的事件日志名称,或要从其中导出事件的事件日志文件的路径。

pathType
PathType

指定路径参数中使用的字符串是否指定事件日志的名称或事件日志文件的路径。

query
String

用于选择要导出的事件的查询。 将仅导出从查询返回的事件。

targetFilePath
String

执行此方法后存储导出事件的日志文件(以 .evtx 结尾)的路径。

tolerateQueryErrors
Boolean

true 指示即使对某些日志的指定查询失败此方法仍将继续导出事件,false 指示指定查询失败时此方法将不再继续导出事件。

targetCultureInfo
CultureInfo

指定导出的事件消息将使用哪种语言的区域性。

示例

有关使用此类的示例代码,请参阅 如何:导出、存档和清除事件日志

另请参阅

适用于