ResetPasswordModel クラス

定義

この API は、ASP.NET Core ID の既定の UI インフラストラクチャをサポートしており、コードから直接使用することを意図したものではありません。 この API は、今後のリリースで変更または削除される可能性があります。

[Microsoft.AspNetCore.Authorization.AllowAnonymous]
public abstract class ResetPasswordModel : Microsoft.AspNetCore.Mvc.RazorPages.PageModel
[<Microsoft.AspNetCore.Authorization.AllowAnonymous>]
type ResetPasswordModel = class
    inherit PageModel
Public MustInherit Class ResetPasswordModel
Inherits PageModel
継承
ResetPasswordModel
属性

コンストラクター

ResetPasswordModel()

この API は、ASP.NET Core ID の既定の UI インフラストラクチャをサポートしており、コードから直接使用することを意図したものではありません。 この API は、今後のリリースで変更または削除される可能性があります。

プロパティ

HttpContext

HttpContext を取得します。

(継承元 PageModel)
Input

この API は、ASP.NET Core ID の既定の UI インフラストラクチャをサポートしており、コードから直接使用することを意図したものではありません。 この API は、今後のリリースで変更または削除される可能性があります。

MetadataProvider

IModelMetadataProvider を取得または設定します。

(継承元 PageModel)
ModelState

ModelStateDictionary を取得します。

(継承元 PageModel)
PageContext

PageContext を取得します。

(継承元 PageModel)
Request

HttpRequest を取得します。

(継承元 PageModel)
Response

HttpResponse を取得します。

(継承元 PageModel)
RouteData

実行中の RouteData アクションの を取得します。

(継承元 PageModel)
TempData

によってPageResult使用される を取得または設定しますITempDataDictionary

(継承元 PageModel)
Url

IUrlHelper を取得または設定します。

(継承元 PageModel)
User

実行中のアクションに ClaimsPrincipal 関連付けられているユーザーの を取得します。

(継承元 PageModel)
ViewData

ViewDataDictionary を取得します。

(継承元 PageModel)

メソッド

BadRequest()

応答を BadRequestResult 生成する を Status400BadRequest 作成します。

(継承元 PageModel)
BadRequest(ModelStateDictionary)

応答を BadRequestObjectResult 生成する を Status400BadRequest 作成します。

(継承元 PageModel)
BadRequest(Object)

応答を BadRequestObjectResult 生成する を Status400BadRequest 作成します。

(継承元 PageModel)
Challenge()

ChallengeResult を作成します。

(継承元 PageModel)
Challenge(AuthenticationProperties)

指定した を ChallengeResult 使用して を作成します properties

(継承元 PageModel)
Challenge(AuthenticationProperties, String[])

ChallengeResult指定した認証スキームと propertiesを使用して を作成します。

(継承元 PageModel)
Challenge(String[])

ChallengeResult指定した認証スキームを使用して を作成します。

(継承元 PageModel)
Content(String)

文字列を ContentResult 指定して、 を使用 Status200OK して オブジェクトを content 作成します。

(継承元 PageModel)
Content(String, MediaTypeHeaderValue)

文字列と をContentResult指定contentして、 を使用して オブジェクトをcontentType作成しますStatus200OK

(継承元 PageModel)
Content(String, String)

ContentResult文字列とコンテンツ タイプを指定して、 content で オブジェクトStatus200OKを作成します。

(継承元 PageModel)
Content(String, String, Encoding)

文字列、、ContentResultおよび をcontent指定して、 を使用して オブジェクトStatus200OKcontentType作成しますcontentEncoding

(継承元 PageModel)
File(Byte[], String)

指定した をコンテンツ (Status200OK) として、指定した fileContents を Content-Type として持つファイルを返しますcontentType

(継承元 PageModel)
File(Byte[], String, String)

指定した をコンテンツ (Status200OK) として、指定した fileContents を Content-Type として、指定した contentType を推奨されるファイル名として返fileDownloadNameします。

(継承元 PageModel)
File(Stream, String)

指定した fileStream (Status200OK) 内の ファイルを Content-Type として指定して返します contentType

(継承元 PageModel)
File(Stream, String, String)

指定した fileStream (Status200OK) 内のファイルを Content-Type として指定し、指定 contentType した fileDownloadName を推奨されるファイル名として返します。

