PersistenceModeAttribute クラス

定義

ASP.NET サーバー コントロールのプロパティまたはイベントをデザイン時に ASP.NET ページに永続化する方法を指定するメタデータ属性を定義します。 このクラスは継承できません。

public ref class PersistenceModeAttribute sealed : Attribute
[System.AttributeUsage(System.AttributeTargets.All)]
public sealed class PersistenceModeAttribute : Attribute
[<System.AttributeUsage(System.AttributeTargets.All)>]
type PersistenceModeAttribute = class
    inherit Attribute
Public NotInheritable Class PersistenceModeAttribute
Inherits Attribute
継承
PersistenceModeAttribute
属性

[PersistenceMode(PersistenceMode.InnerProperty),
TemplateContainer(typeof(TemplateItem))]
public ITemplate MessageTemplate {
   get {
      return _messageTemplate;
   }
   set {
      _messageTemplate = value;
   }
}

<PersistenceMode(PersistenceMode.InnerProperty), TemplateContainer(GetType(TemplateItem))> Public Property MessageTemplate() As ITemplate
   Get
      Return _messageTemplate
   End Get
   Set(ByVal Value As ITemplate)
      _messageTemplate = Value
   End Set
End Property

注釈

属性の使用の詳細については、「 属性」を参照してください。

注意

Visual Studioの Web ページ デザイナーは、プロパティの永続化のためにWindows フォーム コントロールによって必要に応じて公開されるメソッドをサポートResetPropertyNameしていません。 サーバー コントロールは、クラスによって ControlPersister 提供されるメソッドを使用してシリアル化されます。 これらのメソッドの実装は、メタデータ属性 DefaultValueAttribute(. PersistenceModeAttributeDesignerSerializationVisibilityAttribute

コンストラクター

PersistenceModeAttribute(PersistenceMode)

PersistenceModeAttribute クラスの新しいインスタンスを初期化します。

フィールド

Attribute

プロパティまたはイベントを属性として永続化することをサーバー コントロールの開始タグ内に指定します。 このフィールドは読み取り専用です。

Default

PersistenceModeAttribute クラスの既定の型を指定します。 既定値は、PersistenceMode.Attribute です。 このフィールドは読み取り専用です。

EncodedInnerDefaultProperty

プロパティが HTML エンコードされ、ASP.NET サーバー コントロールの唯一の内部の内容として永続化されることを指定します。 このフィールドは読み取り専用です。

InnerDefaultProperty

プロパティを ASP.NET サーバー コントロールの唯一の内部の内容として永続化することを指定します。 このフィールドは読み取り専用です。

InnerProperty

プロパティをサーバー コントロールの開始タグと終了タグの間に入れ子になったタグとして永続化することを指定します。 このフィールドは読み取り専用です。

プロパティ

Mode

PersistenceMode 列挙体の現在の値を取得します。

TypeId

派生クラスで実装されると、この Attribute の一意の識別子を取得します。

(継承元 Attribute)

メソッド

Equals(Object)

PersistenceModeAttribute オブジェクトともう一方のオブジェクトを比較します。

GetHashCode()

PersistenceModeAttribute 属性にハッシュ値を提供します。

GetType()

現在のインスタンスの Type を取得します。

(継承元 Object)
IsDefaultAttribute()

PersistenceModeAttribute オブジェクトが既定の型かどうかを示します。

Match(Object)

派生クラス内でオーバーライドされたときに、指定したオブジェクトとこのインスタンスが等しいかどうかを示す値を返します。

(継承元 Attribute)
MemberwiseClone()

現在の Object の簡易コピーを作成します。

(継承元 Object)
ToString()

現在のオブジェクトを表す文字列を返します。

(継承元 Object)

明示的なインターフェイスの実装

_Attribute.GetIDsOfNames(Guid, IntPtr, UInt32, UInt32, IntPtr)

一連の名前を対応する一連のディスパッチ識別子に割り当てます。

(継承元 Attribute)
_Attribute.GetTypeInfo(UInt32, UInt32, IntPtr)

オブジェクトの型情報を取得します。この情報はインターフェイスの型情報の取得に使用できます。

(継承元 Attribute)
_Attribute.GetTypeInfoCount(UInt32)

オブジェクトが提供する型情報インターフェイスの数 (0 または 1) を取得します。

(継承元 Attribute)
_Attribute.Invoke(UInt32, Guid, UInt32, Int16, IntPtr, IntPtr, IntPtr, IntPtr)

オブジェクトによって公開されたプロパティおよびメソッドへのアクセスを提供します。

(継承元 Attribute)

適用対象

こちらもご覧ください