Click or drag to resize

AssemblyDebugModeCacheExtensions Class

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

Extends the AssemblyDebugModeCache class with methods to easily add debug mode settings from various sources.
Inheritance Hierarchy
SystemObject
  NerdyDuck.CodedExceptions.ConfigurationAssemblyDebugModeCacheExtensions

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 AssemblyDebugModeCacheExtensions
View Source

The AssemblyDebugModeCacheExtensions type exposes the following members.

Methods
  NameDescription
Public methodStatic memberFromApplicationConfiguration(AssemblyDebugModeCache)
Loads a list of assembly debug mode settings from the application configuration file (app.config / web.config) and adds them to the cache.
Public methodStatic memberFromApplicationConfiguration(AssemblyDebugModeCache, String)
Loads a list of assembly debug mode settings 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 assembly debug mode settings from the specified IConfiguration, and adds them to the cache.
Public methodStatic memberFromJson(AssemblyDebugModeCache)
Loads a list of assembly debug mode settings from the default JSON file and adds them to the cache.
Public methodStatic memberFromJson(AssemblyDebugModeCache, Stream)
Loads a list of assembly debug mode settings from the specified stream containing JSON data, and adds them to the cache.
Public methodStatic memberFromJson(AssemblyDebugModeCache, TextReader)
Loads a list of assembly debug mode settings from the specified TextReader containing JSON data, and adds them to the cache.
Public methodStatic memberFromJson(AssemblyDebugModeCache, JsonValue)
Loads a list of assembly debug mode settings from the specified JSON object, and adds them to the cache.
Public methodStatic memberFromJson(AssemblyDebugModeCache, String)
Loads a list of assembly debug mode settings from the JSON file at the specified path and adds them to the cache.
Public methodStatic memberFromXml(AssemblyDebugModeCache)
Loads a list of assembly debug mode settings from the default XML file and adds them to the cache.
Public methodStatic memberFromXml(AssemblyDebugModeCache, Stream)
Loads a list of assembly debug mode settings from the specified stream containing XML data, and adds them to the cache.
Public methodStatic memberFromXml(AssemblyDebugModeCache, TextReader)
Loads a list of assembly debug mode settings from the specified TextReader containing XML data, and adds them to the cache.
Public methodStatic memberFromXml(AssemblyDebugModeCache, String)
Loads a list of assembly debug mode settings from the XML file at the specified path and adds them to the cache.
Public methodStatic memberFromXml(AssemblyDebugModeCache, XmlReader)
Loads a list of assembly debug mode settings from the specified XmlReader, and adds them to the cache.
Top
See Also