ProfileSection.DefaultProvider Свойство

Определение

Возвращает или задает имя поставщика профиля по умолчанию.

public:
 property System::String ^ DefaultProvider { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("defaultProvider", DefaultValue="AspNetSqlProfileProvider")]
[System.Configuration.StringValidator(MinLength=1)]
public string DefaultProvider { get; set; }
[<System.Configuration.ConfigurationProperty("defaultProvider", DefaultValue="AspNetSqlProfileProvider")>]
[<System.Configuration.StringValidator(MinLength=1)>]
member this.DefaultProvider : string with get, set
Public Property DefaultProvider As String

Значение свойства

String

Имя поставщика в коллекции Providers или пустая строка (""). По умолчанию "AspNetSqlProfileProvider".

Атрибуты

Примеры

В следующем примере кода показано, как использовать свойство DefaultProvider. Этот пример кода является частью более крупного примера, предоставленного ProfileSection для класса.


// Get the current DefaultProvider property value.
Console.WriteLine(
    "Current DefaultProvider value: '{0}'", profileSection.DefaultProvider);

// Set the DefaultProvider property to "AspNetSqlProvider".
profileSection.DefaultProvider = "AspNetSqlProvider";

' Get the current DefaultProvider property value.
Console.WriteLine( _
    "Current DefaultProvider value: '{0}'", profileSection.DefaultProvider)

' Set the DefaultProvider property to "AspNetSqlProvider".
profileSection.DefaultProvider = "AspNetSqlProvider"

Комментарии

Поставщик профилей указывает на источник данных, в котором хранятся значения профилей пользователей. Поставщики профилей можно указать в providers подразделе profile раздела файла конфигурации.

Применяется к

См. также раздел