Catel.Runtime.Serialization.SerializerModifierBase.ShouldIgnoreMember C# (CSharp) Method

ShouldIgnoreMember() public method

Determines whether the specified member should be ignored.
public ShouldIgnoreMember ( ISerializationContext context, object model, MemberValue memberValue ) : bool
context ISerializationContext The context.
model object The model.
memberValue MemberValue The member value.
return bool
        public virtual bool ShouldIgnoreMember(ISerializationContext context, object model, MemberValue memberValue)
        {
            return false;
        }