Updating ILogger descendants for interface change.

This commit is contained in:
Ben Brown 2014-07-03 20:06:11 -07:00
parent 8eb8cc1154
commit 0f9e232759
1 changed files with 15 additions and 0 deletions

View File

@ -93,6 +93,21 @@ namespace Microsoft.AspNet.Hosting
{
return false;
}
public IDisposable BeginScope(object state)
{
return NullScope.Instance;
}
}
private class NullScope : IDisposable
{
public static NullScope Instance = new NullScope();
public void Dispose()
{
// intentionally does nothing
}
}
}
}