TraceSource.Attributes 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
애플리케이션 구성 파일에 정의된 사용자 지정 스위치 특성을 가져옵니다.
public:
property System::Collections::Specialized::StringDictionary ^ Attributes { System::Collections::Specialized::StringDictionary ^ get(); };
public System.Collections.Specialized.StringDictionary Attributes { get; }
member this.Attributes : System.Collections.Specialized.StringDictionary
Public ReadOnly Property Attributes As StringDictionary
속성 값
추적 스위치의 사용자 지정 특성이 포함된 StringDictionary입니다.
예제
다음 코드 샘플에서는 에 대한 TraceSource사용자 지정 특성을 표시하는 방법을 보여줍니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 TraceSource 클래스입니다.
// Get the custom attributes for the TraceSource.
Console.WriteLine("Number of custom trace source attributes = "
+ ts.Attributes.Count);
foreach (DictionaryEntry de in ts.Attributes)
Console.WriteLine("Custom trace source attribute = "
+ de.Key + " " + de.Value);
' Get the custom attributes for the TraceSource.
Console.WriteLine("Number of custom trace source attributes = " + ts.Attributes.Count)
Dim de As DictionaryEntry
For Each de In ts.Attributes
Console.WriteLine("Custom trace source attribute = " + de.Key + " " + de.Value)
Next de
설명
Attributes 속성 애플리케이션의 구성 파일에서 참조 하는 사용자 지정 특성을 식별 합니다. 참조되지 않은 사용자 지정 특성은 열거되지 않습니다. 클래스에서 TraceSource 상속되는 클래스는 메서드를 재정의하고 Switch.GetSupportedAttributes 사용자 지정 특성 이름의 문자열 배열을 반환하여 사용자 지정 특성을 추가할 수 있습니다.
다음은 사용자 지정 특성을 지정하는 추적 원본 요소의 샘플입니다 SecondTraceSourceAttribute
.
<sources>
<source name="TraceTest" switchName="TestSourceSwitch"
switchType="Testing.MySourceSwitch, TraceSample"
SecondTraceSourceAttribute="two">
</source>
</sources>
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET