IAuthenticationModuleService.IsEnabled Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Determina se o serviço de módulo de autenticação especificado está habilitado.
public:
bool IsEnabled();
public bool IsEnabled ();
abstract member IsEnabled : unit -> bool
Public Function IsEnabled () As Boolean
Retornos
true
se a IAuthenticationModuleService interface estiver habilitada; caso contrário, false
.
Exemplos
O exemplo a seguir verifica os serviços de módulo de autenticação, definidos no arquivo Administration.config e exibe os valores retornados do IsEnabled método.
namespace ExtensibilityDemo
{
public class DemoModuleService : ModuleService
{
[ModuleServiceMethod]
public ArrayList GetSettings()
{
ArrayList settingList = new ArrayList();
ServerManager manager = new ServerManager();
ConfigurationElementCollection serverCollection;
Configuration config = manager.GetAdministrationConfiguration();
ConfigurationSection section = config.GetSection("moduleProviders");
serverCollection = section.GetCollection();
IAuthenticationModuleService authenticationModuleService;
// Get all of the modules on the server. Filter the modules
// to those of the IAuthenticationModuleService type.
foreach (ConfigurationElement configurationElement in serverCollection)
{
// Add the authentication module service and the returned
// IsEnabled value to the property bag for subsequent display.
try
{
// If the module service is other than an
// IAuthenticationModuleService an exception is thrown.
authenticationModuleService = (IAuthenticationModuleService)
ManagementUnit.GetModuleService(configurationElement.Attributes[0].Value.ToString());
PropertyBag settingBag = new PropertyBag();
settingBag[0] = authenticationModuleService.ToString();
settingBag[1] = authenticationModuleService.IsEnabled().ToString();
settingList.Add(settingBag);
}
catch
{
}
}
return settingList;
}
}
}
Comentários
Você pode usar esse método para determinar o serviço de módulo de autenticação usado em seu site.