次の方法で共有


ConfigurationElement.Schema プロパティ

定義

現在の要素のスキーマを取得します。

public:
 property Microsoft::Web::Administration::ConfigurationElementSchema ^ Schema { Microsoft::Web::Administration::ConfigurationElementSchema ^ get(); };
public Microsoft.Web.Administration.ConfigurationElementSchema Schema { get; }
member this.Schema : Microsoft.Web.Administration.ConfigurationElementSchema
Public ReadOnly Property Schema As ConfigurationElementSchema

プロパティ値

現在の ConfigurationElementSchema 構成要素のスキーマを表す オブジェクト。

注釈

次の例では、 オブジェクトからスキーマを ConfigurationElement 取得します。

PropertyBag elementBag = new PropertyBag();
elementBag[ConfigurationDemoGlobals.SchemaName] = 
    moduleproviderelement.Schema.Name;
elementBag[ConfigurationDemoGlobals.ElementTagName] = 
    moduleproviderelement.ElementTagName;

適用対象