(継承元 PageModel)
File(String, String)

() でvirtualPath指定され、 が Content-Type として指定されたファイルを返しますcontentTypeStatus200OK

(継承元 PageModel)
File(String, String, String)

() でvirtualPath指定されたファイルを Content-Type として指定し、指定contentTypeした fileDownloadName を推奨されるファイル名として返Status200OKします。

(継承元 PageModel)
Forbid()

ForbidResult (Status403Forbidden 既定で) を作成します。

(継承元 PageModel)
Forbid(AuthenticationProperties)

指定した を使用 ForbidResult して (Status403Forbidden 既定で) を作成します properties

(継承元 PageModel)
Forbid(AuthenticationProperties, String[])

ForbidResult 指定した認証スキームと propertiesを使用して (Status403Forbidden 既定で) を作成します。

(継承元 PageModel)
Forbid(String[])

指定した認証スキームを ForbidResult 使用して (Status403Forbidden 既定で) を作成します。

(継承元 PageModel)
LocalRedirect(String)

指定したLocalRedirectResultローカル localUrlに (Status302Found) をリダイレクトする オブジェクトを作成します。

(継承元 PageModel)
LocalRedirectPermanent(String)

指定した をLocalRedirectResult使用して、true (Status301MovedPermanently) に設定された オブジェクトを作成しますPermanentlocalUrl

(継承元 PageModel)
LocalRedirectPermanentPreserveMethod(String)

LocalRedirectResult true に設定された オブジェクトをPermanent作成し、PreserveMethod指定した を使用して true (Status308PermanentRedirect) に設定しますlocalUrl

(継承元 PageModel)
LocalRedirectPreserveMethod(String)

LocalRedirectResult false に設定された オブジェクトをPermanent作成し、PreserveMethod指定した を使用して true (Status307TemporaryRedirect) に設定しますlocalUrl

(継承元 PageModel)
NotFound()

応答を NotFoundResult 生成する を Status404NotFound 作成します。

(継承元 PageModel)
NotFound(Object)

応答を NotFoundObjectResult 生成する を Status404NotFound 作成します。

(継承元 PageModel)
OnGet(String)

この API は、ASP.NET Core ID の既定の UI インフラストラクチャをサポートしており、コードから直接使用することを意図したものではありません。 この API は、今後のリリースで変更または削除される可能性があります。

OnPageHandlerExecuted(PageHandlerExecutedContext)

ハンドラー メソッドの実行後、アクションの結果が実行される前に呼び出されます。

(継承元 PageModel)
OnPageHandlerExecuting(PageHandlerExecutingContext)

モデル バインドが完了した後、ハンドラー メソッドが実行される前に呼び出されます。

(継承元 PageModel)
OnPageHandlerExecutionAsync(PageHandlerExecutingContext, PageHandlerExecutionDelegate)

モデル バインドが完了した後、ハンドラー メソッドが呼び出される前に非同期的に呼び出されます。

(継承元 PageModel)
OnPageHandlerSelected(PageHandlerSelectedContext)

ハンドラー メソッドが選択された後、モデル バインドが発生する前に呼び出されます。

(継承元 PageModel)
OnPageHandlerSelectionAsync(PageHandlerSelectedContext)

ハンドラー メソッドが選択された後、モデル バインドが発生する前に非同期的に呼び出されます。

(継承元 PageModel)
OnPostAsync()

この API は、ASP.NET Core ID の既定の UI インフラストラクチャをサポートしており、コードから直接使用することを意図したものではありません。 この API は、今後のリリースで変更または削除される可能性があります。

Page()

ページを PageResult レンダリングする オブジェクトを作成します。

(継承元 PageModel)
Partial(String)

レンダリングする PartialViewResult 部分の名前を指定して を作成します。

(継承元 PageModel)
Partial(String, Object)

レンダリングする PartialViewResult 部分の名前とモデル オブジェクトを指定して を作成します。

(継承元 PageModel)
PhysicalFile(String, String)

() でphysicalPath指定され、 が Content-Type として指定されたファイルを返しますcontentTypeStatus200OK

(継承元 PageModel)
PhysicalFile(String, String, String)

() でphysicalPath指定されたファイルを Content-Type として指定し、指定contentTypeした fileDownloadName を推奨されるファイル名として返Status200OKします。

