The WFO1000 security analyzer flags overridden properties of standard control descendants, which are already configured for serialization at the base-component level. This results in false positives.
Example:
public class CustomControl3 : Control
{
public override Cursor Cursor
{
get => base.Cursor;
set => base.Cursor = value;
}
}
Impact:
This affects custom controls and generates unnecessary warnings, hindering productivity.
Replaces a part of the Bug of #12476.