DesignerSerializerAttribute 类

指示某个序列化管理器的序列化程序,它将用于序列化此属性所应用到的类型的值。无法继承此类。

**命名空间:**System.ComponentModel.Design.Serialization
**程序集:**System(在 system.dll 中)

语法

声明
<AttributeUsageAttribute(AttributeTargets.Class Or AttributeTargets.Interface, AllowMultiple:=True, Inherited:=True)> _
Public NotInheritable Class DesignerSerializerAttribute
    Inherits Attribute
用法
Dim instance As DesignerSerializerAttribute
[AttributeUsageAttribute(AttributeTargets.Class|AttributeTargets.Interface, AllowMultiple=true, Inherited=true)] 
public sealed class DesignerSerializerAttribute : Attribute
[AttributeUsageAttribute(AttributeTargets::Class|AttributeTargets::Interface, AllowMultiple=true, Inherited=true)] 
public ref class DesignerSerializerAttribute sealed : public Attribute
/** @attribute AttributeUsageAttribute(AttributeTargets.Class|AttributeTargets.Interface, AllowMultiple=true, Inherited=true) */ 
public final class DesignerSerializerAttribute extends Attribute
AttributeUsageAttribute(AttributeTargets.Class|AttributeTargets.Interface, AllowMultiple=true, Inherited=true) 
public final class DesignerSerializerAttribute extends Attribute

备注

DesignerSerializerAttribute 提供一种方法,以指示设计器序列化管理器在序列化对象的值时应使用特定类型的序列化程序。例如,这使您可以指定能够序列化自定义类型的序列化程序。将此属性置于类上以指示在序列化类时将使用的序列化对象。

示例

下面的代码使用 DesignerSerializerAttribute 将示例序列化程序与示例组件关联。

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

    Public Sub New()
    End Sub
End Class   
[DesignerSerializerAttribute(typeof(ExampleSerializer), typeof(CodeDomSerializer))]
public class ExampleControl : System.Windows.Forms.UserControl
{
    public ExampleControl()
    {

    }
}
[DesignerSerializerAttribute(ExampleSerializer::typeid,CodeDomSerializer::typeid)]
public ref class ExampleControl: public UserControl
{
public:
   ExampleControl()
   {

   }
};
/** @attribute DesignerSerializerAttribute(ExampleSerializer.class, 
    CodeDomSerializer.class)
 */
public class ExampleControl extends System.Windows.Forms.UserControl
{
    public ExampleControl()
    {
    } //ExampleControl
} //ExampleControl    

继承层次结构

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

线程安全

此类型的任何公共静态(Visual Basic 中的 Shared)成员都是线程安全的,但不保证所有实例成员都是线程安全的。

平台

Windows 98、Windows 2000 SP4、Windows Millennium Edition、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition

.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求

版本信息

.NET Framework

受以下版本支持:2.0、1.1、1.0

请参见

参考

DesignerSerializerAttribute 成员
System.ComponentModel.Design.Serialization 命名空间

其他资源

设计器序列化概述