(継承元 PageModel)
Redirect(String)

指定した に RedirectResult (Status302Found) をリダイレクトする オブジェクトを作成します url

(継承元 PageModel)
RedirectPermanent(String)

指定した をRedirectResult使用して、true (Status301MovedPermanently) に設定された オブジェクトを作成しますPermanenturl

(継承元 PageModel)
RedirectPermanentPreserveMethod(String)

RedirectResult true に設定された オブジェクトをPermanent作成し、PreserveMethod指定した を使用して true (Status308PermanentRedirect) に設定しますurl

(継承元 PageModel)
RedirectPreserveMethod(String)

RedirectResult false に設定された オブジェクトをPermanent作成し、PreserveMethod指定した を使用して true (Status307TemporaryRedirect) に設定しますurl

(継承元 PageModel)
RedirectToAction(String)

を使用して、指定したアクションに (Status302Found) をリダイレクトします actionName

(継承元 PageModel)
RedirectToAction(String, Object)

routeValuesを使用して、指定したアクションに (Status302Found) をactionNameリダイレクトします。

(継承元 PageModel)
RedirectToAction(String, String)

と を使用してactionName、指定したアクションに (Status302Found) をリダイレクトしますcontrollerName

(継承元 PageModel)
RedirectToAction(String, String, Object)

指定した 、、および を使用して、指定したactionNamecontrollerNameアクションに (Status302Found) をリダイレクトしますrouteValues

(継承元 PageModel)
RedirectToAction(String, String, Object, String)

指定した 、および を使用して、指定したrouteValuesactionNamecontrollerNameアクションに (Status302Found) をfragmentリダイレクトします。

(継承元 PageModel)
RedirectToAction(String, String, String)

指定した 、、および を使用して、指定したactionNamecontrollerNameアクションに (Status302Found) をリダイレクトしますfragment

(継承元 PageModel)
RedirectToActionPermanent(String)

指定した を使用して、 をStatus301MovedPermanently true に設定して、指定したアクション Permanent に () をリダイレクトします actionName

(継承元 PageModel)
RedirectToActionPermanent(String, Object)

指定した と を使用して、 を true に設定して、指定したアクションに (Status301MovedPermanently) をリダイレクトしますrouteValuesactionNamePermanent

(継承元 PageModel)
RedirectToActionPermanent(String, String)

指定した と を使用して、 を true に設定して、指定したアクションに (Status301MovedPermanently) をリダイレクトしますcontrollerNameactionNamePermanent

(継承元 PageModel)
RedirectToActionPermanent(String, String, Object)

Status301MovedPermanently() を指定したアクションにリダイレクトし、Permanent指定した 、、controllerNameおよび routeValuesを使用して true に設定しますactionName

(継承元 PageModel)
RedirectToActionPermanent(String, String, Object, String)

Status301MovedPermanently() を指定したアクションにリダイレクトし、Permanent指定した 、、controllerNamerouteValuesおよび fragmentを使用して true に設定しますactionName

(継承元 PageModel)
RedirectToActionPermanent(String, String, String)

Status301MovedPermanently() を指定したアクションにリダイレクトし、Permanent指定した 、、controllerNameおよび fragmentを使用して true に設定しますactionName

(継承元 PageModel)
RedirectToActionPermanentPreserveMethod(String, String, Object, String)

Status308PermanentRedirect() を true に設定し、指定した 、controllerNamerouteValues、および PreserveMethodfragmentを使用して true に設定された指定したactionNameアクションPermanentにリダイレクトします。

(継承元 PageModel)
RedirectToActionPreserveMethod(String, String, Object, String)

指定したStatus307TemporaryRedirect 、および fragmentを使用して、 を false に設定しPreserveMethod、true に設定して、指定したcontrollerNameactionNamerouteValuesアクションPermanentに () をリダイレクトします。

(継承元 PageModel)
RedirectToPage()

(Status302Found) を現在のページにリダイレクトします。

(継承元 PageModel)
RedirectToPage(Object)

指定した を使用して、現在のページに (Status302Found) をリダイレクトします routeValues

(継承元 PageModel)
RedirectToPage(String)

(Status302Found) を指定した にリダイレクトします pageName

(継承元 PageModel)
RedirectToPage(String, Object)

指定した を使用して、指定した に (Status302Found) をリダイレクトしますrouteValuespageName

