Click or drag to resize

AssemblyDebugModeCacheIsDebugModeEnabled Method (Type)

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

Attempts to find the debug mode setting with the best match for the assembly containing the specified type.

Namespace:  NerdyDuck.CodedExceptions.Configuration
Assembly:  NerdyDuck.CodedExceptions (in NerdyDuck.CodedExceptions.dll) Version: 2.0.0+2040dad
Syntax
public bool IsDebugModeEnabled(
	Type type
)
View Source

Parameters

type
Type: SystemType
The type that is part of the assembly to get the debug mode setting for.

Return Value

Type: Boolean
, if a match for the specified type's assembly was found, and IsEnabled is ; otherwise, .
Exceptions
ExceptionCondition
ObjectDisposedExceptionThe current object is already disposed.
ArgumentNullExceptiontype is .
Remarks
See Match(Assembly) for the algorithm to find the best match for the assembly.
See Also