EventSource.Write 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
写入某个事件。
重载
Write(String) |
使用指定的名称和默认选项而非字段来写入事件。 |
Write(String, EventSourceOptions) |
使用指定的名称和选项而非字段来写入事件。 |
Write<T>(String, T) |
使用指定的名称和数据写入事件。 |
Write<T>(String, EventSourceOptions, T) |
使用指定的名称、事件数据和选项写入事件。 |
Write<T>(String, EventSourceOptions, T) |
使用指定的名称、选项和事件数据写入事件。 |
Write<T>(String, EventSourceOptions, Guid, Guid, T) |
使用指定的名称、选项、相关活动和事件数据写入事件。 |
Write(String)
- Source:
- TraceLoggingEventSource.cs
- Source:
- TraceLoggingEventSource.cs
- Source:
- TraceLoggingEventSource.cs
使用指定的名称和默认选项而非字段来写入事件。
public:
void Write(System::String ^ eventName);
public void Write (string eventName);
public void Write (string? eventName);
member this.Write : string -> unit
Public Sub Write (eventName As String)
参数
- eventName
- String
要写入的事件的名称。
例外
eventName
为 null
。
适用于
Write(String, EventSourceOptions)
- Source:
- TraceLoggingEventSource.cs
- Source:
- TraceLoggingEventSource.cs
- Source:
- TraceLoggingEventSource.cs
使用指定的名称和选项而非字段来写入事件。
public:
void Write(System::String ^ eventName, System::Diagnostics::Tracing::EventSourceOptions options);
public void Write (string eventName, System.Diagnostics.Tracing.EventSourceOptions options);
public void Write (string? eventName, System.Diagnostics.Tracing.EventSourceOptions options);
member this.Write : string * System.Diagnostics.Tracing.EventSourceOptions -> unit
Public Sub Write (eventName As String, options As EventSourceOptions)
参数
- eventName
- String
要写入的事件的名称。
- options
- EventSourceOptions
事件的级别、关键字和操作代码等选项。
例外
eventName
为 null
。
适用于
Write<T>(String, T)
- Source:
- TraceLoggingEventSource.cs
- Source:
- TraceLoggingEventSource.cs
- Source:
- TraceLoggingEventSource.cs
使用指定的名称和数据写入事件。
public:
generic <typename T>
void Write(System::String ^ eventName, T data);
public void Write<T> (string eventName, T data);
public void Write<T> (string? eventName, T data);
member this.Write : string * 'T -> unit
Public Sub Write(Of T) (eventName As String, data As T)
类型参数
- T
定义事件及其关联数据的类型。 此类型必须为匿名类型或以 EventSourceAttribute 属性进行标记。
参数
- eventName
- String
事件的名称。
- data
- T
事件数据。 此类型必须为匿名类型或以 EventDataAttribute 属性进行标记。
注解
如果 eventName
为 null
,则事件名称将自动派生自类型 T 的事件数据, (Name) 或根据类型 T
的名称确定。 的公共实例属性 data
将以递归方式写入,以创建事件字段。
适用于
Write<T>(String, EventSourceOptions, T)
- Source:
- TraceLoggingEventSource.cs
- Source:
- TraceLoggingEventSource.cs
- Source:
- TraceLoggingEventSource.cs
使用指定的名称、事件数据和选项写入事件。
public:
generic <typename T>
void Write(System::String ^ eventName, System::Diagnostics::Tracing::EventSourceOptions options, T data);
public void Write<T> (string eventName, System.Diagnostics.Tracing.EventSourceOptions options, T data);
public void Write<T> (string? eventName, System.Diagnostics.Tracing.EventSourceOptions options, T data);
member this.Write : string * System.Diagnostics.Tracing.EventSourceOptions * 'T -> unit
Public Sub Write(Of T) (eventName As String, options As EventSourceOptions, data As T)
类型参数
- T
定义事件及其关联数据的类型。 此类型必须为匿名类型或以 EventSourceAttribute 属性进行标记。
参数
- eventName
- String
事件的名称。
- options
- EventSourceOptions
事件选项。
- data
- T
事件数据。 此类型必须为匿名类型或以 EventDataAttribute 属性进行标记。
注解
如果 eventName
为 null
,则事件名称将自动派生自类型 T 的事件数据, (Name) 或根据类型 T
的名称确定。 的公共实例属性 data
将以递归方式写入,以创建事件字段。
适用于
Write<T>(String, EventSourceOptions, T)
- Source:
- TraceLoggingEventSource.cs
- Source:
- TraceLoggingEventSource.cs
- Source:
- TraceLoggingEventSource.cs
使用指定的名称、选项和事件数据写入事件。
public:
generic <typename T>
void Write(System::String ^ eventName, System::Diagnostics::Tracing::EventSourceOptions % options, T % data);
public void Write<T> (string eventName, ref System.Diagnostics.Tracing.EventSourceOptions options, ref T data);
public void Write<T> (string? eventName, ref System.Diagnostics.Tracing.EventSourceOptions options, ref T data);
member this.Write : string * EventSourceOptions * 'T -> unit
Public Sub Write(Of T) (eventName As String, ByRef options As EventSourceOptions, ByRef data As T)
类型参数
- T
定义事件及其关联数据的类型。 此类型必须为匿名类型或以 EventSourceAttribute 属性进行标记。
参数
- eventName
- String
事件的名称。
- options
- EventSourceOptions
事件选项。
- data
- T
事件数据。 此类型必须为匿名类型或以 EventDataAttribute 属性进行标记。
注解
如果 eventName
为 null
,则事件名称将自动派生自类型 T 的事件数据, (Name) 或根据类型 T
的名称确定。 的公共实例属性 data
将以递归方式写入,以创建事件字段。
适用于
Write<T>(String, EventSourceOptions, Guid, Guid, T)
- Source:
- TraceLoggingEventSource.cs
- Source:
- TraceLoggingEventSource.cs
- Source:
- TraceLoggingEventSource.cs
使用指定的名称、选项、相关活动和事件数据写入事件。
public:
generic <typename T>
void Write(System::String ^ eventName, System::Diagnostics::Tracing::EventSourceOptions % options, Guid % activityId, Guid % relatedActivityId, T % data);
public void Write<T> (string eventName, ref System.Diagnostics.Tracing.EventSourceOptions options, ref Guid activityId, ref Guid relatedActivityId, ref T data);
public void Write<T> (string? eventName, ref System.Diagnostics.Tracing.EventSourceOptions options, ref Guid activityId, ref Guid relatedActivityId, ref T data);
member this.Write : string * EventSourceOptions * Guid * Guid * 'T -> unit
Public Sub Write(Of T) (eventName As String, ByRef options As EventSourceOptions, ByRef activityId As Guid, ByRef relatedActivityId As Guid, ByRef data As T)
类型参数
- T
定义事件及其关联数据的类型。 此类型必须为匿名类型或以 EventSourceAttribute 属性进行标记。
参数
- eventName
- String
事件的名称。
- options
- EventSourceOptions
事件选项。
- activityId
- Guid
与事件关联的活动的 ID。
- data
- T
事件数据。 此类型必须为匿名类型或以 EventDataAttribute 属性进行标记。
注解
如果 eventName
为 null
,则事件名称将自动派生自类型 T 的事件数据, (Name) 或根据类型 T
的名称确定。 的公共实例属性 data
将以递归方式写入,以创建事件字段。