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
.NET Framework のセキュリティ
プラットフォーム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 プロパティ
を検索
- JustInTimeActivationAttribute.Value プロパティのページへのリンク