ASP0019: Suggest using IHeaderDictionary.Append or the indexer
Value | |
---|---|
Rule ID | ASP0019 |
Category | Usage |
Fix is breaking or non-breaking | Non-breaking |
Cause
IDictionary.Add
isn't recommended for setting or appending headers. IDictionary.Add
throws an ArgumentException
when attempting to add a duplicate key.
Rule description
IDictionary.Add
isn't recommended for setting or appending headers.
How to fix violations
To fix a violation of this rule, use IHeaderDictionary.Append
or the indexer to append or set headers.
When to suppress warnings
Do not suppress a warning from this rule.
التعاون معنا على GitHub
يمكن العثور على مصدر هذا المحتوى على GitHub حيث يمكنك أيضاً إضافة مشاكل وطلبات سحب ومراجعتها. للحصول على معلومات إضافية، اطلع على دليل المساهم لدينا.
ASP.NET Core