XNamespace.Implicit(String to XNamespace) Operatore

Definizione

Importante

Questa API non è conforme a CLS.

Converte una stringa che contiene un URI (Uniform Resource Identifier) in un XNamespace.

public:
 static operator System::Xml::Linq::XNamespace ^(System::String ^ namespaceName);
[System.CLSCompliant(false)]
public static implicit operator System.Xml.Linq.XNamespace (string namespaceName);
[System.CLSCompliant(false)]
public static implicit operator System.Xml.Linq.XNamespace? (string? namespaceName);
[<System.CLSCompliant(false)>]
static member op_Implicit : string -> System.Xml.Linq.XNamespace
Public Shared Widening Operator CType (namespaceName As String) As XNamespace

Parametri

namespaceName
String

String che contiene l'URI dello spazio dei nomi.

Restituisce

XNamespace costruito dalla stringa URI.

Attributi

Esempio

Nell'esempio seguente viene illustrata l'inizializzazione di una XNamespace variabile assegnando una stringa.

XNamespace aw = "http://www.adventure-works.com";
Console.WriteLine(aw);
Imports <xmlns="http://www.adventure-works.com">

Module Module1
    Sub Main()
        Dim aw As XNamespace = GetXmlNamespace()
        Console.WriteLine(aw)
    End Sub
End Module

Nell'esempio viene prodotto l'output seguente:

http://www.adventure-works.com

Si applica a

Vedi anche