ActivitySource Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ActivitySource(String) | |
ActivitySource(String, String) |
Constructs an activity source object with the specified |
ActivitySource(String, String, IEnumerable<KeyValuePair<String,Object>>) |
ActivitySource(String)
public:
ActivitySource(System::String ^ name);
public ActivitySource (string name);
new System.Diagnostics.ActivitySource : string -> System.Diagnostics.ActivitySource
Public Sub New (name As String)
Parameters
- name
- String
Applies to
ActivitySource(String, String)
- Source:
- ActivitySource.cs
- Source:
- ActivitySource.cs
- Source:
- ActivitySource.cs
Constructs an activity source object with the specified name
.
public ActivitySource (string name, string? version = "");
new System.Diagnostics.ActivitySource : string * string -> System.Diagnostics.ActivitySource
Public Sub New (name As String, Optional version As String = "")
Parameters
- name
- String
The name of the activity source object.
- version
- String
The version of the component publishing the tracing info.
Applies to
ActivitySource(String, String, IEnumerable<KeyValuePair<String,Object>>)
public ActivitySource (string name, string? version = "", System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,object?>>? tags = default);
new System.Diagnostics.ActivitySource : string * string * seq<System.Collections.Generic.KeyValuePair<string, obj>> -> System.Diagnostics.ActivitySource
Public Sub New (name As String, Optional version As String = "", Optional tags As IEnumerable(Of KeyValuePair(Of String, Object)) = Nothing)
Parameters
- name
- String
- version
- String
- tags
- IEnumerable<KeyValuePair<String,Object>>
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET