InternalXmlHelper.CreateAttribute(XName, Object) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
建立具有所提供名稱和值的 XML 屬性。 這個方法並不適合從程式碼使用。
public:
static System::Xml::Linq::XAttribute ^ CreateAttribute(System::Xml::Linq::XName ^ name, System::Object ^ value);
public static System.Xml.Linq.XAttribute CreateAttribute (System.Xml.Linq.XName name, object value);
static member CreateAttribute : System.Xml.Linq.XName * obj -> System.Xml.Linq.XAttribute
Public Shared Function CreateAttribute (name As XName, value As Object) As XAttribute
參數
- name
- XName
要建立之 XML 屬性的名稱。
- value
- Object
要指派給所建立 XML 屬性的值。 如果 value
為 Nothing
,這個方法會傳回 Nothing
。
傳回
XAttribute 物件,具有提供的名稱和值。