IAuthenticationModuleService.IsEnabled メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定した認証モジュール サービスが有効かどうかを判断します。
public:
bool IsEnabled();
public bool IsEnabled ();
abstract member IsEnabled : unit -> bool
Public Function IsEnabled () As Boolean
戻り値
true
インターフェイスが IAuthenticationModuleService 有効な場合は 。それ以外の場合 false
は 。
例
次の例では、Administration.config ファイルで定義されている認証モジュール サービスを確認し、メソッドの戻り値を IsEnabled 表示します。
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;
}
}
}
注釈
この方法を使用して、サイトで使用される認証モジュール サービスを決定できます。