ConfigurationSection.GetAllowLocation メソッド

構成セクションの allowLocation 属性を取得します。

構文

ConfigurationSection.GetAllowLocation AllowLocation  
ConfigurationSection.GetAllowLocation(AllowLocation);  

Parameters

名前 Definition
AllowLocation GetAllowLocation メソッドが返す allowLocation 属性を受け取る string 変数。 入力可能値は「true」または「false」です。 既定値は "true" です。 注: このパラメーターは boolean ではなく string です。

戻り値

このメソッドは値を返しません。

解説

allowLocation 属性は、location タグのペア内に構成セクションを含めることができるかどうかを指定します。

GetAllowLocation は静的メソッドであるため、次の例のようにクラス オブジェクトを取得して呼び出す必要があります。

' Correct syntax:  
Set oAnonAuth = oWebAdmin.Get("AnonymousAuthenticationSection")  
oAnonAuth.GetAllowLocation strAnonAuthAllowLocation  

Site クラスの具象インスタンスで GetAllowLocation を呼び出そうとするため、次の構文は失敗します。 メソッドを呼び出すと、"SWbemObjectEx: Not found" エラーが発生します。

  
' Incorrect syntax:  
Set oSite = oWebAdmin.Get("Site.Name='Default Web Site'")  
oSite.GetSection "AnonymousAuthenticationSection", oAnonAuth  
oAnonAuth.GetAllowLocation strAnonAuthAllowLocation  

次の例では、匿名認証構成セクションの allowLocation 属性を表示します。

' Get the WebAdministration namespace.  
Set oWebAdmin = GetObject( _  
    "winmgmts:root\WebAdministration")  
  
' Get the AnonymousAuthenticationSection.  
Set oAnonAuth = oWebAdmin.Get( _  
    "AnonymousAuthenticationSection")  
  
' Get the allowLocation attribute.  
oAnonAuth.GetAllowLocation strAnonAuthAllowLocation  
  
' Display the allowLocation attribute.  
WScript.Echo _  
    "Anonymous Authentication Allow Location: " & _  
        strAnonAuthAllowLocation  
  

要件

説明
クライアント - Windows Vista 上の IIS 7.0
- Windows 7 上の IIS 7.5
- Windows 8 上の IIS 8.0
- Windows 10 上の IIS 10.0
[サーバー] - Windows Server 2008 上の IIS 7.0
- Windows Server 2008 R2 上の IIS 7.5
- Windows Server 2012 上の IIS 8.0
- Windows Server 2012 R2 上の IIS 8.5
- Windows Server 2016 上の IIS 10.0
Product - IIS 7.0、IIS 7.5、IIS 8.0、IIS 8.5、IIS 10.0
MOF ファイル WebAdministration.mof

参照

AnonymousAuthenticationSection クラス
ConfigurationSection クラス
ConfigurationSection.GetAllowDefinition メソッド