Application クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
インターネット インフォメーション サービス (IIS) のすべてのアプリケーションに共通のプロパティを定義します。
public ref class Application sealed : Microsoft::Web::Administration::ConfigurationElement
public sealed class Application : Microsoft.Web.Administration.ConfigurationElement
type Application = class
inherit ConfigurationElement
Public NotInheritable Class Application
Inherits ConfigurationElement
- 継承
例
次の例では、Web アプリケーションを作成します。
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.Web.Administration;
using Microsoft.Web.Management;
namespace AdministrationSnippets
{
public class AdministrationApplication
{
// Creates an application under the default Web site.
public void CreateApplication()
{
ServerManager manager = new ServerManager();
Site defaultSite = manager.Sites["Default Web Site"];
defaultSite.Applications.Add(
"/blogs", @"C:\inetpub\wwwroot\blogs");
manager.CommitChanges();
}
}
}
注釈
アプリケーションは、IIS の Web サイト内のコンテンツのグループです。 アプリケーションは、コンテンツの物理パスと、そのパス内のコンテンツに固有のプロパティによって指定されます。
プロパティ
ApplicationPoolName |
アプリケーションが割り当てられているアプリケーション プールの名前を取得または設定します。 |
Attributes |
この要素の属性の一覧を含む構成属性コレクションを取得します。 (継承元 ConfigurationElement) |
ChildElements |
現在の要素のすべての子要素を取得します。 (継承元 ConfigurationElement) |
ElementTagName |
インターネット インフォメーション サービス (IIS) のすべてのアプリケーションに共通のプロパティを定義します。 (継承元 ConfigurationElement) |
EnabledProtocols |
アプリケーションに対して有効になっているプロトコルを取得または設定します。 |
IsLocallyStored |
構成要素が特定の構成ファイルに格納されているかどうかを示す値を取得します。 (継承元 ConfigurationElement) |
Item[String] |
指定した名前の属性を取得または設定します。 (継承元 ConfigurationElement) |
Methods |
構成要素のメソッドのコレクションを取得します。 (継承元 ConfigurationElement) |
Path |
アプリケーションに関連付けられている相対を取得または設定します。 |
RawAttributes |
インターネット インフォメーション サービス (IIS) のすべてのアプリケーションに共通のプロパティを定義します。 (継承元 ConfigurationElement) |
Schema |
現在の要素のスキーマを取得します。 (継承元 ConfigurationElement) |
VirtualDirectories |
アプリケーションの仮想ディレクトリのコレクションを取得します。 |
VirtualDirectoryDefaults |
アプリケーションのすべての仮想ディレクトリに割り当てられている既定値を取得します。 |