DesignerSerializerAttribute Class
.NET Framework 3.0
Indicates a serializer for the serialization manager to use to serialize the values of the type this attribute is applied to. This class cannot be inherited.
Namespace: System.ComponentModel.Design.Serialization
Assembly: System (in system.dll)
Assembly: System (in system.dll)
'Declaration <AttributeUsageAttribute(AttributeTargets.Class Or AttributeTargets.Interface, AllowMultiple:=True, Inherited:=True)> _ Public NotInheritable Class DesignerSerializerAttribute Inherits Attribute 'Usage Dim instance As DesignerSerializerAttribute
/** @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
Not applicable.
DesignerSerializerAttribute provides a way to indicate to the designer serialization manager that a specific type of serializer should be used when serializing the values of an object. This allows you to specify a serializer that is capable of serializing a custom type, for instance. Place this attribute on a class to indicate the serialization object to use when serializing the class.
The following code uses a DesignerSerializerAttribute to associate an example serializer with an example component.
<DesignerSerializerAttribute(GetType(ExampleSerializer), GetType(CodeDomSerializer))> _ Public Class ExampleControl Inherits System.Windows.Forms.UserControl Public Sub New() End Sub End Class
/** @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
System.Attribute
System.ComponentModel.Design.Serialization.DesignerSerializerAttribute
Windows 98, Windows Server 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
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: