次の方法で共有


NamespaceInfo.Namespace プロパティ

定義

名前空間参照を取得または設定します。

public:
 property System::String ^ Namespace { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("namespace", DefaultValue="", IsKey=true, IsRequired=true)]
[System.Configuration.StringValidator(MinLength=1)]
public string Namespace { get; set; }
[<System.Configuration.ConfigurationProperty("namespace", DefaultValue="", IsKey=true, IsRequired=true)>]
[<System.Configuration.StringValidator(MinLength=1)>]
member this.Namespace : string with get, set
Public Property Namespace As String

プロパティ値

名前空間の名前を指定する文字列。

属性

次のコード例は、Namespace プロパティの使用方法を示しています。 このコード例は、PagesSection クラスのために提供されている大規模な例の一部です。

// Set the Namespace property.
namespaceInfo.Namespace = "System.Collections";
' Set the Namespace property.
namespaceInfo.Namespace = "System.Collections"

注釈

名前空間参照が有効であることを確認するための検証は実行されません。

適用対象

こちらもご覧ください