Freigeben über


NamespaceInfo(String) Konstruktor

Definition

Initialisiert eine neue Instanz der NamespaceInfo-Klasse mit dem angegebenen Namespaceverweis.

public:
 NamespaceInfo(System::String ^ name);
public NamespaceInfo (string name);
new System.Web.Configuration.NamespaceInfo : string -> System.Web.Configuration.NamespaceInfo
Public Sub New (name As String)

Parameter

name
String

Ein Namespaceverweis für das neue NamespaceInfo-Objekt.

Beispiele

Im folgenden Codebeispiel wird die Verwendung des NamespaceInfo Konstruktors veranschaulicht. Dies ist Teil eines größeren Beispiels für den PagesSection Typ.

// Add a NamespaceInfo object using a constructor.
pagesSection.Namespaces.Add(
    new System.Web.Configuration.NamespaceInfo(
    "System.Collections.Specialized"));
' Add a NamespaceInfo object using a constructor.
pagesSection.Namespaces.Add( _
 New System.Web.Configuration.NamespaceInfo( _
 "System.Collections.Specialized"))

Hinweise

Es wird keine Überprüfung durchgeführt, um zu überprüfen, ob der Namespaceverweis gültig ist.

Gilt für:

Weitere Informationen