AuthoringSink.MethodParameters Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Use this property to find if your parser should call StartParameters, NextParameter or EndParameters
public:
property bool MethodParameters { bool get(); };
public:
property bool MethodParameters { bool get(); };
public bool MethodParameters { get; }
member this.MethodParameters : bool
Public ReadOnly Property MethodParameters As Boolean
Property Value
Returns true
if method parameters should be processed; otherwise, returns false
(ignore method parameters).
Remarks
This property is queried by the parser to determine if it should deal with method parameters in this particular execution and if so, handle such parameters with calls to StartParameters, EndParameters, and NextParameter. This property examines the ParseReason and returns true
if it is MethodTip or QuickInfo.