本文整理汇总了C#中BehaviorChain.Prepend方法的典型用法代码示例。如果您正苦于以下问题:C# BehaviorChain.Prepend方法的具体用法?C# BehaviorChain.Prepend怎么用?C# BehaviorChain.Prepend使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BehaviorChain
的用法示例。
在下文中一共展示了BehaviorChain.Prepend方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: prepend_with_an_existing_top_behavior
public void prepend_with_an_existing_top_behavior()
{
var chain = new BehaviorChain();
ActionCall call = ActionCall.For<TestController>(x => x.AnotherAction(null));
chain.Append(call);
var wrapper = new Wrapper(typeof (ObjectDefInstanceTester.FakeJsonBehavior));
chain.Prepend(wrapper);
chain.Top.ShouldBeTheSameAs(wrapper);
wrapper.Next.ShouldBeTheSameAs(call);
}
示例2: prepend_with_no_behaviors
public void prepend_with_no_behaviors()
{
var chain = new BehaviorChain();
var wrapper = new Wrapper(typeof (ObjectDefInstanceTester.FakeJsonBehavior));
chain.Prepend(wrapper);
chain.Top.ShouldBeTheSameAs(wrapper);
}
示例3: modifyChain
private static void modifyChain(BehaviorChain chain, IConfigurationObserver observer)
{
chain.Calls.Each(c => observer.RecordCallStatus(c, "Wrapping with diagnostic tracer and behavior"));
chain.ToArray().Each(node => node.AddBefore(Wrapper.For<BehaviorTracer>()));
chain.Prepend(new Wrapper(typeof (DiagnosticBehavior)));
}
示例4: uses_the_first_may_have_input_with_non_null
public void uses_the_first_may_have_input_with_non_null()
{
var chain = new BehaviorChain();
chain.AddToEnd(new FakeInputNode(typeof (string)));
chain.InputType().ShouldEqual(typeof (string));
chain.Prepend(new FakeInputNode(null));
chain.InputType().ShouldEqual(typeof (string));
chain.Prepend(new FakeInputNode(typeof(int)));
chain.InputType().ShouldEqual(typeof(int));
}
示例5: should_register_an_endpoint_authorizor_if_there_are_any_authorization_rules
public void should_register_an_endpoint_authorizor_if_there_are_any_authorization_rules()
{
var chain = new BehaviorChain();
chain.AddToEnd(ActionCall.For<OneController>(x => x.Query(null)));
chain.Authorization.AddRole("Role 1");
chain.Prepend(chain.Authorization);
var container = new Container();
var facility = new StructureMapContainerFacility(container);
chain.As<IRegisterable>().Register(DiagnosticLevel.None, facility.Register);
facility.BuildFactory();
container.GetInstance<IEndPointAuthorizor>(chain.UniqueId.ToString())
.ShouldNotBeNull().ShouldBeOfType<EndPointAuthorizor>();
}
示例6: DiagnosticNode
public DiagnosticNode(BehaviorChain chain)
{
chain.Prepend(this);
}
示例7: modifyChain
private static void modifyChain(BehaviorChain chain)
{
chain.ToArray().Each(node => node.InsertDirectlyBefore(Wrapper.For<BehaviorTracer>()));
chain.Prepend(new Wrapper(typeof (DiagnosticBehavior)));
}