Freigeben über


JustInTimeActivationAttribute.Value-Eigenschaft

Ruft den Wert der JustInTimeActivationAttribute-Einstellung ab.

Namespace: System.EnterpriseServices
Assembly: System.EnterpriseServices (in system.enterpriseservices.dll)

Syntax

'Declaration
Public ReadOnly Property Value As Boolean
'Usage
Dim instance As JustInTimeActivationAttribute
Dim value As Boolean

value = instance.Value
public bool Value { get; }
public:
property bool Value {
    bool get ();
}
/** @property */
public boolean get_Value ()
public function get Value () : boolean

Eigenschaftenwert

true, wenn die JIT-Aktivierung aktiviert ist, andernfalls false. Der Standardwert ist true.

Beispiel

Im folgenden Codebeispiel wird der Wert der Value-Eigenschaft eines JustInTimeActivation-Attributs abgerufen.

<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 'ValueExample
End Class 'JITAAttribute_Value
[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);
    }
}
/** @attribute JustInTimeActivation(false)
 */
public class JITAAttribute_Value extends ServicedComponent
{
    public void ValueExample()
    {
        // Get the JustInTimeActivationAttribute applied to the class.
        JustInTimeActivationAttribute attribute = 
            (JustInTimeActivationAttribute)(Attribute.GetCustomAttribute(
            this.GetType(), JustInTimeActivationAttribute.class.ToType(),
            false));

        // Display the value of the attribute's Value property.
        Console.WriteLine("JustInTimeActivationAttribute.Value: {0}",
            System.Convert.ToString(attribute.get_Value()));
    } //ValueExample
} //JITAAttribute_Value

.NET Framework-Sicherheit

  • Volle Vertrauenswürdigkeit für den unmittelbaren Aufrufer. Dieser Member kann von nur teilweise vertrauenswürdigem Code nicht verwendet werden. Weitere Informationen finden Sie unter .

Plattformen

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

Siehe auch

Referenz

JustInTimeActivationAttribute-Klasse
JustInTimeActivationAttribute-Member
System.EnterpriseServices-Namespace