XName.Implicit(String to XName) 演算子

定義

重要

この API は CLS 準拠ではありません。

拡張 XML 名として書式設定された文字列 ({namespace}localname) を XName オブジェクトに変換します。

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

パラメーター

expandedName
String

{namespace}localname という形式の拡張 XML 名を含む文字列。

戻り値

XName

拡張名から作成された XName オブジェクト。

属性

次の例では、文字列を XName 割り当てて作成し、この暗黙的な変換演算子を呼び出します。

XElement el = new XElement("{http://www.adventure-works.com}Root", "content");  
Console.WriteLine(el);  

// The preferred approach is to initialize an XNamespace object  
// and use the overload of the addition operator.  
XNamespace aw = "http://www.adventure-works.com";  
XElement root = new XElement(aw + "Root", "content");  
Console.WriteLine(root);  
Imports <xmlns="http://www.adventure-works.com">  

Module Module1  
    Sub Main()  
        Dim el As XElement = New XElement("{http://www.adventure-works.com}Root", "content")  
        Console.WriteLine(el)  

        ' The preferred approach is to import a global namespace and   
        ' use an XML literal.  
        Dim root As XElement = <Root>content</Root>  
        Console.WriteLine(root)  
    End Sub  
End Module  

この例を実行すると、次の出力が生成されます。

<Root xmlns="http://www.adventure-works.com">content</Root>  
<Root xmlns="http://www.adventure-works.com">content</Root>  

注釈

この暗黙的な演算子は、文字列を XElement 作成するとき、または XAttribute 適切なコンストラクターに渡すときに使用します。

適用対象

こちらもご覧ください