次の方法で共有


DesignerSerializerAttribute クラス

この属性が適用される型の値をシリアル化するためにシリアル化マネージャが使用するシリアライザを示します。このクラスは継承できません。

この型のすべてのメンバの一覧については、DesignerSerializerAttribute メンバ を参照してください。

System.Object
   System.Attribute
      System.ComponentModel.Design.Serialization.DesignerSerializerAttribute

<AttributeUsage(AttributeTargets.Class Or _
   AttributeTargets.Interface)>
NotInheritable Public Class DesignerSerializerAttribute   Inherits Attribute
[C#]
[AttributeUsage(AttributeTargets.Class |
   AttributeTargets.Interface)]
public sealed class DesignerSerializerAttribute : Attribute
[C++]
[AttributeUsage(AttributeTargets::Class |
   AttributeTargets::Interface)]
public __gc __sealed class DesignerSerializerAttribute : public   Attribute
[JScript]
public
   AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface)
class DesignerSerializerAttribute extends Attribute

スレッドセーフ

この型の public static (Visual Basicでは Shared) のすべてのメンバは、マルチスレッド操作で安全に使用できます。インスタンスのメンバの場合は、スレッドセーフであるとは限りません。

解説

DesignerSerializerAttribute は、デザイナ シリアル化マネージャに対して、オブジェクトの値をシリアル化するときに使用する必要のある特定の型のシリアライザを示す方法を提供します。これにより、たとえばカスタム型をシリアル化できるシリアライザを指定できます。この属性をクラスに配置して、クラスのシリアル化に使用するシリアル化オブジェクトを指定します。

使用例

[Visual Basic, C#, C++] DesignerSerializerAttribute を使用して、シリアライザをコンポーネントに関連付けるコードの例を次に示します。

 
<DesignerSerializerAttribute(GetType(ExampleSerializer), GetType(CodeDomSerializer))> _
 Public Class ExampleControl
    Inherits System.Windows.Forms.UserControl

    Public Sub New()
    End Sub
End Class   

[C#] 
[DesignerSerializerAttribute(typeof(ExampleSerializer), typeof(CodeDomSerializer))]
public class ExampleControl : System.Windows.Forms.UserControl
{
    public ExampleControl()
    {

    }
}

[C++] 
[DesignerSerializerAttribute(__typeof(ExampleSerializer), __typeof(CodeDomSerializer))]
public __gc class ExampleControl : public UserControl {
public:

    ExampleControl()
    {
    }
};

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

名前空間: System.ComponentModel.Design.Serialization

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

アセンブリ: System (System.dll 内)

参照

DesignerSerializerAttribute メンバ | System.ComponentModel.Design.Serialization 名前空間 | RootDesignerSerializerAttribute