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.InsertBefore

Inserts the specified attribute immediately before the specified reference attribute.

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

Parameters

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

See Also

XmlAttributeCollection Class | XmlAttributeCollection Members | System.NewXml Namespace