JustInTimeActivationAttribute.Value Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene il valore dell'impostazione JustInTimeActivationAttribute.
public:
property bool Value { bool get(); };
public bool Value { get; }
member this.Value : bool
Public ReadOnly Property Value As Boolean
Valore della proprietà
true
se è abilitata l'attivazione JIT, in caso contrario false
. Il valore predefinito è true
.
Esempio
L'esempio di codice seguente ottiene il valore della proprietà di Value un JustInTimeActivation
attributo.
[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
Si applica a
Collabora con noi su GitHub
L'origine di questo contenuto è disponibile in GitHub, in cui è anche possibile creare ed esaminare i problemi e le richieste pull. Per ulteriori informazioni, vedere la guida per i collaboratori.