Title | SymbolIsBanned |
CheckId | RS0030 |
Category | API Design Rules |
The symbol that has been marked as banned in this project was used. An alternate should be used instead.
TODO
To fix a violation of this rule, replace the usage of the banned symbol with an allowed alternative.
#pragma warning disable RS0030 // Do not used banned APIs
obj.BannedMethod();
#pragma warning restore RS0030 // Do not used banned APIs