AuthenticationSection.Forms プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
Forms 要素プロパティを取得します。
public:
property System::Web::Configuration::FormsAuthenticationConfiguration ^ Forms { System::Web::Configuration::FormsAuthenticationConfiguration ^ get(); };
[System.Configuration.ConfigurationProperty("forms")]
public System.Web.Configuration.FormsAuthenticationConfiguration Forms { get; }
[<System.Configuration.ConfigurationProperty("forms")>]
member this.Forms : System.Web.Configuration.FormsAuthenticationConfiguration
Public ReadOnly Property Forms As FormsAuthenticationConfiguration
プロパティ値
フォーム ベース認証中に使用する情報が格納される Forms 要素プロパティ。
- 属性
例
次のコード例は、 要素プロパティの使用方法を Forms 示しています。
// Get the current Forms property.
FormsAuthenticationConfiguration currentForms =
authenticationSection.Forms;
// Get the Forms attributes.
string name = currentForms.Name;
string login = currentForms.LoginUrl;
string path = currentForms.Path;
HttpCookieMode cookieLess = currentForms.Cookieless;
bool requireSSL = currentForms.RequireSSL;
bool slidingExpiration = currentForms.SlidingExpiration;
bool enableXappRedirect = currentForms.EnableCrossAppRedirects;
TimeSpan timeout = currentForms.Timeout;
FormsProtectionEnum protection = currentForms.Protection;
string defaultUrl = currentForms.DefaultUrl;
string domain = currentForms.Domain;
' Get the current Forms property.
Dim currentForms _
As FormsAuthenticationConfiguration = _
authenticationSection.Forms
' Get the Forms attributes.
Dim name As String = _
currentForms.Name
Dim login As String = _
currentForms.LoginUrl
Dim path As String = _
currentForms.Path
Dim cookieLess As HttpCookieMode = _
currentForms.Cookieless
Dim requireSSL As Boolean = _
currentForms.RequireSSL
Dim slidingExpiration As Boolean = _
currentForms.SlidingExpiration
Dim enableXappRedirect As Boolean = _
currentForms.EnableCrossAppRedirects
Dim timeout As TimeSpan = _
currentForms.Timeout
Dim protection As FormsProtectionEnum = _
currentForms.Protection
Dim defaultUrl As String = _
currentForms.DefaultUrl
Dim domain As String = _
currentForms.Domain
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET