ConstructorNeedsTagAttribute クラス
アセンブリ: System.Web (system.web.dll 内)

<AttributeUsageAttribute(AttributeTargets.Class)> _ Public NotInheritable Class ConstructorNeedsTagAttribute Inherits Attribute
[AttributeUsageAttribute(AttributeTargets.Class)] public sealed class ConstructorNeedsTagAttribute : Attribute
[AttributeUsageAttribute(AttributeTargets::Class)] public ref class ConstructorNeedsTagAttribute sealed : public Attribute


' Attach the ConstructorNeedsTagAttribute to the custom Simple ' class, which is derived from the WebControl class. This ' instance of the ConstructorNeedsTagAttribute class sets the ' NeedsTag property to true. <ConstructorNeedsTagAttribute(True)> _ <AspNetHostingPermission(SecurityAction.Demand, _ Level:=AspNetHostingPermissionLevel.Minimal)> _ Public NotInheritable Class Simple Inherits WebControl Private NameTag As String = "" Public Sub New(tag As String) Me.NameTag = tag End Sub 'New Private UserMessage As String = Nothing ' Create a property named ControlValue. Public Property ControlValue() As [String] Get Return UserMessage End Get Set UserMessage = value End Set End Property Protected Overrides Sub Render(output As HtmlTextWriter) output.Write("Testing the ConstructorNeedsTagAttribute Class.") End Sub 'Render End Class 'Simple
// Attach the ConstructorNeedsTagAttribute to the custom Simple // class, which is derived from the WebControl class. This // instance of the ConstructorNeedsTagAttribute class sets the // NeedsTag property to true. [ConstructorNeedsTagAttribute(true)] [AspNetHostingPermission(SecurityAction.Demand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class Simple : WebControl { private String NameTag = ""; public Simple(String tag) { this.NameTag = tag; } private String UserMessage = null; // Create a property named ControlValue. public String ControlValue { get { return UserMessage; } set { UserMessage = value; } } protected override void Render(HtmlTextWriter output) { output.Write("Testing the ConstructorNeedsTagAttribute Class."); } }
// Attach the ConstructorNeedsTagAttribute to the custom Simple // class, which is derived from the WebControl class. This // instance of the ConstructorNeedsTagAttribute class sets the // NeedsTag property to true. /** @attribute ConstructorNeedsTagAttribute(true) */ public class Simple extends WebControl { private String nameTag = ""; public Simple(String tag) { this.nameTag = tag; } //Simple private String userMessage = null; // Create a property named ControlValue. /** @property */ public String get_ControlValue() { return userMessage; } //get_ControlValue /** @property */ public void set_ControlValue(String value) { userMessage = value; } //set_ControlValue protected void Render(HtmlTextWriter output) { output.Write("Testing the ConstructorNeedsTagAttribute Class."); } //Render } //Simple

System.Attribute
System.Web.UI.ConstructorNeedsTagAttribute


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


ConstructorNeedsTagAttribute コンストラクタ ()
アセンブリ: System.Web (system.web.dll 内)


' Attach the ConstructorNeedsTagAttribute to the custom ' SimpleControl, which is derived from WebControl. When ' this version of the constructor is used, the NeedsTag ' property is automatically set to false; therefore, ' this class does not need a tag attribute. <ConstructorNeedsTagAttribute()> _ <AspNetHostingPermission(SecurityAction.Demand, _ Level:=AspNetHostingPermissionLevel.Minimal)> _ Public NotInheritable Class SimpleControl Inherits WebControl Private UserMessage As [String] = Nothing ' Create a property named ControlValue. Public Property ControlValue() As [String] Get Return UserMessage End Get Set UserMessage = value End Set End Property Protected Overrides Sub Render(output As HtmlTextWriter) output.Write("Testing the ConstructorNeedsTagAttribute class.") End Sub 'Render End Class 'SimpleControl
// Attach the ConstructorNeedsTagAttribute to the custom // SimpleControl, which is derived from WebControl. When // this version of the constructor is used, the NeedsTag // property is automatically set to false; therefore, // this class does not need a tag attribute. [ConstructorNeedsTagAttribute()] [AspNetHostingPermission(SecurityAction.Demand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class SimpleControl : WebControl { private String UserMessage=null; // Create a property named ControlValue. public String ControlValue { get { return UserMessage; } set { UserMessage = value; } } protected override void Render(HtmlTextWriter output) { output.Write("Testing the ConstructorNeedsTagAttribute class."); } }
// Attach the ConstructorNeedsTagAttribute to the custom // SimpleControl, which is derived from WebControl. When // this version of the constructor is used, the NeedsTag // property is automatically set to false; therefore, // this class does not need a tag attribute. /** @attribute ConstructorNeedsTagAttribute() */ public class SimpleControl extends WebControl { private String userMessage = null; // Create a property named ControlValue. /** @property */ public String get_ControlValue() { return userMessage; } //get_ControlValue /** @property */ public void set_ControlValue(String value) { userMessage = value; } //set_ControlValue protected void Render(HtmlTextWriter output) { output.Write("Testing the ConstructorNeedsTagAttribute class."); } //Render } //SimpleControl

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


