Ninject.Modules.NinjectModule.Unbind C# (CSharp) Method

Unbind() public method

Unregisters all bindings for the specified service.
public Unbind ( Type service ) : void
service System.Type The service to unbind.
return void
        public override void Unbind(Type service)
        {
            this.KernelConfiguration.Unbind(service);
        }