#pragma warning disable 618
        public Task OnExecutedAsync(FunctionExecutedContext executedContext, CancellationToken cancellationToken)
#pragma warning restore 618
        {
            var instanceId = (string)executedContext.Properties[ScopeName];

            AutoFacScopes.Unregister(instanceId);
            return(Task.CompletedTask);
        }