NDoc 1.3.1 SDK

AssemblySlashDocCollection.ReadXml Method 

Loads AssemblySlashDoc details from an XmlReader.

[Visual Basic]
Public Sub ReadXml( _ 
   ByVal reader As XmlReader _ 
)
[C#]
public void ReadXml(
   XmlReader reader
);
[C++]
public: void ReadXml(
   XmlReader* reader
);
[JScript]
public function ReadXml(
   XmlReader reader
);

Parameters

reader
The location attribute is missing or is an empty string An open XmlReader positioned before, or on, the <assemblies> element.

Remarks

The expected format is is follows

<assemblies>
    <assembly location="relative or fixed path" documentation="relative or fixed path" />
    ...
</assemblies>

If the location attribute is missing or an empty string an exception will be thrown.

If the documentation attribute is missing or an empty string it will be silently ignored.

See Also

AssemblySlashDocCollection Class | NDoc.Core Namespace