ASP.NET MVC Routing von zwei GUIDs

Ich habe eine Aktion mit zwei GUIDs:

public class MyActionController : Controller
{
  //...

  public ActionResult MoveToTab(Guid param1, Guid param2)
  {
    //...
  }
}

Ich möchte, dass die folgende URI der Aktion zugeordnet wird:

/myaction/movetotab/1/2

... wobei 1 param1 und 2 param2 entspricht.

Wie sieht die Route aus und ist es möglich, die Argumente Parametern mit einem Guid-Typ zuzuordnen?

Antworten auf die Frage(2)

Ihre Antwort auf die Frage