Skip to content

Instantly share code, notes, and snippets.

@rauhryan
Created February 15, 2011 23:28
Show Gist options
  • Save rauhryan/828511 to your computer and use it in GitHub Desktop.
Save rauhryan/828511 to your computer and use it in GitHub Desktop.
public class NavigationPolicy : IConfigurationAction
{
public void Configure(BehaviorGraph graph)
{
var visitor = new NavigationVisitor(graph.Observer);
graph.VisitBehaviors(visitor);
visitor.Register((type, def) => graph.Services.AddService(def));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment