私はコントローラーを持っています
public ActionResult Index()
{
//SomeCode Here
}
public ActionResult CommingFromAnotherDomain(bool Result)
{
if(Result)
{
//How to pass control to upper method??
}
}
CommingFromAnotherDomain が最初に実行されますが、if 条件でパラメーターをチェックした後です。制御を上位メソッド Index() に渡すにはどうすればよいですか。
また、以下の結果を Index で確認して、その Index メソッドから一部の作業を排除できるようにしたいと考えています。
前もって感謝します。