RootDesignerSerializerAttribute 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 RootDesignerSerializerAttribute class using the specified attributes.
Overloads
RootDesignerSerializerAttribute(String, String, Boolean) |
Initializes a new instance of the RootDesignerSerializerAttribute class using the specified attributes. |
RootDesignerSerializerAttribute(String, Type, Boolean) |
Initializes a new instance of the RootDesignerSerializerAttribute class using the specified attributes. |
RootDesignerSerializerAttribute(Type, Type, Boolean) |
Initializes a new instance of the RootDesignerSerializerAttribute class using the specified attributes. |
RootDesignerSerializerAttribute(String, String, Boolean)
Initializes a new instance of the RootDesignerSerializerAttribute class using the specified attributes.
public:
RootDesignerSerializerAttribute(System::String ^ serializerTypeName, System::String ^ baseSerializerTypeName, bool reloadable);
public RootDesignerSerializerAttribute (string serializerTypeName, string baseSerializerTypeName, bool reloadable);
public RootDesignerSerializerAttribute (string? serializerTypeName, string? baseSerializerTypeName, bool reloadable);
new System.ComponentModel.Design.Serialization.RootDesignerSerializerAttribute : string * string * bool -> System.ComponentModel.Design.Serialization.RootDesignerSerializerAttribute
Public Sub New (serializerTypeName As String, baseSerializerTypeName As String, reloadable As Boolean)
Parameters
- serializerTypeName
- String
The fully qualified name of the data type of the serializer.
- baseSerializerTypeName
- String
The name of the base type of the serializer. A class can include multiple serializers as they all have different base types.
- reloadable
- Boolean
true
if this serializer supports dynamic reloading of the document; otherwise, false
.
Remarks
Creates a new designer serialization attribute.
Applies to
RootDesignerSerializerAttribute(String, Type, Boolean)
Initializes a new instance of the RootDesignerSerializerAttribute class using the specified attributes.
public:
RootDesignerSerializerAttribute(System::String ^ serializerTypeName, Type ^ baseSerializerType, bool reloadable);
public RootDesignerSerializerAttribute (string serializerTypeName, Type baseSerializerType, bool reloadable);
new System.ComponentModel.Design.Serialization.RootDesignerSerializerAttribute : string * Type * bool -> System.ComponentModel.Design.Serialization.RootDesignerSerializerAttribute
Public Sub New (serializerTypeName As String, baseSerializerType As Type, reloadable As Boolean)
Parameters
- serializerTypeName
- String
The fully qualified name of the data type of the serializer.
- baseSerializerType
- Type
The name of the base type of the serializer. A class can include multiple serializers, as they all have different base types.
- reloadable
- Boolean
true
if this serializer supports dynamic reloading of the document; otherwise, false
.
Remarks
Creates a new designer serialization attribute.
Applies to
RootDesignerSerializerAttribute(Type, Type, Boolean)
Initializes a new instance of the RootDesignerSerializerAttribute class using the specified attributes.
public:
RootDesignerSerializerAttribute(Type ^ serializerType, Type ^ baseSerializerType, bool reloadable);
public RootDesignerSerializerAttribute (Type serializerType, Type baseSerializerType, bool reloadable);
new System.ComponentModel.Design.Serialization.RootDesignerSerializerAttribute : Type * Type * bool -> System.ComponentModel.Design.Serialization.RootDesignerSerializerAttribute
Public Sub New (serializerType As Type, baseSerializerType As Type, reloadable As Boolean)
Parameters
- serializerType
- Type
The data type of the serializer.
- baseSerializerType
- Type
The base type of the serializer. A class can include multiple serializers as they all have different base types.
- reloadable
- Boolean
true
if this serializer supports dynamic reloading of the document; otherwise, false
.
Remarks
Creates a new designer serialization attribute.