次の方法で共有


PersistenceModeAttribute クラス

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

名前空間: System.Web.UI
アセンブリ: System.Web (system.web.dll 内)

構文

'宣言
<AttributeUsageAttribute(AttributeTargets.All)> _
Public NotInheritable Class PersistenceModeAttribute
    Inherits Attribute
'使用
Dim instance As PersistenceModeAttribute
[AttributeUsageAttribute(AttributeTargets.All)] 
public sealed class PersistenceModeAttribute : Attribute
[AttributeUsageAttribute(AttributeTargets::All)] 
public ref class PersistenceModeAttribute sealed : public Attribute
/** @attribute AttributeUsageAttribute(AttributeTargets.All) */ 
public final class PersistenceModeAttribute extends Attribute
AttributeUsageAttribute(AttributeTargets.All) 
public final class PersistenceModeAttribute extends Attribute
適用できません。

解説

属性の使用方法については、「属性を使用したメタデータの拡張」を参照してください。

メモメモ :

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

使用例

<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
[PersistenceMode(PersistenceMode.InnerProperty),
TemplateContainer(typeof(TemplateItem))]
public ITemplate MessageTemplate {
   get {
      return _messageTemplate;
   }
   set {
      _messageTemplate = value;
   }
}

.NET Framework のセキュリティ

継承階層

System.Object
   System.Attribute
    System.Web.UI.PersistenceModeAttribute

スレッド セーフ

この型の public static (Visual Basicでは共有) メンバはすべて,スレッド セーフです。インスタンス メンバの場合は,スレッド セーフであるとは限りません。

プラットフォーム

Windows 98,Windows Server 2000 SP4,Windows CE,Windows Millennium Edition,Windows Mobile for Pocket PC,Windows Mobile for Smartphone,Windows Server 2003,Windows XP Media Center Edition,Windows XP Professional x64 Edition,Windows XP SP2,Windows XP Starter Edition

Microsoft .NET Framework 3.0 は Windows Vista,Microsoft Windows XP SP2,および Windows Server 2003 SP1 でサポートされています。

バージョン情報

.NET Framework

サポート対象 : 3.0,2.0,1.1,1.0

参照

関連項目

PersistenceModeAttribute メンバ
System.Web.UI 名前空間
Attribute