다음을 통해 공유


AuthoringSink.MethodParameters Property

Indicates whether to process method parameters during the parse operation.

Namespace:  Microsoft.VisualStudio.Package
Assemblies:   Microsoft.VisualStudio.Package.LanguageService.9.0 (in Microsoft.VisualStudio.Package.LanguageService.9.0.dll)
  Microsoft.VisualStudio.Package.LanguageService.10.0 (in Microsoft.VisualStudio.Package.LanguageService.10.0.dll)
  Microsoft.VisualStudio.Package.LanguageService (in Microsoft.VisualStudio.Package.LanguageService.dll)

Syntax

‘선언
Public ReadOnly Property MethodParameters As Boolean
    Get
‘사용 방법
Dim instance As AuthoringSink
Dim value As Boolean

value = instance.MethodParameters
public bool MethodParameters { get; }
public:
property bool MethodParameters {
    bool get ();
}
member MethodParameters : bool
function get MethodParameters () : boolean

Property Value

Type: System.Boolean
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.

.NET Framework Security

See Also

Reference

AuthoringSink Class

AuthoringSink Members

Microsoft.VisualStudio.Package Namespace