(継承元 PageModel)
RedirectToPage(String, String)

指定した を使用して、指定した に (Status302Found) をリダイレクトしますpageHandlerpageName

(継承元 PageModel)
RedirectToPage(String, String, Object)

指定した と routeValuesを使用して、指定した pageName に (Status302Found) をリダイレクトしますpageHandler

(継承元 PageModel)
RedirectToPage(String, String, Object, String)

指定した と fragmentを使用して、指定した pageName に (Status302Found) をリダイレクトしますrouteValues

(継承元 PageModel)
RedirectToPage(String, String, String)

指定した を使用して、指定した に (Status302Found) をリダイレクトしますfragmentpageName

(継承元 PageModel)
RedirectToPagePermanent(String)

(Status301MovedPermanently) を指定した にリダイレクトします pageName

(継承元 PageModel)
RedirectToPagePermanent(String, Object)

指定した を使用して、指定した に (Status301MovedPermanently) をリダイレクトしますrouteValuespageName

(継承元 PageModel)
RedirectToPagePermanent(String, Object, String)

指定した を使用して、指定した に (Status301MovedPermanently) をリダイレクトしますfragmentpageName

(継承元 PageModel)
RedirectToPagePermanent(String, String)

(Status301MovedPermanently) を指定した にリダイレクトします pageName

(継承元 PageModel)
RedirectToPagePermanent(String, String, Object)

指定した を使用して、指定した に (Status301MovedPermanently) をリダイレクトしますrouteValuespageName

(継承元 PageModel)
RedirectToPagePermanent(String, String, Object, String)

指定した と fragmentを使用して、指定した pageName に (Status301MovedPermanently) をリダイレクトしますrouteValues

(継承元 PageModel)
RedirectToPagePermanent(String, String, String)

指定した を使用して、指定した に (Status301MovedPermanently) をリダイレクトしますfragmentpageName

(継承元 PageModel)
RedirectToPagePermanentPreserveMethod(String, String, Object, String)

Status308PermanentRedirect() を指定したルートPermanentにリダイレクトし、true に設定しPreserveMethod、指定した 、routeValues、および fragmentを使用して true に設定しますpageName

(継承元 PageModel)
RedirectToPagePreserveMethod(String, String, Object, String)

指定したStatus307TemporaryRedirect 、、および を使用して、指定したページPermanentに () をリダイレクトし、false に設定しfragmentPreserveMethod、true に設定しますpageNamerouteValues

(継承元 PageModel)
RedirectToRoute(Object)

指定した を使用して、指定したルートに (Status302Found) をリダイレクトします routeValues

(継承元 PageModel)
RedirectToRoute(String)

指定した を使用して、指定したルートに (Status302Found) をリダイレクトします routeName

(継承元 PageModel)
RedirectToRoute(String, Object)

指定した と routeValuesを使用して、指定したルートに (Status302Found) をリダイレクトしますrouteName

(継承元 PageModel)
RedirectToRoute(String, Object, String)

指定した 、、および を使用して、指定したルートに (Status302Found) をfragmentリダイレクトしますrouteNamerouteValues

(継承元 PageModel)
RedirectToRoute(String, String)

指定した と fragmentを使用して、指定したルートに (Status302Found) をリダイレクトしますrouteName

(継承元 PageModel)
RedirectToRoutePermanent(Object)

指定した を使用して、 を true に設定して、指定したルートに (Status301MovedPermanently) をリダイレクトしますrouteValuesPermanent

(継承元 PageModel)
RedirectToRoutePermanent(String)

指定した を使用して、 を true に設定して、指定したルートに (Status301MovedPermanently) をリダイレクトしますrouteNamePermanent

(継承元 PageModel)
RedirectToRoutePermanent(String, Object)

指定した と を使用して、 を true に設定して、指定したルートに (Status301MovedPermanently) をリダイレクトしますrouteValuesrouteNamePermanent

(継承元 PageModel)
RedirectToRoutePermanent(String, Object, String)

Status301MovedPermanently() を指定したルートにリダイレクトし、Permanent指定した 、、routeValuesおよび fragmentを使用して true に設定しますrouteName

(継承元 PageModel)
RedirectToRoutePermanent(String, String)

指定した と を使用して、 を true に設定して、指定したルートに (Status301MovedPermanently) をリダイレクトしますfragmentrouteNamePermanent

