C# Class System.Yaml.Serialization.YamlSerializeAttribute

Specify the way to store a property or field of some class or structure. See YamlSerializer for detail.
Inheritance: System.Attribute
Afficher le fichier Open project: jbruening/YamlSerializer-Fork

Méthodes publiques

Méthode Description
YamlSerializeAttribute ( YamlSerializeMethod SerializeMethod )

Specify the way to store a property or field of some class or structure. See YamlSerializer for detail.

Method Details

YamlSerializeAttribute() public méthode

Specify the way to store a property or field of some class or structure. See YamlSerializer for detail.
public YamlSerializeAttribute ( YamlSerializeMethod SerializeMethod )
SerializeMethod YamlSerializeMethod /// /// - Never: The property / field will not be stored. /// /// /// - Assign: When restored, new object is created by using the parameters in /// the YAML data and assigned to the property / field. When the /// property / filed is writeable, this is the default. /// /// /// - Content: Only valid for a property / field that has a class or struct type. /// When restored, instead of recreating the whole class or struct, /// the members are independently restored. When the property / field /// is not writeable this is the default. /// /// /// - Binary: Only valid for a property / field that has an array type of a /// some value type. The content of the array is stored in a binary /// format encoded in base64 style. /// ///