AspNetEdit.Editor.ComponentModel.EventPropertyDescriptor.ShouldSerializeValue C# (CSharp) Method

ShouldSerializeValue() public method

public ShouldSerializeValue ( object component ) : bool
component object
return bool
        public override bool ShouldSerializeValue(object component)
        {
            if (GetValue (component) == null) return false;
            return true;
        }