(継承元 PageModel)
RedirectToRoutePermanentPreserveMethod(String, Object, String)

Status308PermanentRedirect() を指定したルートPermanentにリダイレクトし、true に設定しPreserveMethod、指定した 、routeValues、および fragmentを使用して true に設定しますrouteName

(継承元 PageModel)
RedirectToRoutePreserveMethod(String, Object, String)

指定した 、、および fragmentを使用して、 を false に設定しPreserveMethod、true に設定して、指定したrouteNamerouteValuesルートPermanentに (Status307TemporaryRedirect) をリダイレクトします。

(継承元 PageModel)
SignIn(ClaimsPrincipal, AuthenticationProperties, String)

指定した認証スキームと propertiesを使用して をSignInResult作成します。

(継承元 PageModel)
SignIn(ClaimsPrincipal, String)

SignInResult指定した認証スキームを使用して を作成します。

(継承元 PageModel)
SignOut(AuthenticationProperties, String[])

SignOutResult指定した認証スキームと propertiesを使用して を作成します。

(継承元 PageModel)
SignOut(String[])

SignOutResult指定した認証スキームを使用して を作成します。

(継承元 PageModel)
StatusCode(Int32)

StatusCodeResult 指定して オブジェクトを statusCode作成します。

(継承元 PageModel)
StatusCode(Int32, Object)

と を ObjectResult 指定して オブジェクトを statusCode 作成します。 value

(継承元 PageModel)
TryUpdateModelAsync(Object, Type, String)

の現在nameIValueProviderの と の値PageModelを使用して、指定したmodelインスタンスを更新します。

(継承元 PageModel)
TryUpdateModelAsync(Object, Type, String, IValueProvider, Func<ModelMetadata,Boolean>)

nameを使用して、指定したmodelインスタンスをvalueProvider更新します。

(継承元 PageModel)
TryUpdateModelAsync<TModel>(TModel)

の現在IValueProviderの の値を使用して、指定したmodelインスタンスをPageModel更新します。

(継承元 PageModel)
TryUpdateModelAsync<TModel>(TModel, String)

の現在IValueProviderの の値を使用して、指定したmodelインスタンスをPageModel更新します。

(継承元 PageModel)
TryUpdateModelAsync<TModel>(TModel, String, Expression<Func<TModel,Object>>[])

の現在nameIValueProviderの と の値PageModelを使用して、指定したmodelインスタンスを更新します。

(継承元 PageModel)
TryUpdateModelAsync<TModel>(TModel, String, Func<ModelMetadata,Boolean>)

の現在nameIValueProviderの と の値PageModelを使用して、指定したmodelインスタンスを更新します。

(継承元 PageModel)
TryUpdateModelAsync<TModel>(TModel, String, IValueProvider)

nameを使用して、指定したmodelインスタンスをvalueProvider更新します。

(継承元 PageModel)
TryUpdateModelAsync<TModel>(TModel, String, IValueProvider, Expression<Func<TModel,Object>>[])

nameを使用して、指定したmodelインスタンスをvalueProvider更新します。

(継承元 PageModel)
TryUpdateModelAsync<TModel>(TModel, String, IValueProvider, Func<ModelMetadata,Boolean>)

nameを使用して、指定したmodelインスタンスをvalueProvider更新します。

(継承元 PageModel)
TryValidateModel(Object)

指定した model インスタンスを検証します。

(継承元 PageModel)
TryValidateModel(Object, String)

指定した model インスタンスを検証します。

(継承元 PageModel)
Unauthorized()

応答を UnauthorizedResult 生成する を Status401Unauthorized 作成します。

(継承元 PageModel)
ViewComponent(String)

レンダリングする ViewComponentResult ビュー コンポーネントの名前を指定して を作成します。

(継承元 PageModel)
ViewComponent(String, Object)

レンダリングする ViewComponentResult ビュー コンポーネントの名前を指定して を作成します。

(継承元 PageModel)
ViewComponent(Type)

レンダリングする ViewComponentResult ビュー コンポーネントの を Type 指定して を作成します。

(継承元 PageModel)
ViewComponent(Type, Object)

レンダリングする ViewComponentResult ビュー コンポーネントの を Type 指定して を作成します。

(継承元 PageModel)

適用対象