Skip to content
This repository has been archived by the owner on Feb 20, 2019. It is now read-only.

Latest commit

 

History

History
36 lines (27 loc) · 643 Bytes

RS0030.md

File metadata and controls

36 lines (27 loc) · 643 Bytes

RS0030

Title SymbolIsBanned
CheckId RS0030
Category API Design Rules

Cause

The symbol that has been marked as banned in this project was used. An alternate should be used instead.

Rule description

TODO

How to fix violations

To fix a violation of this rule, replace the usage of the banned symbol with an allowed alternative.

How to suppress violations

#pragma warning disable RS0030 // Do not used banned APIs
obj.BannedMethod();
#pragma warning restore RS0030 // Do not used banned APIs