本文整理匯總了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();
}