JustInTimeActivationAttribute.Value プロパティ
アセンブリ: System.EnterpriseServices (system.enterpriseservices.dll 内)

JIT アクティベーションが有効な場合は true。それ以外の場合は false。既定値は true です。

JustInTimeActivation 属性の 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 '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


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 によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


JustInTimeActivationAttribute クラス
JustInTimeActivationAttribute メンバ
System.EnterpriseServices 名前空間
Weblioに収録されているすべての辞書からJustInTimeActivationAttribute.Value プロパティを検索する場合は、下記のリンクをクリックしてください。

- JustInTimeActivationAttribute.Value プロパティのページへのリンク