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 7522423
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T02:31:05+00:00 2026-05-30T02:31:05+00:00

Using Castle.Windsor 2.5.4.32 and Castle.Core 2.5.2.0. I’ve got a component that needs a string[]

  • 0

Using Castle.Windsor 2.5.4.32 and Castle.Core 2.5.2.0.

I’ve got a component that needs a string[] in its ctor. The string[]
comes from a “settings” class. I don’t want the component dependent
on the settings class since it just needs the string[]. So I used
DynamicProperties to pull the data from the settings class, which was pulled from the container. At least,
that’s what I thought would happen. Windsor is not able to resolve my
component as it says there’s a missing dependency (the string[]).

Here’s a quick (MSTest) test case. This is the first time I’ve used
DynamicParameters so I might be doing something wrong. Any ideas?

namespace WindsorTests.DynamicParametersTest
{
       using Castle.MicroKernel.Registration;
       using Castle.Windsor;
       using Microsoft.VisualStudio.TestTools.UnitTesting;

       [TestClass]
       public class DPTest
       {
               [TestMethod]
               public void TestMethod1()
               {
                       var container = new WindsorContainer();
                       container.Register(
                               Component.For<ISettings>().ImplementedBy<Settings>(),
                               Component.For<Foo>().DynamicParameters((k, p) =>
                                                                       {
                                                  var settings = k.Resolve<ISettings>();
                                                  p["data"] = settings.MoreData;
                                                                       })
                               );

                       var bar = container.Resolve<Foo>();
               }
       }

       public interface ISettings
       {
               string[] MoreData { get; }
       }

       public class Settings : ISettings
       {
               public string[] MoreData
               {
                       get { return new[] {"A", "B", "C"}; }
               }
       }

       public class Foo
       {
               public Foo(string[] data)
               {
               }
       }
}
  • 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. Editorial Team
    Editorial Team
    2026-05-30T02:31:07+00:00Added an answer on May 30, 2026 at 2:31 am

    Your usage is perfectly fine.

    I just ran the test case on Windsor 3 and it’s passing. So I suppose that might be a bug in 2.5.x

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

Sidebar

Related Questions

I have a Castle Windsor component, that depends on a string. The string needs
I'm using Castle Windsor 3.0. I have a component that should be started automatically
I've got a pretty basic question about how to start using Castle Windsor. I've
I have a website that relies on dependency injection, using Castle Windsor. I need
I'm using Castle Windsor with a configuration from my App.config file. In the code
Using Castle Windsor, I have a component configured with the transient lifestyle: <component id=publish.mapping.default
I'm using Castle Windsor, and I've got the following: public class NhibernateRepository<T> : IRepository<T>
I'm using ASP.NET MVC with Castle Windsor as my IoC container with the component
I want to write test that verifies mappings in castle windsor. I am using
I'm using Castle Windsor to do some dependency injection, specifically I've abstracted the DAL

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.