FormsAuthenticationConfiguration.Name Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Возвращает или задает имя файла cookie.
public:
property System::String ^ Name { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("name", DefaultValue=".ASPXAUTH")]
[System.Configuration.StringValidator(MinLength=1)]
public string Name { get; set; }
[<System.Configuration.ConfigurationProperty("name", DefaultValue=".ASPXAUTH")>]
[<System.Configuration.StringValidator(MinLength=1)>]
member this.Name : string with get, set
Public Property Name As String
Значение свойства
Имя файла cookie протокола HTTP, который используется для проверки подлинности запроса.
- Атрибуты
Примеры
В следующем примере кода показано, как получить этот Name раздел, см. пример кода в FormsAuthenticationConfiguration разделе класса.
// Get the configuration file. Replace the name configTarget
// with the name of your site.
System.Configuration.Configuration configuration =
WebConfigurationManager.OpenWebConfiguration("/configTarget");
// Get the external Authentication section.
AuthenticationSection authenticationSection =
(AuthenticationSection)configuration.GetSection(
"system.web/authentication");
// Get the external Forms section .
FormsAuthenticationConfiguration formsAuthentication =
authenticationSection.Forms;
string cookieName = formsAuthentication.Name;
' Get the configuration file. Replace the name configTarget
' with the name of your site.
Dim configuration As System.Configuration.Configuration = _
WebConfigurationManager.OpenWebConfiguration("/configTarget")
' Get the authentication section.
Dim authenticationSection As AuthenticationSection = _
CType(configuration.GetSection("system.web/authentication"), AuthenticationSection)
' Get the external Forms section .
Dim formsAuthentication As FormsAuthenticationConfiguration = _
authenticationSection.Forms
Dim cookieName As String = formsAuthentication.Name
Применяется к
Совместная работа с нами на GitHub
Источник этого содержимого можно найти на GitHub, где также можно создавать и просматривать проблемы и запросы на вытягивание. Дополнительные сведения см. в нашем руководстве для участников.