SwitchLevelAttribute.SwitchLevelType Właściwość

Definicja

Pobiera lub ustawia typ określający, czy ma zostać zapisany ślad.

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

Wartość właściwości

Określa Type , czy należy zapisać ślad.

Wyjątki

Operacja ustawiania nie powiodła się, ponieważ wartość to null.

Przykłady

Poniższy przykład kodu wyświetla wartość SwitchLevelType właściwości obiektu BooleanSwitch.

// Display the SwitchLevelAttribute for the BooleanSwitch.
Object[] attribs = typeof(BooleanSwitch).GetCustomAttributes(typeof(SwitchLevelAttribute), false);
if (attribs.Length == 0)
    Console.WriteLine("Error, couldn't find SwitchLevelAttribute on BooleanSwitch.");
else
    Console.WriteLine(((SwitchLevelAttribute)attribs[0]).SwitchLevelType.ToString());
' Display the SwitchLevelAttribute for the BooleanSwitch.
Dim attribs As [Object]() = GetType(BooleanSwitch).GetCustomAttributes(GetType(SwitchLevelAttribute), False)
If attribs.Length = 0 Then
    Console.WriteLine("Error, couldn't find SwitchLevelAttribute on BooleanSwitch.")
Else
    Console.WriteLine(CType(attribs(0), SwitchLevelAttribute).SwitchLevelType.ToString())
End If

Uwagi

Właściwość level przełącznika nie musi mieć nazwy Level; na przykład właściwość BooleanSwitch level klasy to Enabled.

Dotyczy