Class BsonIgnoreIfDefaultAttribute
- Namespace
- MongoDB.Bson.Serialization.Attributes
- Assembly
- MongoDB.Bson.dll
Indicates whether a field or property equal to the default value should be ignored when serializing this class.
[AttributeUsage(AttributeTargets.Property|AttributeTargets.Field)]
public class BsonIgnoreIfDefaultAttribute : Attribute, IBsonMemberMapAttribute
- Inheritance
-
BsonIgnoreIfDefaultAttribute
- Implements
- Inherited Members
- Extension Methods
Constructors
BsonIgnoreIfDefaultAttribute()
Initializes a new instance of the BsonIgnoreIfDefaultAttribute class.
public BsonIgnoreIfDefaultAttribute()
BsonIgnoreIfDefaultAttribute(bool)
Initializes a new instance of the BsonIgnoreIfDefaultAttribute class.
public BsonIgnoreIfDefaultAttribute(bool value)
Parameters
value
boolWhether a field or property equal to the default value should be ignored when serializing this class.
Properties
Value
Gets whether a field or property equal to the default value should be ignored when serializing this class.
public bool Value { get; }
Property Value
Methods
Apply(BsonMemberMap)
Applies a modification to the member map.
public void Apply(BsonMemberMap memberMap)
Parameters
memberMap
BsonMemberMapThe member map.