0
asp.net MVC 5プロジェクトでは、認証を処理するためにkatana owinベースのmiddlewereを使用しています。 Start.cs
ファイル内には、Configuration
メソッドのStartup
クラスがあります。 Configuration
メソッド内でリクエストの完全なURLを取得する方法はありますか?私はそれの最後の部分をクッキーに保存する必要があります。スタートアップでURL情報を取得
public void Configuration(IAppBuilder app) {
app.UseCookieAuthentication(new CookieAuthenticationOptions { ... }
// something here to get the full URL
// other authentication code here
}