Aracılığıyla paylaş


SwitchAttribute.SwitchType Özellik

Tanım

Anahtarın türünü alır veya ayarlar.

public:
 property Type ^ SwitchType { Type ^ get(); void set(Type ^ value); };
public Type SwitchType { get; set; }
member this.SwitchType : Type with get, set
Public Property SwitchType As Type

Özellik Değeri

Anahtarın türü.

Özel durumlar

SwitchType olarak ayarlanır null.

Örnekler

Aşağıdaki kod örneği, bir derlemede kullanılan tüm anahtarlar için özelliğinin SwitchType değerini görüntüler. Bu kod örneği, sınıfı için TraceSource sağlanan daha büyük bir örneğin parçasıdır.

SwitchAttribute[] switches = SwitchAttribute.GetAll(typeof(TraceTest).Assembly);
for (int i = 0; i < switches.Length; i++)
{
    Console.WriteLine("Switch name = " + switches[i].SwitchName);
    Console.WriteLine("Switch type = " + switches[i].SwitchType);
}
Dim switches As SwitchAttribute() = SwitchAttribute.GetAll(GetType(TraceTest).Assembly)
Dim i As Integer
For i = 0 To switches.Length - 1
    Console.WriteLine("Switch name = " + switches(i).SwitchName.ToString())
    Console.WriteLine("Switch type = " + switches(i).SwitchType.ToString())
Next i

Şunlara uygulanır