Appccelerate.Bootstrapper.Specification.when_the_bootstrapping_process_is_reported.StringReporter.Dump C# (CSharp) Метод

Dump() приватный статический Метод

private static Dump ( IReportingContext context ) : string
context IReportingContext
Результат string
            private static string Dump(IReportingContext context)
            {
                var builder = new StringBuilder();

                context.Extensions.ToList().ForEach(e => Dump(e.Name, e.Description, builder, 0));

                Dump(context.Run, builder);
                Dump(context.Shutdown, builder);

                return builder.ToString();
            }

Same methods

when_the_bootstrapping_process_is_reported.StringReporter::Dump ( IEnumerable executableContexts, StringBuilder sb ) : void
when_the_bootstrapping_process_is_reported.StringReporter::Dump ( IExecutionContext executionContext, StringBuilder sb ) : void
when_the_bootstrapping_process_is_reported.StringReporter::Dump ( string name, string description, StringBuilder sb, int indent ) : void
when_the_bootstrapping_process_is_reported.StringReporter