Part 2 – Array Configuration
Part 3 – Dictionary configuration
Array configuration
Đầu tiên là config array.Ví dụ holiday service có code như sau:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | using Castle.Windsor; using Castle.Windsor.Configuration.Interpreters; using System; namespace ConsoleApp { public class HolidayService { private DateTime[] holidays; public DateTime[] Holidays { get { return holidays; } set { holidays = value; } } public bool IsHoliday(DateTime date) { if (holidays != null ) { DateTime matchDate = date.Date; foreach (DateTime dt in Holidays) { if (dt.Date.Equals(matchDate)) { return true ; } } } return false ; } } class Program { static void Main( string [] args) { WindsorContainer container = new WindsorContainer( new XmlInterpreter()); HolidayService holidayService = container.Resolve<HolidayService>(); DateTime xmas = new DateTime(2016, 12, 25); DateTime newYears = new DateTime(2017, 1, 1); if (holidayService.IsHoliday(xmas)) { Console.WriteLine( "Merry X'mas!" ); } else { Console.WriteLine( "X'mas is only for management!" ); } if (holidayService.IsHoliday(newYears)) { Console.WriteLine( "Happy new year!" ); } else { Console.WriteLine( "New year, you haven't done all the work for last year!" ); } Console.ReadLine(); } } } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | <? xml version = "1.0" encoding = "utf-8" ?> < configuration > < configSections > < section name = "castle" type = "Castle.Windsor.Configuration.AppDomain.CastleSectionHandler, Castle.Windsor" /> </ configSections > < castle > < components > < component type = "ConsoleApp.HolidayService, ConsoleApp" > < parameters > < holidays > < array > < item >2016-12-24</ item > < item >2016-12-25</ item > < item >2017-1-1</ item > </ array > </ holidays > </ parameters > </ component > </ components > </ castle > < startup > < supportedRuntime version = "v4.0" sku = ".NETFramework,Version=v4.6.2" /> </ startup > </ configuration > |
1 2 3 4 5 6 7 | static void Main( string [] args) { WindsorContainer container = new WindsorContainer( new XmlInterpreter()); var holidays = container.Resolve<IList<DateTime>>( "holidays" ); Console.WriteLine( string .Join( "\r\n" , holidays)); Console.ReadLine(); } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | <? xml version = "1.0" encoding = "utf-8" ?> < configuration > < configSections > < section name = "castle" type = "Castle.Windsor.Configuration.AppDomain.CastleSectionHandler, Castle.Windsor" /> </ configSections > < castle > < components > < component id = "holidays" type = "System.Collections.Generic.List`1[System.DateTime]" > < parameters > < collection > < array > < item >2016-12-24</ item > < item >2016-12-25</ item > < item >2017-1-1</ item > </ array > </ collection > </ parameters > </ component > </ components > </ castle > < startup > < supportedRuntime version = "v4.0" sku = ".NETFramework,Version=v4.6.2" /> </ startup > </ configuration > |
Cần nhớ ở dạng config này là thực hiện theo <parameters><collection><array><item>. Nếu đầy đủ hơn thì type chỉ định có cả assembly là <component id="holidays" type="System.Collections.Generic.List`1[[System.DateTime, mscorlib]], mscorlib">.
Dictionary configuration
Tương tự như array, dictionary configuration thực hiện với <parameters><dictionary><dictionary><entry>. Ví dụ AliasService như sau:1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | using Castle.Windsor; using Castle.Windsor.Configuration.Interpreters; using System; using System.Collections.Generic; namespace ConsoleApp { public class AliasService { private Dictionary< string , string > dict; public Dictionary< string , string > Aliases { get { return dict; } set { dict = value; } } public string Evaluate( string term) { if (dict == null ) { return term; } while (dict.ContainsKey(term)) { term = dict[term]; } return term; } } class Program { static void Main( string [] args) { WindsorContainer container = new WindsorContainer( new XmlInterpreter()); AliasService aliasService = container.Resolve<AliasService>(); string sentence = "A dog ate my homework" ; foreach ( string word in sentence.Split( new char [] { ' ' }, StringSplitOptions.RemoveEmptyEntries)) { Console.Write( "{0} " , aliasService.Evaluate(word)); } Console.ReadLine(); } } } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | <? xml version = "1.0" encoding = "utf-8" ?> < configuration > < configSections > < section name = "castle" type = "Castle.Windsor.Configuration.AppDomain.CastleSectionHandler, Castle.Windsor" /> </ configSections > < castle > < components > < component type = "ConsoleApp.AliasService, ConsoleApp" > < parameters > < Aliases > < dictionary > < entry key = "dog" >duck</ entry > < entry key = "ate" >broke</ entry > < entry key = "homework" >code</ entry > </ dictionary > </ Aliases > </ parameters > </ component > </ components > </ castle > < startup > < supportedRuntime version = "v4.0" sku = ".NETFramework,Version=v4.6.2" /> </ startup > </ configuration > |
1 2 3 4 5 6 7 | static void Main( string [] args) { WindsorContainer container = new WindsorContainer( new XmlInterpreter()); var states = container.Resolve<IDictionary< string , string >>( "states" ); Console.WriteLine( string .Join( "\r\n" , states.Keys)); Console.ReadLine(); } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | <? xml version = "1.0" encoding = "utf-8" ?> < configuration > < configSections > < section name = "castle" type = "Castle.Windsor.Configuration.AppDomain.CastleSectionHandler, Castle.Windsor" /> </ configSections > < castle > < components > < component id = "states" type = "System.Collections.Generic.Dictionary`2[System.String, System.String]" > < parameters > < dictionary > < dictionary > < entry key = "VN-CT" >Cần Thơ</ entry > < entry key = "VN-DN" >Đà Nẵng</ entry > < entry key = "VN-HN" >Hà Nội</ entry > < entry key = "VN-HP" >Hải Phòng</ entry > < entry key = "VN-SG" >Hồ Chí Minh</ entry > </ dictionary > </ dictionary > </ parameters > </ component > </ components > </ castle > < startup > < supportedRuntime version = "v4.0" sku = ".NETFramework,Version=v4.6.2" /> </ startup > </ configuration > |