ImportSerializerAttribute Class |
Custom attribute that, when applied to a serializable type, specifies that the serializer of this type has
a dependency on another serializer. The custom attribute can be applied at assembly level; it then
applies to all serializable types in this assembly.
Namespace: PostSharp.Serialization
Assembly: PostSharp (in PostSharp.dll) Version: 2023.0.3.0 (2023.0.3.0)
C#
public sealed class ImportSerializerAttribute : Attribute
The ImportSerializerAttribute type exposes the following members.
Name | Description | |
---|---|---|
ImportSerializerAttribute |
Initializes a new ImportSerializerAttribute.
|
Name | Description | |
---|---|---|
ObjectType |
Gets the type of the object to be made serializable
| |
SerializerType |
Gets the serializer type.
|
This custom attribute is useful to add serializers to types of third-party assemblies. For types whose source code you can modify, it is preferable to use PSerializableAttribute or SerializerAttribute.