SoapAttribute.UseAttribute 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,指出目前屬性的目標是否將序列化為 XML 屬性以代替 XML 欄位。
public:
virtual property bool UseAttribute { bool get(); void set(bool value); };
public virtual bool UseAttribute { get; set; }
member this.UseAttribute : bool with get, set
Public Overridable Property UseAttribute As Boolean
屬性值
如果目前屬性的目標物件必須序列化為 XML 屬性,則為 true
;如果目前屬性的目標物件必須序列化為子項目,則為 false
。
備註
例如,如果物件的欄位FieldA
是以 屬性限定SoapFieldAttribute(UseAttribute=true)
,FieldA
則會串行化為 <ObjectB><FieldA>5</FieldA></ObjectB>
。ObjectB
UseAttribute如果 屬性設定false
為 ,FieldA
則會串行化為 <ObjectB FieldA="5"></ObjectB>
。