ConstructorNeedsTagAttribute コンストラクタ (Boolean)
アセンブリ: System.Web (system.web.dll 内)


タグ名が実行時に定義される単純なカスタム コントロールを作成するコード例を次に示します。実行可能ファイルを作成するために使用されるコマンド ラインを次に示します。
vbc /r:System.dll /r:System.Web.dll /t:library /out:myWebAppPath/Bin/vb_myconstructorNeedsTagAtt.dll constructNeedsTagAtt.vb
' File name: constructorneedstagatt.cs. Imports System Imports System.Web Imports System.Web.UI Imports System.Web.UI.WebControls Imports System.ComponentModel Namespace MyUserControl <ConstructorNeedsTagAttribute(True)> _ Public Class Simple Inherits WebControl Private NameTag As [String] = "" Public Sub New(tag As [String]) Me.NameTag = tag End Sub 'New <System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.Demand, Name:="FullTrust")> _ Protected Overrides Sub Render(output As HtmlTextWriter) output.Write(("<br>The TagName used for the 'Simple' control is " + "'" + NameTag + "'")) End Sub 'Render End Class 'Simple End Namespace 'MyUserControl
/* File Name: constructorneedstagatt.cs. */ using System; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.ComponentModel; namespace MyUserControl { // Attach the 'ConstructorNeedsTagAttribute' to 'Simple' class. [ConstructorNeedsTagAttribute(true)] public class Simple : WebControl { private String NameTag = ""; public Simple(String tag) { this.NameTag = tag; } [System.Security.Permissions.PermissionSet(System.Security.Permissions.SecurityAction.Demand, Name="FullTrust")] protected override void Render(HtmlTextWriter output) { output.Write("<br>The TagName used for the 'Simple' control is "+"'"+NameTag+"'"); } } }
package MyUserControl; /* File Name: constructorneedstagatt.jsl. */ import System.*; import System.Web.*; import System.Web.UI.*; import System.Web.UI.WebControls.*; import System.ComponentModel.*; // Attach the 'ConstructorNeedsTagAttribute' to 'Simple' class. /** @attribute ConstructorNeedsTagAttribute(true) */ public class Simple extends WebControl { private String nameTag = ""; public Simple(String tag) { this.nameTag = tag; } //Simple protected void Render(HtmlTextWriter output) { output.Write("<br>The TagName used for the 'Simple' control is " + "'" + nameTag + "'"); } //Render } //Simple
前述のカスタム コントロールを使用するコード例を次に示します。Register ディレクティブに示される値には、前のコマンド ラインが反映されます。

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


ConstructorNeedsTagAttribute コンストラクタ

名前 | 説明 |
---|---|
ConstructorNeedsTagAttribute () | ConstructorNeedsTagAttribute クラスの新しいインスタンスを初期化します。 |
ConstructorNeedsTagAttribute (Boolean) | ConstructorNeedsTagAttribute クラスの新しいインスタンスを初期化します。 |

ConstructorNeedsTagAttribute プロパティ

名前 | 説明 | |
---|---|---|
![]() | NeedsTag | コントロールのコンストラクタにタグ名が必要かどうかを示します。このプロパティは読み取り専用です。 |
![]() | TypeId | 派生クラスに実装されている場合は、この Attribute の一意の識別子を取得します。 ( Attribute から継承されます。) |

ConstructorNeedsTagAttribute メソッド

名前 | 説明 | |
---|---|---|
![]() | Equals | オーバーロードされます。 ( Attribute から継承されます。) |
![]() | GetCustomAttribute | オーバーロードされます。 アセンブリ、モジュール、型のメンバ、またはメソッド パラメータに適用された指定した型のカスタム属性を取得します。 ( Attribute から継承されます。) |
![]() | GetCustomAttributes | オーバーロードされます。 アセンブリ、モジュール、型のメンバ、またはメソッド パラメータに適用されたカスタム属性の配列を取得します。 ( Attribute から継承されます。) |
![]() | GetHashCode | このインスタンスのハッシュ コードを返します。 ( Attribute から継承されます。) |
![]() | GetType | 現在のインスタンスの Type を取得します。 ( Object から継承されます。) |
![]() | IsDefaultAttribute | 派生クラス内でオーバーライドされたときに、このインスタンスの値が派生クラスの既定値かどうかを示します。 ( Attribute から継承されます。) |
![]() | IsDefined | オーバーロードされます。 指定した型のカスタム属性が、アセンブリ、モジュール、型のメンバ、またはメソッド パラメータに適用されているかどうかを判断します。 ( Attribute から継承されます。) |
![]() | Match | 派生クラス内でオーバーライドされたときに、指定したオブジェクトとこのインスタンスが等しいかどうかを示す値を返します。 ( Attribute から継承されます。) |
![]() | ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 ( Object から継承されます。) |
![]() | ToString | 現在の Object を表す String を返します。 ( Object から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 ( Object から継承されます。) |
![]() | MemberwiseClone | 現在の Object の簡易コピーを作成します。 ( Object から継承されます。) |

ConstructorNeedsTagAttribute メンバ
サーバー コントロールのコンストラクタにタグ名が必要であることを指定します。
ConstructorNeedsTagAttribute データ型で公開されるメンバを以下の表に示します。


名前 | 説明 | |
---|---|---|
![]() | NeedsTag | コントロールのコンストラクタにタグ名が必要かどうかを示します。このプロパティは読み取り専用です。 |
![]() | TypeId | 派生クラスに実装されている場合は、この Attribute の一意の識別子を取得します。(Attribute から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | Equals | オーバーロードされます。 ( Attribute から継承されます。) |
![]() | GetCustomAttribute | オーバーロードされます。 アセンブリ、モジュール、型のメンバ、またはメソッド パラメータに適用された指定した型のカスタム属性を取得します。 (Attribute から継承されます。) |
![]() | GetCustomAttributes | オーバーロードされます。 アセンブリ、モジュール、型のメンバ、またはメソッド パラメータに適用されたカスタム属性の配列を取得します。 (Attribute から継承されます。) |
![]() | GetHashCode | このインスタンスのハッシュ コードを返します。 (Attribute から継承されます。) |
![]() | GetType | 現在のインスタンスの Type を取得します。 (Object から継承されます。) |
![]() | IsDefaultAttribute | 派生クラス内でオーバーライドされたときに、このインスタンスの値が派生クラスの既定値かどうかを示します。 (Attribute から継承されます。) |
![]() | IsDefined | オーバーロードされます。 指定した型のカスタム属性が、アセンブリ、モジュール、型のメンバ、またはメソッド パラメータに適用されているかどうかを判断します。 (Attribute から継承されます。) |
![]() | Match | 派生クラス内でオーバーライドされたときに、指定したオブジェクトとこのインスタンスが等しいかどうかを示す値を返します。 (Attribute から継承されます。) |
![]() | ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 (Object から継承されます。) |
![]() | ToString | 現在の Object を表す String を返します。 (Object から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 (Object から継承されます。) |
![]() | MemberwiseClone | 現在の Object の簡易コピーを作成します。 (Object から継承されます。) |

Weblioに収録されているすべての辞書からConstructorNeedsTagAttributeを検索する場合は、下記のリンクをクリックしてください。

- ConstructorNeedsTagAttributeのページへのリンク