JustInTimeActivationAttribute.Value Eigenschaft
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Ruft den Wert der JustInTimeActivationAttribute-Einstellung ab.
public:
property bool Value { bool get(); };
public bool Value { get; }
member this.Value : bool
Public ReadOnly Property Value As Boolean
Eigenschaftswert
true
, wenn die JIT-Aktivierung aktiviert ist, andernfalls false
. Der Standardwert ist true
.
Beispiele
Im folgenden Codebeispiel wird der Wert der Eigenschaft eines JustInTimeActivation
Attributs Value abgerufen.
[JustInTimeActivation(false)]
public class JITAAttribute_Value : ServicedComponent
{
public void ValueExample()
{
// Get the JustInTimeActivationAttribute applied to the class.
JustInTimeActivationAttribute attribute =
(JustInTimeActivationAttribute)Attribute.GetCustomAttribute(
this.GetType(),
typeof(JustInTimeActivationAttribute),
false);
// Display the value of the attribute's Value property.
Console.WriteLine("JustInTimeActivationAttribute.Value: {0}",
attribute.Value);
}
}
<JustInTimeActivation(False)> _
Public Class JITAAttribute_Value
Inherits ServicedComponent
Public Sub ValueExample()
' Get the JustInTimeActivationAttribute applied to the class.
Dim attribute As JustInTimeActivationAttribute = CType(Attribute.GetCustomAttribute(Me.GetType(), GetType(JustInTimeActivationAttribute), False), JustInTimeActivationAttribute)
' Display the value of the attribute's Value property.
MsgBox("JustInTimeActivationAttribute.Value: " & attribute.Value)
End Sub
End Class
Gilt für:
Zusammenarbeit auf GitHub
Die Quelle für diesen Inhalt finden Sie auf GitHub, wo Sie auch Issues und Pull Requests erstellen und überprüfen können. Weitere Informationen finden Sie in unserem Leitfaden für Mitwirkende.