WebPageTraceListener.TraceEvent 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
向网页或 ASP.NET 跟踪查看器中写入一条事件消息。
重载
TraceEvent(TraceEventCache, String, TraceEventType, Int32, String) |
使用指定的系统数据和事件数据将事件消息写入网页或写入 ASP.NET 跟踪查看器。 |
TraceEvent(TraceEventCache, String, TraceEventType, Int32, String, Object[]) |
使用指定的系统数据和事件数据将本地化的事件消息写入网页或 ASP.NET 跟踪查看器。 |
TraceEvent(TraceEventCache, String, TraceEventType, Int32, String)
使用指定的系统数据和事件数据将事件消息写入网页或写入 ASP.NET 跟踪查看器。
public:
override void TraceEvent(System::Diagnostics::TraceEventCache ^ eventCache, System::String ^ source, System::Diagnostics::TraceEventType severity, int id, System::String ^ message);
public override void TraceEvent (System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType severity, int id, string message);
override this.TraceEvent : System.Diagnostics.TraceEventCache * string * System.Diagnostics.TraceEventType * int * string -> unit
Public Overrides Sub TraceEvent (eventCache As TraceEventCache, source As String, severity As TraceEventType, id As Integer, message As String)
参数
- eventCache
- TraceEventCache
一个包含当前进程 ID、当前线程 ID 以及堆栈跟踪信息的 TraceEventCache。
- source
- String
用于组织输出的类别名称。
- severity
- TraceEventType
TraceEventType 值之一。
- id
- Int32
事件的数值标识符。
- message
- String
要写入的消息。
注解
方法TraceEvent使用 作为类别和message
消息将TraceContext事件消息写入对象source
。
另请参阅
适用于
TraceEvent(TraceEventCache, String, TraceEventType, Int32, String, Object[])
使用指定的系统数据和事件数据将本地化的事件消息写入网页或 ASP.NET 跟踪查看器。
public:
override void TraceEvent(System::Diagnostics::TraceEventCache ^ eventCache, System::String ^ source, System::Diagnostics::TraceEventType severity, int id, System::String ^ format, ... cli::array <System::Object ^> ^ args);
public override void TraceEvent (System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType severity, int id, string format, params object[] args);
override this.TraceEvent : System.Diagnostics.TraceEventCache * string * System.Diagnostics.TraceEventType * int * string * obj[] -> unit
Public Overrides Sub TraceEvent (eventCache As TraceEventCache, source As String, severity As TraceEventType, id As Integer, format As String, ParamArray args As Object())
参数
- eventCache
- TraceEventCache
一个包含当前进程 ID、当前线程 ID 以及堆栈跟踪信息的 TraceEventCache。
- source
- String
用于组织输出的类别名称。
- severity
- TraceEventType
TraceEventType 值之一。
- id
- Int32
事件的数值标识符。
- format
- String
包含零个或更多个格式项的格式字符串,这些项与 args
数组中的对象相对应。
- args
- Object[]
一个包含零个或多个要格式化的对象的数组。
注解
方法 TraceEvent 调用 Format(IFormatProvider, String, Object[]) 方法,传递 format
和使用 args
InvariantCulture 属性将字符串格式化为要写入跟踪查看器或网页的消息。