GithubHelp home page GithubHelp logo

richard-faust / nancy.bootstrappers.autofac Goto Github PK

View Code? Open in Web Editor NEW

This project forked from nancyfx/nancy.bootstrappers.autofac

0.0 1.0 0.0 8.95 MB

Nancy bootstrapper for the Autofac container

License: MIT License

C# 99.65% PowerShell 0.14% Shell 0.22%

nancy.bootstrappers.autofac's Introduction

A bootstrapper implementation, for the Nancy framework, based on the Autofac inversion of control container.

Usage

When Nancy detects that the AutofacNancyBootstrapper type is available in the AppDomain of your application, it will assume you want to use it, rather than the default one.

The easiest way to get the latest version of AutofacNancyBootstrapper into your application is to install the Nancy.Bootstrappers.Autofac nuget.

public interface ISmtpService { }

public class SmtpService : ISmtpService { }

public class Bootstrapper : AutofacNancyBootstrapper
{
    protected override void ConfigureApplicationContainer(ILifetimeScope container)
    {
        container.Update(builder => builder.RegisterType<SmtpService>().As<ISmtpService>().SingleInstance());        
    }
}

Customizing

By inheriting from AutofacNancyBootstrapper you will gain access to the ILifetimeScope of the application and request containers and can perform what ever registrations that your application requires.

public class Bootstrapper : AutofacNancyBootstrapper
{
    protected override void ApplicationStartup(ILifetimeScope container, IPipelines pipelines)
    {
        // No registrations should be performed in here, however you may
        // resolve things that are needed during application startup.
    }

    protected override void ConfigureApplicationContainer(ILifetimeScope existingContainer)
    {
        // Perform registration that should have an application lifetime
    }

    protected override void ConfigureRequestContainer(ILifetimeScope container, NancyContext context)
    {
        // Perform registrations that should have a request lifetime
    }

    protected override void RequestStartup(ILifetimeScope container, IPipelines pipelines, NancyContext context)
    {
        // No registrations should be performed in here, however you may
        // resolve things that are needed during request startup.
    }
}

Using container builder for registrations is simple.

container.Update(builder => builder.RegisterType<MyImplementation>().As<MyInterface>());

You can also override the GetApplicationContainer method and return a pre-existing container instance, instead of having Nancy create one for you. This is useful if Nancy is co-existing with another application and you want them to share a single container.

protected override ILifetimeScope GetApplicationContainer()
{
    // Return application container instance
}

Code of Conduct

This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community. For more information see the .NET Foundation Code of Conduct.

Contribution License Agreement

Contributing to Nancy requires you to sign a contribution license agreement (CLA) for anything other than a trivial change. By signing the contribution license agreement, the community is free to use your contribution to .NET Foundation projects.

.NET Foundation

This project is supported by the .NET Foundation.

Copyright

Copyright © 2010 Andreas Håkansson, Steven Robbins and contributors

License

Nancy.Bootstrappers.Autofac is licensed under MIT. Refer to license.txt for more information.

nancy.bootstrappers.autofac's People

Contributors

thecodejunkie avatar grumpydev avatar jchannon avatar khellang avatar horsdal avatar cemremengu avatar chris-hogan-logikos avatar simoncropp avatar alexmg avatar nathanpalmer avatar chrismh avatar cyberlane avatar phillip-haydon avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.