NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

XmlAttributeCollection.InsertAfter

Inserts the specified attribute immediately after the specified reference attribute.

[Visual Basic]
Overridable Public Function InsertAfter( _
   ByVal newNode As XmlAttribute, _
   ByVal refNode As XmlAttribute _
) As XmlAttribute
[C#]
public virtual XmlAttribute InsertAfter(
   XmlAttribute newNode,
   XmlAttribute refNode
);
[C++]
public: virtual XmlAttribute* InsertAfter(
   XmlAttribute* newNode,
   XmlAttribute* refNode
);
[JScript]
public function InsertAfter(
   newNode : XmlAttribute,
   refNode : XmlAttribute
) : XmlAttribute;

Parameters

newNode
XmlAttribute node to insert.
refNode
XmlAttribute node that is the reference attribute. The newNode is placed after the refNode.

See Also

XmlAttributeCollection Class | XmlAttributeCollection Members | System.NewXml Namespace