Remove Method (String)

Html Agility Pack

Collapse imageExpand ImageCopy imageCopyHover image
Removes an attribute from the list, using its name. If there are more than one attributes with this name, they will all be removed.

Namespace: HtmlAgilityPack
Assembly: HtmlAgilityPack (in HtmlAgilityPack.dll) Version: 1.4.0.0 (1.4.0.0)

Syntax

C#
public void Remove(
	string name
)
Visual Basic
Public Sub Remove ( _
	name As String _
)
Visual C++
public:
void Remove(
	String^ name
)

Parameters

name
Type: System..::..String
The attribute's name. May not be null.

See Also