Base OptionValue Property
This property is used to get or set the option value
Definition
Namespace: Sandcastle.Core.CommandLine
Assembly: Sandcastle.Core (in Sandcastle.Core.dll) Version: 2026.3.29.0
Assembly: Sandcastle.Core (in Sandcastle.Core.dll) Version: 2026.3.29.0
C#
public virtual Object Value { get; protected set; }VB
Public Overridable Property Value As Object
Get
Protected SetC++
public:
virtual property Object^ Value {
Object^ get ();
protected: void set (Object^ value);
}F#
abstract Value : Object with get, set
override Value : Object with get, setProperty Value
ObjectRemarks
As written, the value can only be set when initially parsed
Exceptions
| InvalidOperationException | This is thrown if an attempt is made to retrieve the value before it has been set or if an attempt is made to set the value twice. |