Click or drag to resize

AssemblyFacilityOverrideCacheExtensions Class

[This is preliminary documentation and is subject to change.]

Extends the AssemblyFacilityOverrideCache class with methods to easily add assembly facility identifier overrides from various sources.
Inheritance Hierarchy
SystemObject
  NerdyDuck.CodedExceptions.ConfigurationAssemblyFacilityOverrideCacheExtensions

Namespace:  NerdyDuck.CodedExceptions.Configuration
Assembly:  NerdyDuck.CodedExceptions.Configuration (in NerdyDuck.CodedExceptions.Configuration.dll) Version: 2.0.0+2040dad
Syntax
[EditorBrowsableAttribute(EditorBrowsableState.Never)]
public static class AssemblyFacilityOverrideCacheExtensions
View Source

The AssemblyFacilityOverrideCacheExtensions type exposes the following members.

Methods
  NameDescription
Public methodStatic memberFromApplicationConfiguration(AssemblyFacilityOverrideCache)
Loads a list of facility identifier overrides from the application configuration file (app.config / web.config) and adds them to the cache.
Public methodStatic memberFromApplicationConfiguration(AssemblyFacilityOverrideCache, String)
Loads a list of facility identifier overrides from the specified section of the application configuration file (app.config / web.config) and adds them to the cache.
Public methodStatic memberFromConfigurationSection
Loads a list of facility identifier overrides from the specified IConfiguration, and adds them to the cache.
Public methodStatic memberFromJson(AssemblyFacilityOverrideCache)
Loads a list of facility identifier overrides from the default JSON file and adds them to the cache.
Public methodStatic memberFromJson(AssemblyFacilityOverrideCache, Stream)
Loads a list of facility identifier overrides from the specified stream containing JSON data, and adds them to the cache.
Public methodStatic memberFromJson(AssemblyFacilityOverrideCache, TextReader)
Loads a list of facility identifier overrides from the specified TextReader containing JSON data, and adds them to the cache.
Public methodStatic memberFromJson(AssemblyFacilityOverrideCache, JsonValue)
Loads a list of facility identifier overrides from the specified JSON object, and adds them to the cache.
Public methodStatic memberFromJson(AssemblyFacilityOverrideCache, String)
Loads a list of facility identifier overrides from the JSON file at the specified path and adds them to the cache.
Public methodStatic memberFromXml(AssemblyFacilityOverrideCache)
Loads a list of facility identifier overrides from the default XML file and adds them to the cache.
Public methodStatic memberFromXml(AssemblyFacilityOverrideCache, Stream)
Loads a list of facility identifier overrides from the specified stream containing XML data, and adds them to the cache.
Public methodStatic memberFromXml(AssemblyFacilityOverrideCache, TextReader)
Loads a list of facility identifier overrides from the specified TextReader containing XML data, and adds them to the cache.
Public methodStatic memberFromXml(AssemblyFacilityOverrideCache, String)
Loads a list of facility identifier overrides from the XML file at the specified path and adds them to the cache.
Public methodStatic memberFromXml(AssemblyFacilityOverrideCache, XmlReader)
Loads a list of facility identifier overrides from the specified XmlReader, and adds them to the cache.
Top
See Also