本文整理汇总了C#中WindsorContainer.AddComponentWithLifestyle方法的典型用法代码示例。如果您正苦于以下问题:C# WindsorContainer.AddComponentWithLifestyle方法的具体用法?C# WindsorContainer.AddComponentWithLifestyle怎么用?C# WindsorContainer.AddComponentWithLifestyle使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WindsorContainer
的用法示例。
在下文中一共展示了WindsorContainer.AddComponentWithLifestyle方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: WindsorControllerFactory
public WindsorControllerFactory()
{
container = new WindsorContainer(new XmlInterpreter(new ConfigResource("castle")));
var controllerTypes = from t in Assembly.GetExecutingAssembly().GetTypes()
where typeof(IController).IsAssignableFrom(t)
select t;
foreach (Type t in controllerTypes)
container.AddComponentWithLifestyle(t.FullName, t,
LifestyleType.Transient);
}
示例2: WindsorControllerFactory
// The constructor:
// 1. Sets up a new IoC container
// 2. Registers all components specified in web.config
// 3. Registers all controller types as components
public WindsorControllerFactory()
{
// Instantiate a container, taking configuration from web.config
container = new WindsorContainer(new XmlInterpreter(new ConfigResource("castle")));
// Also register all the controller types as transient
var controllerTypes = from t in Assembly.GetExecutingAssembly().GetTypes()
where typeof(IController).IsAssignableFrom(t)
select t;
foreach (Type t in controllerTypes)
container.AddComponentWithLifestyle(t.FullName, t,
LifestyleType.Transient);
}
示例3: Application_Start
protected void Application_Start(object sender, EventArgs e)
{
IWindsorContainer container = new WindsorContainer();
// Register components in code
// For XML component registration, see Fire Eagle consumer example
container.AddComponentWithLifestyle<ISigningProvider, HmacSha1SigningProvider>(
"signing.provider:HMAC-SHA1",
LifestyleType.Thread);
container.AddComponent<INonceProvider, GuidNonceProvider>();
container.AddComponentWithLifestyle<IRequestStateStore, SessionRequestStateStore>(LifestyleType.Singleton);
WindsorServiceLocator injector = new WindsorServiceLocator(container);
ServiceLocator.SetLocatorProvider(() => injector);
// There is a bug(?) with Twitter's servers at the moment where
// POSTing with an Expect header will cause a 417 Expectation Failed
// The below prevents .NET from sending Expect headers for all POST
// requests in this AppDomain
// (see: http://groups.google.com/group/twitter-development-talk/browse_thread/thread/7c67ff1a2407dee7)
ServicePointManager.Expect100Continue = false;
}