本文整理汇总了C#中BehaviorGraph.AddActionFor方法的典型用法代码示例。如果您正苦于以下问题:C# BehaviorGraph.AddActionFor方法的具体用法?C# BehaviorGraph.AddActionFor怎么用?C# BehaviorGraph.AddActionFor使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BehaviorGraph
的用法示例。
在下文中一共展示了BehaviorGraph.AddActionFor方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Configure
public void Configure(BehaviorGraph graph)
{
//add resource discovery action and force it to return JSON
graph.AddActionFor("api", typeof(SwaggerUIAction));
////TODO should this route '/api' be configurable?
//add resource discovery action and force it to return JSON
graph.AddActionFor("api/resources.json", typeof(ResourceDiscoveryAction)).MakeAsymmetricJson();
//add resource action and force it to return JSON
graph.AddActionFor("api/{GroupKey}.json", typeof(ResourceAction)).MakeAsymmetricJson();
}
示例2: addEndpointsFor
// TODO: Find a way to make this easier in Fubu")]
private static void addEndpointsFor(Type entityType, BehaviorGraph graph)
{
graph.AddActionFor("{0}/find/{{Id}}".ToFormat(entityType.Name.ToLower()), typeof(DomainEntityFinder<>), entityType)
.UrlCategory.Category = Categories.FIND;
var finderForwarder = typeof(EntityFinderForwarder<>).CloseAndBuildAs<IChainForwarder>(entityType);
graph.AddForwarder(finderForwarder);
graph.AddActionFor("{0}/editproperty".ToFormat(entityType.Name).ToLower(), typeof(IPropertyUpdater<>), entityType)
.UrlCategory.Category = Categories.PROPERTY_EDIT;
var propertyForwarder = typeof(PropertyUpdaterForwarder<>).CloseAndBuildAs<IChainForwarder>(entityType);
graph.AddForwarder(propertyForwarder);
}
示例3: Given
public void Given()
{
var graph = new BehaviorGraph();
var chain = graph.AddActionFor("api/action1/{input}/", typeof(Action1));
_route = chain.Route;
}
示例4: Given
public void Given()
{
var graph = new BehaviorGraph();
var chain = graph.AddActionFor("api/action1/{input}/", typeof (Action1));
_route = chain.Route;
_property = ReflectionHelper.GetProperty<ActionRequest>(a => a.redfish);
_result = ActionCallMapper.createParameter(_property, _route);
}
示例5: Given
public void Given()
{
var cut = new ActionCallMapper(new TypeDescriptorCache());
var graph = new BehaviorGraph();
var chain = graph.AddActionFor("api/group1/{input}", typeof(Action1));
chain.Route.AddHttpMethodConstraint("POST");
var action = graph.Actions().First();
_result = cut.GetSwaggerOperations(action).First();
}