NServiceBus.AcceptanceTesting.ContextAppenderFactory.SetContext C# (CSharp) Method

SetContext() public static method

Because ILoggerFactory interface methods are only used in a static context. This is the only way to set the currently executing context.
public static SetContext ( ScenarioContext newContext ) : void
newContext ScenarioContext The new context to be set
return void
        public static void SetContext(ScenarioContext newContext)
        {
            context = newContext;
        }
ContextAppenderFactory