DesignerSerializerAttribute Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the DesignerSerializerAttribute class.
Overloads
DesignerSerializerAttribute(String, String) |
Initializes a new instance of the DesignerSerializerAttribute class. |
DesignerSerializerAttribute(String, Type) |
Initializes a new instance of the DesignerSerializerAttribute class. |
DesignerSerializerAttribute(Type, Type) |
Initializes a new instance of the DesignerSerializerAttribute class. |
DesignerSerializerAttribute(String, String)
Initializes a new instance of the DesignerSerializerAttribute class.
public:
DesignerSerializerAttribute(System::String ^ serializerTypeName, System::String ^ baseSerializerTypeName);
public DesignerSerializerAttribute (string? serializerTypeName, string? baseSerializerTypeName);
public DesignerSerializerAttribute (string serializerTypeName, string baseSerializerTypeName);
new System.ComponentModel.Design.Serialization.DesignerSerializerAttribute : string * string -> System.ComponentModel.Design.Serialization.DesignerSerializerAttribute
Public Sub New (serializerTypeName As String, baseSerializerTypeName As String)
Parameters
- serializerTypeName
- String
The fully qualified name of the data type of the serializer.
- baseSerializerTypeName
- String
The fully qualified name of the base data type of the serializer. Multiple serializers can be supplied for a class as long as the serializers have different base types.
See also
Applies to
DesignerSerializerAttribute(String, Type)
Initializes a new instance of the DesignerSerializerAttribute class.
public:
DesignerSerializerAttribute(System::String ^ serializerTypeName, Type ^ baseSerializerType);
public DesignerSerializerAttribute (string? serializerTypeName, Type baseSerializerType);
public DesignerSerializerAttribute (string serializerTypeName, Type baseSerializerType);
new System.ComponentModel.Design.Serialization.DesignerSerializerAttribute : string * Type -> System.ComponentModel.Design.Serialization.DesignerSerializerAttribute
Public Sub New (serializerTypeName As String, baseSerializerType As Type)
Parameters
- serializerTypeName
- String
The fully qualified name of the data type of the serializer.
- baseSerializerType
- Type
The base data type of the serializer. Multiple serializers can be supplied for a class as long as the serializers have different base types.
See also
Applies to
DesignerSerializerAttribute(Type, Type)
Initializes a new instance of the DesignerSerializerAttribute class.
public:
DesignerSerializerAttribute(Type ^ serializerType, Type ^ baseSerializerType);
public DesignerSerializerAttribute (Type serializerType, Type baseSerializerType);
new System.ComponentModel.Design.Serialization.DesignerSerializerAttribute : Type * Type -> System.ComponentModel.Design.Serialization.DesignerSerializerAttribute
Public Sub New (serializerType As Type, baseSerializerType As Type)
Parameters
- serializerType
- Type
The data type of the serializer.
- baseSerializerType
- Type
The base data type of the serializer. Multiple serializers can be supplied for a class as long as the serializers have different base types.