When overridden in a derived class, handles a property found by Read which does not correspond to any property in the config object.
[Visual Basic] Overridable Protected Function HandleUnknownPropertyType( _ ByVal name As String, _ ByVal value As String _ ) As String [C#] protected virtual string HandleUnknownPropertyType( string name, string value ); [C++] protected: virtual String* HandleUnknownPropertyType( String* name, String* value ); [JScript] protected virtual function HandleUnknownPropertyType( String name, String value ): String;
A string containing any messages generated by the handler.
As implemented in this class, no action is taken.
Notes to Inheritors:If a handler can translate the unknown property, it can call the protected method ReadProperty to process to translated name/value.
BaseDocumenterConfig Class | NDoc.Core Namespace