Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 100321
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T00:33:26+00:00 2026-05-11T00:33:26+00:00

How can you get castle Windsor to choose the right implantation of a interface

  • 0

How can you get castle Windsor to choose the right implantation of a interface at run time when you have multiple implementations in the container.

For example lets say i have a simple interface called IExamCalc that does calculations to work out how someone did in that exam.

No we have several implementation of this like bellow for example,

public interface IExamCalc {     int CalculateMark(ExamAnswers examAnswers) }  public class WritenExam : IExamCalc {     public int CalculateMark(ExamAnswers examAnswers)     {          return 4;     } }  public class OralExam : IExamCalc {     public int CalculateMark(ExamAnswers examAnswers)     {          return 8;     } }  public class ExamMarkService {     private IExamCalc _examCalc;     public ExamMarkService(IExamCalc examCalc)     {         _examCalc = examCalc;     }      public int[] CalculateExamMarks(ExamAnswers[] examAnswers)     {         IList<int> marks = new List<int>;         foreach(ExamAnswers examanswer in examaAnswers)         {             marks.Add(_examCalc.CalculateMark);         }     } } 

Say the ExamMarkService is being resloved through Windor how can i make sure that the correct implementation is injected in the constructor and is this an example of a multi-tenancy problem?

Hope that all makes sence

Colin G

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T00:33:26+00:00Added an answer on May 11, 2026 at 12:33 am

    As David said, you can’t, but IHandlerSelector will let you take control. Check out the tests to get an idea of how to use them: https://svn.castleproject.org/svn/castle/trunk/InversionOfControl/Castle.Windsor.Tests/HandlerSelectorsTestCase.cs

    Basically, you would do something like:

    public class WritenExamHandler : IHandlerSelector     {         public bool HasOpinionAbout(string key, Type service)         {             // Decision logic here             return somethingThatWouldBeTrueToSelectWritenExam && service == typeof(IExamCalc);         }          public IHandler SelectHandler(string key, Type service, IHandler[] handlers)         {             return handlers.Where(handler => handler.ComponentModel.Implementation == typeof (WritenExam)).First();         }     } 

    and then you register it with:

    container.Kernel.AddHandlerSelector(new WritenExamHandler()); 

    This will allow you to easily deal with multi-tenency issues 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 62k
  • Answers 62k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer You can just do std::sort(data.begin(), data.end()); And it will sort… May 11, 2026 at 10:15 am
  • added an answer What is happening is that you are not using the… May 11, 2026 at 10:15 am
  • added an answer Put the file in its own directory and drop a… May 11, 2026 at 10:15 am

Related Questions

How can you get castle Windsor to choose the right implantation of a interface
How can you get the version information from a .dll or .exe file in
How can you get the directory of the script that was run and use
How can you get a raw socket in Perl, and then what's the best
How can you get MSSQL server to accept Unicode data by default into a
How can you get a user token from Logonuser for a user account with
How can you get the active users connected to a postgreSQL database via SQL?
Given an SQLConnection object how can you get a schema for a single table?
Given a columns' index, how can you get an Excel column name? The problem
In Windows for ASP, you can get it perfmon, but... How to get requests

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.