The WFO1000 security analyzer flags static properties of components, which are not used for serialization. This results in false positives.
Example:
public class CustomControl2 : Control
{
public static string? Value1 { get; set; }
public static string? Value2 { get; private set; }
}
Impact:
This affects custom controls and generates unnecessary warnings, hindering productivity.
Replaces a part of the Bug of #12476.
The WFO1000 security analyzer flags static properties of components, which are not used for serialization. This results in false positives.
Example:
Impact:
This affects custom controls and generates unnecessary warnings, hindering productivity.
Replaces a part of the Bug of #12476.