Bosphorus.Configuration.Core.IParameterProviderDecorations.Exceptioned C# (CSharp) Method

Exceptioned() public static method

public static Exceptioned ( this extended ) : IParameterProvider
extended this
return IParameterProvider
        public static IParameterProvider Exceptioned(this IParameterProvider extended)
        {
            IParameterProvider decorated = new ExceptionDecorator(extended);
            return decorated;
        }
IParameterProviderDecorations